We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0151895 commit 64653fbCopy full SHA for 64653fb
autoload/vimlparser.vim
@@ -1,7 +1,15 @@
1
+" The main code was moved to autoload/vital/__vimlparser__/VimlParser.vim to
2
+" make vim-vimlparser.vim vital-module.
3
+"
4
+" See https://github.com/vim-jp/vital.vim for vital module.
5
+
6
let s:VimLParser = vital#vimlparser#import('VimlParser')
7
8
call extend(s:, s:VimLParser.import())
9
10
+" To Vim plugin developer who want to depend on vim-vimlparser:
11
+" Please use vimlparser as vital-module instead of this autoload function.
12
+" We do not ensure that future changes are backward compatible.
13
function! vimlparser#import()
14
return s:VimLParser.import()
15
endfunction
0 commit comments