-
Notifications
You must be signed in to change notification settings - Fork 60
Customizations
bruno- edited this page Oct 8, 2014
·
3 revisions
Most of the behavior of tmux-copycat can be customized via tmux options.
To set a value, just put set -g @option 'value'
in your .tmux.conf
before
loading the tmux-copycat plugin.
Other options:
-
@copycat_search
(default/
) defines the key-binding used (after prefix) to start an interactive search. -
@copycat_next
(defaultn
) defines the key (without prefix) used to jump to next search result. -
@copycat_prev
(defaultN
) defines the key (without prefix) used to jump to previous search result.
Options for predefined searches:
-
@copycat_git_special
(defaultC-g
) git status search -
@copycat_file_search
(defaultC-f
) file search -
@copycat_url_search
(defaultC-u
) url search -
@copycat_digit_search
(defaultC-d
) digit search -
@copycat_ip_search
(defaultM-i
) IP address search
Example: to remap default file search to use C-t
put set -g @copycat_file_search 'C-t'
in .tmux.conf
.