diff options
author | Tiago Cunha <tcunha@gmx.com> | 2011-10-23 15:42:15 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2011-10-23 15:42:15 +0000 |
commit | 0e45ca1718a33ed120940f75e036a65b4a4859f3 (patch) | |
tree | d8d7a560424033bfaa3ae98f17405525dd9693bc | |
parent | c1eeac86fe233eb6abf0dd6876ccf97f854b4ad7 (diff) | |
download | rtmux-0e45ca1718a33ed120940f75e036a65b4a4859f3.tar.gz rtmux-0e45ca1718a33ed120940f75e036a65b4a4859f3.tar.bz2 rtmux-0e45ca1718a33ed120940f75e036a65b4a4859f3.zip |
Recognise special keys and binds with multiple modifiers. From Bastien Dejean.
-rw-r--r-- | examples/tmux.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/tmux.vim b/examples/tmux.vim index d21c3776..52d8eba6 100644 --- a/examples/tmux.vim +++ b/examples/tmux.vim @@ -77,7 +77,7 @@ syn keyword tmuxOptsSetw window-status-alert-bg window-status-alert-fg syn keyword tmuxTodo FIXME NOTE TODO XXX contained -syn match tmuxKey /\(C-\|M-\|\^\)\p/ display +syn match tmuxKey /\(C-\|M-\|\^\)\+\S\+/ display syn match tmuxNumber /\d\+/ display syn match tmuxOptions /\s-\a\+/ display syn match tmuxVariable /\w\+=/ display |