]> git.lizzy.rs Git - bspwm.git/commitdiff
Update domain list in Bash and ZSH completions
authorBastien Dejean <nihilhill@gmail.com>
Wed, 23 Mar 2016 10:42:33 +0000 (11:42 +0100)
committerBastien Dejean <nihilhill@gmail.com>
Wed, 23 Mar 2016 10:42:33 +0000 (11:42 +0100)
contrib/bash_completion
contrib/zsh_completion

index 2cf8f2153a1c36062988557e10d9c70e1d6eaf1a..a568221349e4d0e4b1efcb35419ef1e1eca45313 100644 (file)
@@ -1,5 +1,5 @@
 _bspc() {
-       local commands='window desktop monitor query pointer rule restore control config quit'
+       local commands='node desktop monitor query pointer rule restore wm subscribe config quit'
 
        local settings='external_rules_command status_prefix normal_border_color active_border_color focused_border_color presel_feedback_color border_width window_gap top_padding right_padding bottom_padding left_padding split_ratio initial_polarity borderless_monocle gapless_monocle leaf_monocle focus_follows_pointer pointer_follows_focus pointer_follows_monitor history_aware_focus focus_by_distance ignore_ewmh_focus center_pseudo_tiled remove_disabled_monitors remove_unplugged_monitors merge_overlapping_monitors'
 
index 2c3808e31e1487ce2baf7588a6f79e77c5a6103b..31807937621f063a6684f1e5624552126c754e67 100644 (file)
@@ -2,7 +2,7 @@
 
 _bspc() {
        local -a commands settings
-       commands=('window' 'desktop' 'monitor' 'query' 'pointer' 'rule' 'restore' 'control' 'config' 'quit')
+       commands=('node' 'desktop' 'monitor' 'query' 'pointer' 'rule' 'restore' 'wm' 'subscribe' 'config' 'quit')
        settings=('external_rules_command' 'status_prefix' 'normal_border_color' 'active_border_color' 'focused_border_color' 'presel_feedback_color' 'border_width' 'window_gap' 'top_padding' 'right_padding' 'bottom_padding' 'left_padding' 'split_ratio' 'initial_polarity' 'borderless_monocle' 'gapless_monocle' 'leaf_monocle' 'focus_follows_pointer' 'pointer_follows_focus' 'pointer_follows_monitor' 'history_aware_focus' 'focus_by_distance' 'ignore_ewmh_focus' 'center_pseudo_tiled' 'remove_disabled_monitors' 'remove_unplugged_monitors' 'merge_overlapping_monitors')
        if (( CURRENT == 2 )) ; then
                _values 'command' "$commands[@]"