aboutsummaryrefslogtreecommitdiffhomepage
path: root/share
diff options
context:
space:
mode:
authorGravatar axel <axel@liljencrantz.se>2007-01-27 12:02:40 +1000
committerGravatar axel <axel@liljencrantz.se>2007-01-27 12:02:40 +1000
commit5e6d1efb560a137badf65d91092457e181fdc3fb (patch)
treec9a65330046f6d9ead88f05e748029019e59b9a8 /share
parentbc1f9b6f1ccad9110d540c10c794f0d8fbd633a4 (diff)
Fix a few more trailing N_ calls
darcs-hash:20070127020240-ac50b-6081d8cc0bc5d648b53b3ddfe878ec0f65412b6e.gz
Diffstat (limited to 'share')
-rw-r--r--share/config_interactive.fish.in26
1 files changed, 13 insertions, 13 deletions
diff --git a/share/config_interactive.fish.in b/share/config_interactive.fish.in
index 0becbd0d..dd3084e9 100644
--- a/share/config_interactive.fish.in
+++ b/share/config_interactive.fish.in
@@ -83,7 +83,7 @@ end
# Set exit message
#
-function fish_on_exit -d (_ "Commands to execute when fish exits") --on-process %self
+function fish_on_exit --description "Commands to execute when fish exits" --on-process %self
printf (_ "Good bye\n")
end
@@ -164,7 +164,7 @@ functions -e set_default
# autoloaded.
#
-function __fish_repaint --on-variable fish_color_cwd -d (N_ "Event handler, repaints the prompt when fish_color_cwd changes")
+function __fish_repaint --on-variable fish_color_cwd --description "Event handler, repaints the prompt when fish_color_cwd changes"
set -e __fish_prompt_cwd
commandline -f repaint
end
@@ -177,27 +177,27 @@ end
# and no descriptions
#
-function __fish_complete_users -d "Print a list of local users, with the real user name as a description"
+function __fish_complete_users --description "Print a list of local users, with the real user name as a description"
cat /etc/passwd | sed -e "s/^\([^:]*\):[^:]*:[^:]*:[^:]*:\([^:]*\):.*/\1\t\2/"
end
-function __fish_complete_groups -d "Print a list of local groups, with group members as the description"
+function __fish_complete_groups --description "Print a list of local groups, with group members as the description"
cat /etc/group | sed -e "s/^\([^:]*\):[^:]*:[^:]*:\(.*\)/\1\tMembers: \2/"
end
-function __fish_complete_command -d "Complete using all available commands"
+function __fish_complete_command --description "Complete using all available commands"
printf "%s\n" (commandline -ct)(complete -C (commandline -ct))
end
-function __fish_print_interfaces -d "Print a list of known network interfaces"
+function __fish_print_interfaces --description "Print a list of known network interfaces"
netstat -i -n -a | awk 'NR>2'|awk '{print $1}'
end
-function __fish_print_addresses -d "Print a list of known network addresses"
+function __fish_print_addresses --description "Print a list of known network addresses"
/sbin/ifconfig |sgrep 'inet addr'|cut -d : -f 2|cut -d ' ' -f 1
end
-function __fish_print_users -d "Print a list of local users"
+function __fish_print_users --description "Print a list of local users"
cat /etc/passwd | cut -d : -f 1
end
@@ -205,9 +205,9 @@ end
# Completions for SysV startup scripts
#
-complete -x -p "/etc/init.d/*" -a start\t(_ 'Start service')
-complete -x -p "/etc/init.d/*" -a stop\t(_ 'Stop service')
-complete -x -p "/etc/init.d/*" -a status\t(_ 'Print service status')
-complete -x -p "/etc/init.d/*" -a restart\t(_ 'Stop and then start service')
-complete -x -p "/etc/init.d/*" -a reload\t(_ 'Reload service configuration')
+complete -x -p "/etc/init.d/*" -a start --description 'Start service'
+complete -x -p "/etc/init.d/*" -a stop --description 'Stop service'
+complete -x -p "/etc/init.d/*" -a status --description 'Print service status'
+complete -x -p "/etc/init.d/*" -a restart --description 'Stop and then start service'
+complete -x -p "/etc/init.d/*" -a reload --description 'Reload service configuration'