Making spacing of .fish files uniform.

This commit is contained in:
Nicholas Maccharoli 2015-08-03 01:52:52 +09:00 committed by ridiculousfish
parent bc8a34f8df
commit f6ab0b4d07
8 changed files with 0 additions and 9 deletions

View file

@ -4,4 +4,3 @@
function ll --description "List contents of directory using long format" function ll --description "List contents of directory using long format"
ls -lh $argv ls -lh $argv
end end

View file

@ -19,4 +19,3 @@ function math --description "Perform math calculations in bc"
return 2 return 2
end end

View file

@ -1,4 +1,3 @@
# #
# This allows us to use 'open FILENAME' to open a given file in the default # This allows us to use 'open FILENAME' to open a given file in the default
# application for the file. # application for the file.
@ -27,4 +26,3 @@ if not test (uname) = Darwin
end end
end end
end end

View file

@ -18,4 +18,3 @@ function popd --description "Pop dir from stack"
set -e dirstack[1] set -e dirstack[1]
end end

View file

@ -1,5 +1,4 @@
function psub --description "Read from stdin into a file and output the filename. Remove the file when the command that called psub exits." function psub --description "Read from stdin into a file and output the filename. Remove the file when the command that called psub exits."
set -l filename set -l filename

View file

@ -1,5 +1,4 @@
function pushd --description 'Push directory to stack' function pushd --description 'Push directory to stack'
if count $argv >/dev/null if count $argv >/dev/null
# check for --help # check for --help

View file

@ -148,4 +148,3 @@ function type --description "Print the type of a command"
return $res return $res
end end

View file

@ -44,4 +44,3 @@ function vared --description "Edit variable value"
printf (_ '%s: Expected exactly one argument, got %s.\n\nSynopsis:\n\t%svared%s VARIABLE\n') vared (count $argv) (set_color $fish_color_command; echo) (set_color $fish_color_normal; echo) printf (_ '%s: Expected exactly one argument, got %s.\n\nSynopsis:\n\t%svared%s VARIABLE\n') vared (count $argv) (set_color $fish_color_command; echo) (set_color $fish_color_normal; echo)
end end
end end