aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/functions/trap.fish
diff options
context:
space:
mode:
authorGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 10:18:26 +0800
committerGravatar Grissiom <chaos.proton@gmail.com>2010-09-18 10:18:26 +0800
commit70322077d21ae38bbe503d88e9e4d73ec883a493 (patch)
treed64024c9dde752818a35f865f910e413d8935579 /share/functions/trap.fish
parentf529b2e05725cba0bf9da3ee0feb0b7e3ef2fa5a (diff)
remove trialing spaces #2
Diffstat (limited to 'share/functions/trap.fish')
-rw-r--r--share/functions/trap.fish20
1 files changed, 10 insertions, 10 deletions
diff --git a/share/functions/trap.fish b/share/functions/trap.fish
index ee29aa78..514dc976 100644
--- a/share/functions/trap.fish
+++ b/share/functions/trap.fish
@@ -13,18 +13,18 @@ function __trap_switch
switch $argv[1]
case EXIT
echo --on-exit %self
-
+
case '*'
echo --on-signal $argv[1]
- end
+ end
end
function trap -d 'Perform an action when the shell recives a signal'
set -l mode
- set -l cmd
- set -l sig
+ set -l cmd
+ set -l sig
set -l shortopt
set -l longopt
@@ -47,13 +47,13 @@ function trap -d 'Perform an action when the shell recives a signal'
case -h --help
__fish_print_help trap
return 0
-
+
case -p --print
set mode print
-
+
case -l --list-signals
set mode list
-
+
case --
set -e opt[1]
break
@@ -87,7 +87,7 @@ function trap -d 'Perform an action when the shell recives a signal'
for i in $opt
set sig (__trap_translate_signal $i)
if test $sig
- functions -e __trap_handler_$sig
+ functions -e __trap_handler_$sig
end
end
@@ -108,7 +108,7 @@ function trap -d 'Perform an action when the shell recives a signal'
end
case print
- set -l names
+ set -l names
if count $opt >/dev/null
set names $opt
@@ -130,7 +130,7 @@ function trap -d 'Perform an action when the shell recives a signal'
case list
kill -l
-
+
end
end