mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 08:58:01 +00:00
4 lines
211 B
Fish
4 lines
211 B
Fish
|
function __fish_complete_setxkbmap --description 'Complete setxkb options' --argument-names what
|
||
|
sed -e "1,/! $what/d" -e '/^\s*$/,$d' /usr/share/X11/xkb/rules/xorg.lst | sed -r 's/\s+(\S+)\s+(.+)/\1\t\2/'
|
||
|
end
|