comparison runtime/syntax/readline.vim @ 14421:2f7e67dd088c

Update runtime files. commit https://github.com/vim/vim/commit/91f84f6e11cd879d43d651c0903d85bff95f0716 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Jul 29 15:07:52 2018 +0200 Update runtime files.
author Christian Brabandt <cb@256bit.org>
date Sun, 29 Jul 2018 15:15:06 +0200
parents 371ceeebbdaa
children
comparison
equal deleted inserted replaced
14420:9114cf8a3e07 14421:2f7e67dd088c
1 " Vim syntax file 1 " Vim syntax file
2 " Language: readline(3) configuration file 2 " Language: readline(3) configuration file
3 " Maintainer: Daniel Moch <daniel@danielmoch.com> 3 " Maintainer: Daniel Moch <daniel@danielmoch.com>
4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se> 4 " Previous Maintainer: Nikolai Weibull <now@bitwi.se>
5 " Latest Revision: 2017-12-25 5 " Latest Revision: 2018-07-26
6 " readline_has_bash - if defined add support for bash specific 6 " Add new functions for Readline 7 / Bash 4.4
7 " settings/functions 7 " (credit: Github user bewuethr)
8 8
9 if exists('b:current_syntax') 9 if exists('b:current_syntax')
10 finish 10 finish
11 endif 11 endif
12 12
109 syn keyword readlineKeyword contained 109 syn keyword readlineKeyword contained
110 \ set 110 \ set
111 \ nextgroup=readlineVariable 111 \ nextgroup=readlineVariable
112 \ skipwhite 112 \ skipwhite
113 113
114 syn keyword readlineVariable contained 114 syn keyword readlineVariable contained
115 \ nextgroup=readlineBellStyle 115 \ nextgroup=readlineBellStyle
116 \ skipwhite 116 \ skipwhite
117 \ bell-style 117 \ bell-style
118 118
119 syn keyword readlineVariable contained 119 syn keyword readlineVariable contained
120 \ nextgroup=readlineBoolean 120 \ nextgroup=readlineBoolean
121 \ skipwhite 121 \ skipwhite
122 \ bind-tty-special-chars 122 \ bind-tty-special-chars
123 \ blink-matching-paren
124 \ colored-completion-prefix
123 \ colored-stats 125 \ colored-stats
124 \ completion-ignore-case 126 \ completion-ignore-case
125 \ completion-map-case 127 \ completion-map-case
126 \ convert-meta 128 \ convert-meta
127 \ disable-completion 129 \ disable-completion
128 \ echo-control-characters 130 \ echo-control-characters
131 \ enable-bracketed-paste
129 \ enable-keypad 132 \ enable-keypad
130 \ enable-meta-key 133 \ enable-meta-key
131 \ expand-tilde 134 \ expand-tilde
132 \ history-preserve-point 135 \ history-preserve-point
133 \ horizontal-scroll-mode 136 \ horizontal-scroll-mode
267 \ delete-char-or-list 270 \ delete-char-or-list
268 \ 271 \
269 \ start-kbd-macro 272 \ start-kbd-macro
270 \ end-kbd-macro 273 \ end-kbd-macro
271 \ call-last-kbd-macro 274 \ call-last-kbd-macro
275 \ print-last-kbd-macro
272 \ 276 \
273 \ re-read-init-file 277 \ re-read-init-file
274 \ abort 278 \ abort
275 \ do-uppercase-version 279 \ do-uppercase-version
276 \ prefix-meta 280 \ prefix-meta
337 \ vi-column 341 \ vi-column
338 \ vi-change-case 342 \ vi-change-case
339 343
340 if exists("readline_has_bash") 344 if exists("readline_has_bash")
341 syn keyword readlineFunction contained 345 syn keyword readlineFunction contained
346 \ shell-forward-word
347 \ shell-backward-word
342 \ shell-expand-line 348 \ shell-expand-line
343 \ history-expand-line 349 \ history-expand-line
344 \ magic-space 350 \ magic-space
345 \ alias-expand-line 351 \ alias-expand-line
346 \ history-and-alias-expand-line 352 \ history-and-alias-expand-line
347 \ insert-last-argument 353 \ insert-last-argument
348 \ operate-and-get-next 354 \ operate-and-get-next
349 \ forward-backward-delete-char 355 \ forward-backward-delete-char
356 \ shell-kill-word
357 \ shell-backward-kill-word
350 \ delete-char-or-list 358 \ delete-char-or-list
351 \ complete-filename 359 \ complete-filename
352 \ possible-filename-completions 360 \ possible-filename-completions
353 \ complete-username 361 \ complete-username
354 \ possible-username-completions 362 \ possible-username-completions
357 \ complete-hostname 365 \ complete-hostname
358 \ possible-hostname-completions 366 \ possible-hostname-completions
359 \ complete-command 367 \ complete-command
360 \ possible-command-completions 368 \ possible-command-completions
361 \ dynamic-complete-history 369 \ dynamic-complete-history
370 \ dabbrev-expand
362 \ complete-into-braces 371 \ complete-into-braces
363 \ glob-expand-word 372 \ glob-expand-word
364 \ glob-list-expansions 373 \ glob-list-expansions
365 \ display-shell-version 374 \ display-shell-version
366 \ glob-complete-word 375 \ glob-complete-word