Ignore stderr on `m` function in fish and rename fish function sshkey to be pubkey to be the same as bash and zsh

pull/2/head
Bodaniel Jeanes 2010-06-27 01:11:24 +10:00
parent 7f186c59c0
commit a92246f078
3 changed files with 5 additions and 7 deletions

View File

@ -2,7 +2,5 @@ function m
if not test $argv
set argv .
end
mate -l 1 $argv
mate -l1 $argv ^/dev/null
end

View File

@ -0,0 +1,4 @@
function pubkey --description 'copy ssh keys to clipboard'
cat ~/.ssh/*.pub | pbcopy
end

View File

@ -1,4 +0,0 @@
function sshkey --description 'copy ssh keys to clipboard'
cat ~/.ssh/*.pub | pbcopy
end