From 6c18848a903eb3ee06dccd915859ce64195c257c Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Mon, 15 Apr 2024 18:24:27 +0200 Subject: Adding upstream version 1:2.11. Signed-off-by: Daniel Baumann --- completions/xmodmap | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 completions/xmodmap (limited to 'completions/xmodmap') diff --git a/completions/xmodmap b/completions/xmodmap new file mode 100644 index 0000000..7cfa230 --- /dev/null +++ b/completions/xmodmap @@ -0,0 +1,23 @@ +# xmodmap(1) completion -*- shell-script -*- + +_xmodmap() +{ + local cur prev words cword + _init_completion || return + + case $prev in + -display | -e) + return + ;; + esac + + if [[ $cur == -* ]]; then + COMPREPLY=($(compgen -W '$(_parse_help "$1" -help)' -- "$cur")) + return + fi + + _filedir +} && + complete -F _xmodmap xmodmap + +# ex: filetype=sh -- cgit v1.2.3