Skip to content

Commit bab6548

Browse files
committed
up feature.vim (crypt-blowfish[2],osx,packages)
1 parent b854a61 commit bab6548

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

autoload/vimlint/feature.vim

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ function! s:init() abort " {{{
2929
\ 'cmdline_info': 1,
3030
\ 'comments': 1,
3131
\ 'conceal': 1,
32+
\ 'crypt-blowfish': 1,
33+
\ 'crypt-blowfish2': 1,
3234
\ 'cryptv': 1,
3335
\ 'cscope': 1,
3436
\ 'cursorbind': 1,
@@ -40,8 +42,6 @@ function! s:init() abort " {{{
4042
\ 'digraphs': 1,
4143
\ 'directx': 1,
4244
\ 'dnd': 1,
43-
\ 'dos16': 1,
44-
\ 'dos32': 1,
4545
\ 'ebcdic': 1,
4646
\ 'emacs_tags': 1,
4747
\ 'eval': 1,
@@ -68,7 +68,6 @@ function! s:init() abort " {{{
6868
\ 'gui_nextaw': 1,
6969
\ 'gui_photon': 1,
7070
\ 'gui_running': 1,
71-
\ 'gui_win16': 1,
7271
\ 'gui_win32': 1,
7372
\ 'gui_win32s': 1,
7473
\ 'gui_win64': 1,
@@ -109,7 +108,8 @@ function! s:init() abort " {{{
109108
\ 'netbeans_enabled': 1,
110109
\ 'netbeans_intg': 1,
111110
\ 'ole': 1,
112-
\ 'os2': 1,
111+
\ 'osx': 1,
112+
\ 'packages': 1,
113113
\ 'path_extra': 1,
114114
\ 'perl': 1,
115115
\ 'persistent_undo': 1,
@@ -127,7 +127,6 @@ function! s:init() abort " {{{
127127
\ 'showcmd': 1,
128128
\ 'signs': 1,
129129
\ 'smartindent': 1,
130-
\ 'sniff': 1,
131130
\ 'spell': 1,
132131
\ 'startuptime': 1,
133132
\ 'statusline': 1,
@@ -159,7 +158,6 @@ function! s:init() abort " {{{
159158
\ 'vreplace': 1,
160159
\ 'wildignore': 1,
161160
\ 'wildmenu': 1,
162-
\ 'win16': 1,
163161
\ 'win32': 1,
164162
\ 'win32unix': 1,
165163
\ 'win64': 1,
@@ -186,8 +184,19 @@ function! s:init() abort " {{{
186184
\ 'guess_encode': 1,
187185
\ } " }}}
188186

187+
" old version {{{
188+
let old = {
189+
\ 'dos16': 1,
190+
\ 'dos32': 1,
191+
\ 'gui_win16': 1,
192+
\ 'os2': 1,
193+
\ 'sniff': 1,
194+
\ 'win16': 1,
195+
\ } " }}}
196+
189197
let dict = feature
190198
let dict = extend(dict, kaoriya)
199+
let dict = extend(dict, old)
191200
let dict['gui_macvim'] = 1
192201
let dict['gui_kde'] = 1
193202
let dict['gui_qt'] = 1

0 commit comments

Comments
 (0)