File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -285,16 +285,17 @@ sub output {
285
285
runtime! syntax/c.vim
286
286
endif
287
287
288
- let xs_superseded = 1 " mark C functions superseded by Perl replacements
289
- let xs_not_core = 1 " mark private core functions
288
+ " Configuration:
289
+ " let xs_superseded = 0 " mark C functions superseded by Perl replacements (ex. memcpy vs Copy)
290
+ " let xs_not_core = 0 " mark private core functions
290
291
291
292
_VIM_
292
293
293
- print $vim "if exists( \" xs_superseded \" ) && xs_superseded\n ";
294
+ print $vim "if get(g:, ' xs_superseded', 0) \n ";
294
295
output \% superseded, 'Superseded' => $vim ;
295
296
print $vim "endif\n ";
296
297
297
- print $vim "if exists( \" xs_not_core \" ) && xs_not_core\n ";
298
+ print $vim "if get(g:, ' xs_not_core', 0) \n ";
298
299
output \% private, 'Private' => $vim ;
299
300
print $vim "endif\n ";
300
301
You can’t perform that action at this time.
0 commit comments