diff options
author | Tiago Cunha <tcunha@gmx.com> | 2010-02-03 00:21:48 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2010-02-03 00:21:48 +0000 |
commit | b7758a9932cd7d50a3d253498d39e8533c010c39 (patch) | |
tree | 2aa51a99552a3a5f5fe315e3d28ff530103ba95c | |
parent | ebcc0ebd2d72d2fa0895cda8c7466d0d6bdb6b7b (diff) | |
download | rtmux-b7758a9932cd7d50a3d253498d39e8533c010c39.tar.gz rtmux-b7758a9932cd7d50a3d253498d39e8533c010c39.tar.bz2 rtmux-b7758a9932cd7d50a3d253498d39e8533c010c39.zip |
Make it detect multiple options with a single leading `-' (eg set -gw).
-rw-r--r-- | examples/tmux.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/tmux.vim b/examples/tmux.vim index 03ba1d94..a9c8835d 100644 --- a/examples/tmux.vim +++ b/examples/tmux.vim @@ -1,7 +1,7 @@ " Vim syntax file " Language: tmux(1) configuration file " Maintainer: Tiago Cunha <me@tiagocunha.org> -" Last Change: $Date: 2010-01-08 16:34:49 $ +" Last Change: $Date: 2010-02-03 00:21:48 $ " License: This file is placed in the public domain. if version < 600 @@ -75,7 +75,7 @@ syn keyword tmuxTodo FIXME NOTE TODO XXX contained syn match tmuxKey /\(C-\|M-\|\^\)\p/ display syn match tmuxNumber /\d\+/ display -syn match tmuxOptions /\s-\a/ display +syn match tmuxOptions /\s-\a\+/ display syn match tmuxVariable /\w\+=/ display syn match tmuxVariableExpansion /\${\=\w\+}\=/ display |