diff options
| author | Christian Clason <c.clason@uni-graz.at> | 2024-10-12 11:23:31 +0200 |
|---|---|---|
| committer | Christian Clason <ch.clason+github@icloud.com> | 2024-10-15 20:50:21 +0200 |
| commit | 82b02ae2f2af439a8c678ed6b55a43121055f279 (patch) | |
| tree | fd6b93e01aedeeed026edb2c0a29b989dd163aad /runtime/ftplugin | |
| parent | ea5b748f243883b9890e465d4abef598fe2b07fc (diff) | |
| download | rneovim-82b02ae2f2af439a8c678ed6b55a43121055f279.tar.gz rneovim-82b02ae2f2af439a8c678ed6b55a43121055f279.tar.bz2 rneovim-82b02ae2f2af439a8c678ed6b55a43121055f279.zip | |
fix(runtime): clean up one-off scripts
Problem: Some runtime files no longer spark joy.
Solution: Kondo the place up.
Still sparks _some_ joy (moved to new `runtime/scripts` folder):
* `macros/less.*`
* `mswin.vim`
* `tools/emoji_list.lua`
No longer sparks joy (removed):
* `macmap.vim` (gvimrc file; not useful in Nvim)
* `tools/check_colors.vim` (no longer useful with new default colorscheme and treesitter)
* `macros/editexisting.vim` (throws error on current Nvim)
* `macros/justify.vim` (obsolete shim for `packadd! justify`)
* `macros/matchit.vim` (same)
* `macros/shellmenu.vim` (same)
* `macros/swapmous.vim` (same)
Diffstat (limited to 'runtime/ftplugin')
| -rw-r--r-- | runtime/ftplugin/ada.vim | 2 | ||||
| -rw-r--r-- | runtime/ftplugin/erlang.vim | 2 | ||||
| -rw-r--r-- | runtime/ftplugin/plaintex.vim | 2 | ||||
| -rw-r--r-- | runtime/ftplugin/spec.vim | 2 | ||||
| -rw-r--r-- | runtime/ftplugin/tex.vim | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/runtime/ftplugin/ada.vim b/runtime/ftplugin/ada.vim index 688d912126..50e1388c80 100644 --- a/runtime/ftplugin/ada.vim +++ b/runtime/ftplugin/ada.vim @@ -103,7 +103,7 @@ endif if !exists ("b:match_words") && \ exists ("loaded_matchit") " - " The following lines enable the macros/matchit.vim plugin for + " The following lines enable the matchit.vim plugin for " Ada-specific extended matching with the % key. " let s:notend = '\%(\<end\s\+\)\@<!' diff --git a/runtime/ftplugin/erlang.vim b/runtime/ftplugin/erlang.vim index 5a3ab717d9..e82263d300 100644 --- a/runtime/ftplugin/erlang.vim +++ b/runtime/ftplugin/erlang.vim @@ -97,7 +97,7 @@ if !exists('*ErlangFoldText') endfunction endif -" The following lines enable the macros/matchit.vim plugin for extended +" The following lines enable the matchit.vim plugin for extended " matching with the % key. let b:match_ignorecase = 0 let b:match_words = diff --git a/runtime/ftplugin/plaintex.vim b/runtime/ftplugin/plaintex.vim index 9e0e402680..17c1f5672f 100644 --- a/runtime/ftplugin/plaintex.vim +++ b/runtime/ftplugin/plaintex.vim @@ -22,7 +22,7 @@ let b:undo_ftplugin .= "| unlet! b:match_ignorecase b:match_skip b:match_words" let &l:define .= '\|\\new\(count\|dimen\|skip\|muskip\|box\|toks\|read\|write' \ . '\|fam\|insert\)' -" The following lines enable the macros/matchit.vim plugin for +" The following lines enable the matchit.vim plugin for " extended matching with the % key. " There is no default meaning for \(...\) etc., but many users define one. if exists("loaded_matchit") diff --git a/runtime/ftplugin/spec.vim b/runtime/ftplugin/spec.vim index dcf2908911..4aaef26a2e 100644 --- a/runtime/ftplugin/spec.vim +++ b/runtime/ftplugin/spec.vim @@ -210,7 +210,7 @@ if !exists("*s:ParseRpmVars") endfunction endif -" The following lines, along with the macros/matchit.vim plugin, +" The following lines, along with the matchit.vim plugin, " make it easy to navigate the different sections of a spec file " with the % key (thanks to Max Ischenko). diff --git a/runtime/ftplugin/tex.vim b/runtime/ftplugin/tex.vim index 0d68b51d46..7b58f67863 100644 --- a/runtime/ftplugin/tex.vim +++ b/runtime/ftplugin/tex.vim @@ -32,7 +32,7 @@ let &l:include .= '\|\\include{' " TeX file has \include{fname} (LaTeX only), strip everything except "fname". let &l:includeexpr = "substitute(v:fname, '^.\\{-}{\\|}.*', '', 'g')" -" The following lines enable the macros/matchit.vim plugin for +" The following lines enable the matchit.vim plugin for " extended matching with the % key. " ftplugin/plaintex.vim already defines b:match_skip and b:match_ignorecase " and matches \(, \), \[, \], \{, and \} . |