]> git.lizzy.rs Git - bspwm.git/commitdiff
Remove obsolete shell completion
authorBastien Dejean <nihilhill@gmail.com>
Sun, 16 Jul 2017 19:33:20 +0000 (21:33 +0200)
committerBastien Dejean <nihilhill@gmail.com>
Sun, 16 Jul 2017 19:33:20 +0000 (21:33 +0200)
contrib/bash_completion
contrib/fish_completion
contrib/zsh_completion

index 088eab05dade807883e71c8f44c3d992bf6eae2c..f82a752fb0fe96046a09b239203d1acdac6ca05b 100644 (file)
@@ -1,5 +1,5 @@
 _bspc() {
-       local commands='node desktop monitor query rule restore wm subscribe config quit'
+       local commands='node desktop monitor query rule 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 directional_focus_tightness borderless_monocle gapless_monocle single_monocle pointer_motion_interval pointer_modifier pointer_action1 pointer_action2 pointer_action3 click_to_focus swallow_first_click focus_follows_pointer pointer_follows_focus pointer_follows_monitor ignore_ewmh_focus center_pseudo_tiled honor_size_hints remove_disabled_monitors remove_unplugged_monitors merge_overlapping_monitors'
 
index ff5a59d1503572cee3a8f013bc308abf44313272..5add99cc457a6793265a6a13c709abf18b5e708f 100644 (file)
@@ -10,5 +10,5 @@ function __fish_bspc_using_command
   return 1
 end
 
-complete -f -c bspc -n '__fish_bspc_needs_command' -a 'node desktop monitor query rule restore wm subscribe config quit'
+complete -f -c bspc -n '__fish_bspc_needs_command' -a 'node desktop monitor query rule wm subscribe config quit'
 complete -f -c bspc -n '__fish_bspc_using_command config' -a '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 directional_focus_tightness borderless_monocle gapless_monocle single_monocle pointer_motion_interval pointer_modifier pointer_action1 pointer_action2 pointer_action3 click_to_focus swallow_first_click focus_follows_pointer pointer_follows_focus pointer_follows_monitor ignore_ewmh_focus center_pseudo_tiled honor_size_hints remove_disabled_monitors remove_unplugged_monitors merge_overlapping_monitors'
index 69c25952442d3e4fa5fe792873610a8104a8d7d1..04efa7e463d86e696b0bb0d4beef6110d3710d76 100644 (file)
@@ -2,7 +2,7 @@
 
 _bspc() {
        local -a commands settings
-       commands=('node' 'desktop' 'monitor' 'query' 'rule' 'restore' 'wm' 'subscribe' 'config' 'quit')
+       commands=('node' 'desktop' 'monitor' 'query' 'rule' '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' 'directional_focus_tightness' 'borderless_monocle' 'gapless_monocle' 'single_monocle' 'pointer_motion_interval' 'pointer_modifier' 'pointer_action1' 'pointer_action2' 'pointer_action3' 'click_to_focus' 'swallow_first_click' 'focus_follows_pointer' 'pointer_follows_focus' 'pointer_follows_monitor' 'ignore_ewmh_focus' 'center_pseudo_tiled' 'honor_size_hints' 'remove_disabled_monitors' 'remove_unplugged_monitors' 'merge_overlapping_monitors')
        if (( CURRENT == 2 )) ; then
                _values 'command' "$commands[@]"