From: Peter Hutterer Date: Tue, 20 Apr 2021 07:09:48 +0000 (+1000) Subject: shell-completion: use base.lst, not xorg.lst X-Git-Tag: v249-rc1~389 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7a4afd3a15f201a2230dce1f640fc37d18bc39ac;p=thirdparty%2Fsystemd.git shell-completion: use base.lst, not xorg.lst Since 2005 xorg.lst has been the legacy symlink to the real file base.lst. --- diff --git a/shell-completion/zsh/_localectl b/shell-completion/zsh/_localectl index 1c7ac82b659..851ac8253b0 100644 --- a/shell-completion/zsh/_localectl +++ b/shell-completion/zsh/_localectl @@ -39,7 +39,7 @@ _localectl_set-x11-keymap() { local -a _file _layout _model _variant _options local _xorg_lst _xorg_lst=${"$($commands[pkg-config] xkeyboard-config --variable=xkb_base)"} - _file=( ${(ps:\n\!:)"$(<$_xorg_lst/rules/xorg.lst)"} ) + _file=( ${(ps:\n\!:)"$(<$_xorg_lst/rules/base.lst)"} ) _layout=( ${${${(M)${(f)_file[2]}:# *}# }%% *} ) _model=( ${${${(M)${(f)_file[1]}:# *}# }%% *} ) _variant=( ${${${(M)${(f)_file[3]}:# *}# }%% *} )