1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-04 03:05:46 +01:00

Remove 'linksearch' from the Vim runtime files.

Also mention its removal in NEWS.
This commit is contained in:
Doug Kearns
2010-12-19 00:10:16 +11:00
parent 8f4d26f9ac
commit 3d6406751b
4 changed files with 8 additions and 6 deletions

View File

@@ -60,8 +60,8 @@ syn keyword melodactylOption activate act altwildmode awim autocomplete au cdpat
\ contained nextgroup=melodactylSetMod
let s:toggleOptions = ["banghist", "bh", "errorbells", "eb", "exrc", "ex", "fullscreen", "fs", "hlsearch", "hls",
\ "incsearch", "is", "insertmode", "im", "jsdebugger", "jsd", "linksearch", "lks", "more", "online", "searchcase", "sc",
\ "showmode", "smd", "shuffle", "strictfocus", "sf", "usermode", "um", "visualbell", "vb"]
\ "incsearch", "is", "insertmode", "im", "jsdebugger", "jsd", "more", "online", "searchcase", "sc", "showmode", "smd",
\ "shuffle", "strictfocus", "sf", "usermode", "um", "visualbell", "vb"]
execute 'syn match melodactylOption "\<\%(no\|inv\)\=\%(' .
\ join(s:toggleOptions, '\|') .
\ '\)\>!\=" contained nextgroup=melodactylSetMod'

View File

@@ -49,6 +49,8 @@
* The concept of completion contexts is now exposed to the user
(see :h :contexts), allowing for powerful and fine-grained
completion system customization.
* IMPORTANT: 'linksearch' has been removed. The \l search modifier can
still be used for this purpose.
* IMPORTANT: 'laststatus' has been replaced with the "s" flag in
'guioptions'.
* IMPORTANT: 'showstatuslinks' is now a string option.

View File

@@ -61,8 +61,8 @@ syn keyword pentadactylOption activate act altwildmode awim autocomplete au cdpa
\ contained nextgroup=pentadactylSetMod
let s:toggleOptions = ["banghist", "bh", "errorbells", "eb", "exrc", "ex", "flashblock", "fb", "fullscreen", "fs",
\ "hlsearch", "hls", "incsearch", "is", "insertmode", "im", "jsdebugger", "jsd", "linksearch", "lks", "more", "online",
\ "private", "pornmode", "searchcase", "sc", "showmode", "smd", "strictfocus", "sf", "usermode", "um", "visualbell", "vb"]
\ "hlsearch", "hls", "incsearch", "is", "insertmode", "im", "jsdebugger", "jsd", "more", "online", "private",
\ "pornmode", "searchcase", "sc", "showmode", "smd", "strictfocus", "sf", "usermode", "um", "visualbell", "vb"]
execute 'syn match pentadactylOption "\<\%(no\|inv\)\=\%(' .
\ join(s:toggleOptions, '\|') .
\ '\)\>!\=" contained nextgroup=pentadactylSetMod'

View File

@@ -55,8 +55,8 @@ syn keyword teledactylOption altwildmode awim archivefolder autocomplete au cdpa
\ contained nextgroup=teledactylSetMod
let s:toggleOptions = ["autoexternal", "ae", "banghist", "bh", "errorbells", "eb", "exrc", "ex", "fullscreen", "fs",
\ "hlsearch", "hls", "incsearch", "is", "insertmode", "im", "jsdebugger", "jsd", "linksearch", "lks", "more", "online",
\ "searchcase", "sc", "showmode", "smd", "strictfocus", "sf", "usermode", "um", "visualbell", "vb"]
\ "hlsearch", "hls", "incsearch", "is", "insertmode", "im", "jsdebugger", "jsd", "more", "online", "searchcase", "sc",
\ "showmode", "smd", "strictfocus", "sf", "usermode", "um", "visualbell", "vb"]
execute 'syn match teledactylOption "\<\%(no\|inv\)\=\%(' .
\ join(s:toggleOptions, '\|') .
\ '\)\>!\=" contained nextgroup=teledactylSetMod'