annotate runtime/syntax/tmux.vim @ 32043:6095218c9056 v9.0.1353

patch 9.0.1353: too many "else if" statements to handle option values Commit: https://github.com/vim/vim/commit/6d611de58c8e324491415da8e79c6bd3faa3e848 Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Sat Feb 25 11:59:33 2023 +0000 patch 9.0.1353: too many "else if" statements to handle option values Problem: Too many "else if" statements to handle option values. Solution: Add more functions to handle option value changes. (Yegappan Lakshmanan, closes #12058)
author Bram Moolenaar <Bram@vim.org>
date Sat, 25 Feb 2023 13:00:05 +0100
parents e3d6184b89fa
children 807ee2d19caf
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
1 " Language: tmux(1) configuration file
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
2 " Version: 3.3-rc (git-964deae4)
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
3 " URL: https://github.com/ericpruitt/tmux.vim/
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
4 " Maintainer: Eric Pruitt <eric.pruitt@gmail.com>
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
5 " License: 2-Clause BSD (http://opensource.org/licenses/BSD-2-Clause)
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
6
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
7 if exists("b:current_syntax")
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
8 finish
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
9 endif
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
10
25773
11b656e74444 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 18750
diff changeset
11 " Explicitly change compatibility options to Vim's defaults because this file
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
12 " uses line continuations.
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
13 let s:original_cpo = &cpo
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
14 set cpo&vim
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
15
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
16 let b:current_syntax = "tmux"
14006
665fe1f419b0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11160
diff changeset
17 syntax iskeyword @,48-57,_,192-255,-
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
18 syntax case match
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
19
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
20 syn keyword tmuxAction none any current other
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
21 syn keyword tmuxBoolean off on yes no
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
22
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
23 syn keyword tmuxTodo FIXME NOTE TODO XXX contained
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
24
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
25 syn match tmuxColour /\<colou\?r[0-9]\+\>/ display
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
26 syn match tmuxKey /\(C-\|M-\|\^\)\+\S\+/ display
14006
665fe1f419b0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11160
diff changeset
27 syn match tmuxNumber /\<\d\+\>/ display
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
28 syn match tmuxFlags /\s-\a\+/ display
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
29 syn match tmuxVariableExpansion /\$\({[A-Za-z_]\w*}\|[A-Za-z_]\w*\)/ display
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
30 syn match tmuxControl /^\s*%\(if\|elif\|else\|endif\)\>/
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
31 syn match tmuxEscape /\\\(u\x\{4\}\|U\x\{8\}\|\o\{3\}\|[\\ernt$]\)/ display
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
32
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
33 syn region tmuxComment start=/#/ skip=/\\\@<!\\$/ end=/$/ contains=tmuxTodo,@Spell
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
34
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
35 syn region tmuxString start=+"+ skip=+\\\\\|\\"\|\\$+ excludenl end=+"+ end='$' contains=tmuxFormatString,tmuxEscape,tmuxVariableExpansion,@Spell
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
36 syn region tmuxUninterpolatedString start=+'+ skip=+\\$+ excludenl end=+'+ end='$' contains=tmuxFormatString,@Spell
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
37
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
38 " TODO: Figure out how escaping works inside of #(...) and #{...} blocks.
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
39 syn region tmuxFormatString start=/#[#DFhHIPSTW]/ end=// contained keepend
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
40 syn region tmuxFormatString start=/#{/ skip=/#{.\{-}}/ end=/}/ keepend
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
41 syn region tmuxFormatString start=/#(/ skip=/#(.\{-})/ end=/)/ contained keepend
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
42
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
43 " At the time of this writing, the latest tmux release will parse a line
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
44 " reading "abc=xyz set-option ..." as an assignment followed by a command
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
45 " hence the presence of "\s" in the "end" argument.
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
46 syn region tmuxAssignment matchgroup=tmuxVariable start=/^\s*[A-Za-z_]\w*=\@=/ skip=/\\$\|\\\s/ end=/\s\|$/ contains=tmuxString,tmuxUninterpolatedString,tmuxVariableExpansion,tmuxControl,tmuxEscape
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
47
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
48 hi def link tmuxFormatString Identifier
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
49 hi def link tmuxAction Boolean
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
50 hi def link tmuxBoolean Boolean
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
51 hi def link tmuxCommands Keyword
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
52 hi def link tmuxControl PreCondit
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
53 hi def link tmuxComment Comment
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
54 hi def link tmuxEscape Special
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
55 hi def link tmuxEscapeUnquoted Special
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
56 hi def link tmuxKey Special
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
57 hi def link tmuxNumber Number
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
58 hi def link tmuxFlags Identifier
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
59 hi def link tmuxOptions Function
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
60 hi def link tmuxString String
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
61 hi def link tmuxTodo Todo
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
62 hi def link tmuxUninterpolatedString
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
63 \ String
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
64 hi def link tmuxVariable Identifier
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
65 hi def link tmuxVariableExpansion Identifier
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
66
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
67 " Make the foreground of colourXXX keywords match the color they represent
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
68 " when g:tmux_syntax_colors is unset or set to a non-zero value.
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
69 " Darker colors have their background set to white.
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
70 if get(g:, "tmux_syntax_colors", 1)
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
71 for s:i in range(0, 255)
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
72 let s:bg = (!s:i || s:i == 16 || (s:i > 231 && s:i < 235)) ? 15 : "none"
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
73 exec "syn match tmuxColour" . s:i . " /\\<colou\\?r" . s:i . "\\>/ display"
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
74 \ " | highlight tmuxColour" . s:i . " ctermfg=" . s:i . " ctermbg=" . s:bg
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
75 endfor
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
76 endif
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
77
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
78 syn keyword tmuxOptions
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
79 \ activity-action after-bind-key after-capture-pane after-copy-mode
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
80 \ after-display-message after-display-panes after-kill-pane
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
81 \ after-list-buffers after-list-clients after-list-keys after-list-panes
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
82 \ after-list-sessions after-list-windows after-load-buffer after-lock-server
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
83 \ after-new-session after-new-window after-paste-buffer after-pipe-pane
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
84 \ after-queue after-refresh-client after-rename-session after-rename-window
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
85 \ after-resize-pane after-resize-window after-save-buffer
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
86 \ after-select-layout after-select-pane after-select-window after-send-keys
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
87 \ after-set-buffer after-set-environment after-set-hook after-set-option
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
88 \ after-show-environment after-show-messages after-show-options
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
89 \ after-split-window after-unbind-key aggressive-resize alert-activity
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
90 \ alert-bell alert-silence allow-passthrough allow-rename alternate-screen
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
91 \ assume-paste-time automatic-rename automatic-rename-format backspace
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
92 \ base-index bell-action buffer-limit client-active client-attached
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
93 \ client-detached client-focus-in client-focus-out client-resized
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
94 \ client-session-changed clock-mode-colour clock-mode-style command-alias
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
95 \ copy-command copy-mode-current-match-style copy-mode-mark-style
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
96 \ copy-mode-match-style cursor-colour cursor-style default-command
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
97 \ default-shell default-size default-terminal destroy-unattached
18750
82a28df1e2d5 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
98 \ detach-on-destroy display-panes-active-colour display-panes-colour
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
99 \ display-panes-time display-time editor escape-time exit-empty
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
100 \ exit-unattached extended-keys fill-character focus-events history-file
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
101 \ history-limit key-table lock-after-time lock-command main-pane-height
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
102 \ main-pane-width message-command-style message-limit message-style
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
103 \ mode-keys mode-style monitor-activity monitor-bell monitor-silence mouse
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
104 \ other-pane-height other-pane-width pane-active-border-style
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
105 \ pane-base-index pane-border-format pane-border-indicators
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
106 \ pane-border-lines pane-border-status pane-border-style pane-colours
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
107 \ pane-died pane-exited pane-focus-in pane-focus-out pane-mode-changed
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
108 \ pane-set-clipboard pane-title-changed popup-border-lines
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
109 \ popup-border-style popup-style prefix prefix2 prompt-history-limit
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
110 \ remain-on-exit remain-on-exit-format renumber-windows repeat-time
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
111 \ scroll-on-clear session-closed session-created session-renamed
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
112 \ session-window-changed set-clipboard set-titles set-titles-string
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
113 \ silence-action status status-bg status-fg status-format status-interval
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
114 \ status-justify status-keys status-left status-left-length
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
115 \ status-left-style status-position status-right status-right-length
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
116 \ status-right-style status-style synchronize-panes terminal-features
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
117 \ terminal-overrides update-environment user-keys visual-activity
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
118 \ visual-bell visual-silence window-active-style window-layout-changed
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
119 \ window-linked window-pane-changed window-renamed window-resized
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
120 \ window-size window-status-activity-style window-status-bell-style
18750
82a28df1e2d5 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
121 \ window-status-current-format window-status-current-style
82a28df1e2d5 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 16808
diff changeset
122 \ window-status-format window-status-last-style window-status-separator
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
123 \ window-status-style window-style window-unlinked word-separators
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
124 \ wrap-search xterm-keys
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
125
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
126 syn keyword tmuxCommands
14006
665fe1f419b0 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11160
diff changeset
127 \ attach attach-session bind bind-key break-pane breakp capture-pane
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
128 \ capturep choose-buffer choose-client choose-session choose-tree
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
129 \ choose-window clear-history clear-prompt-history clearhist clearphist
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
130 \ clock-mode command-prompt confirm confirm-before copy-mode customize-mode
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
131 \ delete-buffer deleteb detach detach-client display display-menu
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
132 \ display-message display-panes display-popup displayp find-window findw has
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
133 \ has-session if if-shell info join-pane joinp kill-pane kill-server
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
134 \ kill-session kill-window killp killw last last-pane last-window lastp
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
135 \ link-window linkw list-buffers list-clients list-commands list-keys
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
136 \ list-panes list-sessions list-windows load-buffer loadb lock lock-client
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
137 \ lock-server lock-session lockc locks ls lsb lsc lscm lsk lsp lsw menu
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
138 \ move-pane move-window movep movew new new-session new-window neww next
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
139 \ next-layout next-window nextl paste-buffer pasteb pipe-pane pipep popup
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
140 \ prev previous-layout previous-window prevl refresh refresh-client rename
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
141 \ rename-session rename-window renamew resize-pane resize-window resizep
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
142 \ resizew respawn-pane respawn-window respawnp respawnw rotate-window
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
143 \ rotatew run run-shell save-buffer saveb select-layout select-pane
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
144 \ select-window selectl selectp selectw send send-keys send-prefix
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
145 \ server-info set set-buffer set-environment set-hook set-option
16808
c002c4899529 Update runtime files.
Bram Moolenaar <Bram@vim.org>
parents: 14006
diff changeset
146 \ set-window-option setb setenv setw show show-buffer show-environment
25973
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
147 \ show-hooks show-messages show-options show-prompt-history
3b34837f4538 Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25773
diff changeset
148 \ show-window-options showb showenv showmsgs showphist showw source
28246
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
149 \ source-file split-pane split-window splitp splitw start start-server
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
150 \ suspend-client suspendc swap-pane swap-window swapp swapw switch-client
e3d6184b89fa Update runtime files
Bram Moolenaar <Bram@vim.org>
parents: 25973
diff changeset
151 \ switchc unbind unbind-key unlink-window unlinkw wait wait-for
11062
1218c5353e2b Runtime file updates.
Christian Brabandt <cb@256bit.org>
parents:
diff changeset
152
11160
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
153 let &cpo = s:original_cpo
d0a20101ecb2 Update runtime files.
Christian Brabandt <cb@256bit.org>
parents: 11062
diff changeset
154 unlet! s:original_cpo s:bg s:i