mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-25 20:33:08 +00:00
Making spacing of .fish files uniform.
This commit is contained in:
parent
bc8a34f8df
commit
f6ab0b4d07
8 changed files with 0 additions and 9 deletions
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -19,4 +19,3 @@ function math --description "Perform math calculations in bc"
|
||||||
return 2
|
return 2
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -18,4 +18,3 @@ function popd --description "Pop dir from stack"
|
||||||
set -e dirstack[1]
|
set -e dirstack[1]
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -148,4 +148,3 @@ function type --description "Print the type of a command"
|
||||||
|
|
||||||
return $res
|
return $res
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue