Remove man plugin from vim, it does not work for nvim,
closes #5761 parent 3f79f79 commit 619a7a8File tree Expand file treeCollapse file tree 12 files changedCopy full SHA for 619a7a8
+191
-334
lines changedFilter options
+191
-334
lines changed +1-1Lines changed: 1 addition & 1 deletion
@@ -7,7 +7,7 @@ A collection of language packs for Vim.
7
7
> One to rule them all, one to find them, one to bring them all and in the darkness bind them.
8
8
9
9
- It **won't affect your startup time**, as scripts are loaded only on demand\*.
10
-
- It **installs and updates 120+ times faster** than the <!--Package Count-->591<!--/Package Count--> packages it consists of.
10
+
- It **installs and updates 120+ times faster** than the <!--Package Count-->590<!--/Package Count--> packages it consists of.
11
11
- It is more secure because scripts loaded for all extensions are generated by vim-polyglot (ftdetect).
12
12
- Solid syntax and indentation support (other features skipped). Only the best language packs.
13
13
- All unnecessary files are ignored (like enormous documentation from php support).
-1Lines changed: 0 additions & 1 deletion Original file line number Diff line number Diff line change
@@ -308,7 +308,6 @@ let s:globs = {
308
308
\ 'mailcap': '.mailcap,mailcap',
309
309
\ 'mako': '*.mako,*.mao',
310
310
\ 'mallard': '*.page',
311
-
\ 'man': '*.man',
312
311
\ 'manconf': 'man.config',
313
312
\ 'map': '*.map',
314
313
\ 'maple': '*.mv,*.mpl,*.mws',
-4Lines changed: 0 additions & 4 deletions Original file line number Diff line number Diff line change
@@ -970,10 +970,6 @@ if !has_key(s:disabled_packages, 'manconf')
970
970
au BufNewFile,BufRead */etc/man.conf,man.config setf manconf
971
971
endif
972
972
973
-
if !has_key(s:disabled_packages, 'man')
974
-
au BufNewFile,BufRead *.man setf man
975
-
endif
976
-
977
973
if !has_key(s:disabled_packages, 'mallard')
978
974
au BufNewFile,BufRead *.page setf mallard
979
975
endif
-254Lines changed: 0 additions & 254 deletions +1Lines changed: 1 addition & 0 deletions Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
1
1
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'purescript') == -1
2
2
3
3
setlocal comments=s1fl:{-,mb:\ \ ,ex:-},:--\ \|,:--
4
+
setlocal commentstring=--\ %s
4
5
setlocal include=^import
5
6
setlocal includeexpr=printf('%s.purs',substitute(v:fname,'\\.','/','g'))
6
7
+29Lines changed: 29 additions & 0 deletions Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
1
+
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'yaml') == -1
2
+
3
+
" Vim filetype plugin file
4
+
" Language: YAML (YAML Ain't Markup Language)
5
+
" Previous Maintainer: Nikolai Weibull <now@bitwi.se> (inactive)
6
+
" Last Change: 2020 Mar 02
7
+
8
+
if exists("b:did_ftplugin")
9
+
finish
10
+
endif
11
+
let b:did_ftplugin = 1
12
+
13
+
let s:cpo_save = &cpo
14
+
set cpo&vim
15
+
16
+
let b:undo_ftplugin = "setl com< cms< et< fo<"
17
+
18
+
setlocal comments=:# commentstring=#\ %s expandtab
19
+
setlocal formatoptions-=t formatoptions+=croql
20
+
21
+
if !exists("g:yaml_recommended_style") || g:yaml_recommended_style != 0
22
+
let b:undo_ftplugin .= " sw< sts<"
23
+
setlocal shiftwidth=2 softtabstop=2
24
+
endif
25
+
26
+
let &cpo = s:cpo_save
27
+
unlet s:cpo_save
28
+
29
+
endif
You can’t perform that action at this time.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4