fish-shell/share/completions/localectl.fish
2015-08-17 12:02:50 +02:00

38 lines
2.4 KiB
Fish

# Completion for systemd's localectl
set -l commands status set-locale list-locales set-keymap list-keymaps set-x11-keymap list-x11-keymap-{models,layouts,variants,options}
complete -c localectl -f
for cmd in $commands
complete -c localectl -n "not __fish_seen_subcommand_from $commands" -a $cmd
end
set -l localevars LANG LC_MESSAGES LC_{CTYPE,NUMERIC,TIME,COLLATE,MONETARY,MESSAGES,PAPER,NAME,ADDRESS,TELEPHONE,MEASUREMENT,IDENTIFICATION,ALL}
set -l locales $localevars=(localectl list-locales)
function __fish_localectl_layout
set -l cmd (commandline -poc)
set -e cmd[1]
set -e cmd[1]
for l in (localectl list-x11-keymap-layouts)
if contains -- $l $cmd
echo $l
return 0
end
end
return 1
end
complete -c localectl -n "__fish_seen_subcommand_from set-locale" -a "$locales"
complete -c localectl -n "__fish_seen_subcommand_from set-keymap" -a "(localectl list-keymaps)"
# set-x11-keymap takes layout model variant option... (i.e. multiple options)
complete -c localectl -n "__fish_seen_subcommand_from set-x11-keymap; and not __fish_seen_subcommand_from (localectl list-x11-keymap-layouts)" -a "(localectl list-x11-keymap-layouts)"
complete -c localectl -n "__fish_seen_subcommand_from set-x11-keymap; and __fish_seen_subcommand_from (localectl list-x11-keymap-layouts); and not __fish_seen_subcommand_from (localectl list-x11-keymap-models)" -a "(localectl list-x11-keymap-models)"
# Only complete variants for the current layout
complete -c localectl -n "__fish_seen_subcommand_from set-x11-keymap; and __fish_seen_subcommand_from (localectl list-x11-keymap-models); and not __fish_seen_subcommand_from (localectl list-x11-keymap-variants)" -a "(localectl list-x11-keymap-variants (__fish_localectl_layout))"
complete -c localectl -n "__fish_seen_subcommand_from set-x11-keymap; and __fish_seen_subcommand_from (localectl list-x11-keymap-variants)" -a "(localectl list-x11-keymap-options)"
complete -c localectl -l no-ask-password --description "Don't ask for password"
complete -c localectl -l no-convert --description "Don't convert keymap from console to X11 and vice-versa"
complete -c localectl -s H -l host --description 'Execute the operation on a remote host'
complete -c localectl -s h -l help --description 'Print a short help text and exit'
complete -c localectl -l version --description 'Print a short version string and exit'
complete -c localectl -l no-pager --description 'Do not pipe output into a pager'