You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following configuration options are available:
# prompt to display when tmux prefix key is pressed
set -g @mode_indicator_prefix_prompt ' WAIT '# prompt to display when tmux is in copy mode
set -g @mode_indicator_copy_prompt ' COPY '# prompt to display when tmux has synchronized panes
set -g @mode_indicator_sync_prompt ' SYNC '# prompt to display when tmux is in normal mode
set -g @mode_indicator_empty_prompt ' TMUX '# style values for prefix prompt
set -g @mode_indicator_prefix_mode_style 'bg=blue,fg=black'# style values for copy prompt
set -g @mode_indicator_copy_mode_style 'bg=yellow,fg=black'# style values for sync prompt
set -g @mode_indicator_sync_mode_style 'bg=red,fg=black'# style values for empty prompt
set -g @mode_indicator_empty_mode_style 'bg=cyan,fg=black'
Custom Indicator
You can override the indicator at any time by setting these options:
# prompt to display instead of default mode indicators
set @mode_indicator_custom_prompt ' ---- '# style values for custom prompt
set @mode_indicator_custom_mode_style 'default'
To revert back to the default mode indicators, unset those options:
set -u @mode_indicator_custom_prompt
set -u @mode_indicator_custom_mode_style
License
Licensed under the MIT License. Check the LICENSE file for details.
About
Plugin that displays prompt indicating currently active Tmux mode.