Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion completions-core/xrdb.bash
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ _comp_cmd_xrdb()
_comp_initialize -- "$@" || return

case $prev in
-backup | -display | -help)
-backup | -display | -get | -help)
return
;;
-cpp | -edit)
Expand All @@ -17,6 +17,8 @@ _comp_cmd_xrdb()

if [[ $cur == -* ]]; then
_comp_compgen_help
_comp_compgen -- -W '"${COMPREPLY[@]}" -D -I -U' -X -Dname
[[ $COMPREPLY == -[DIU] ]] && compopt -o nospace
Comment thread
scop marked this conversation as resolved.
Outdated
return
fi

Expand Down