Skip to content

Commit 214641f

Browse files
committed
Runtime file updates.
1 parent 066029e commit 214641f

File tree

190 files changed

+1089
-895
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

190 files changed

+1089
-895
lines changed

runtime/autoload/javascriptcomplete.vim

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim completion script
22
" Language: Java Script
33
" Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl )
4-
" Last Change: 2006 Apr 30
4+
" Last Change: 2017 Mar 04
55

66
function! javascriptcomplete#CompleteJS(findstart, base)
77
if a:findstart
@@ -563,7 +563,7 @@ function! javascriptcomplete#CompleteJS(findstart, base)
563563
for i in arguments
564564
let g:ia = i
565565
let f_elements = matchlist(i, 'function\s\+\(\k\+\)\s*(\(.\{-}\))')
566-
if len(f_elements) == 3
566+
if len(f_elements) >= 3
567567
let b:js_menuinfo[f_elements[1].'('] = f_elements[2]
568568
endif
569569
endfor

runtime/compiler/bdf.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim compiler file
2-
" Compiler: BDF to PCF Conversion
3-
" Maintainer: Nikolai Weibull <[email protected]>
4-
" Latest Revision: 2006-04-19
2+
" Compiler: BDF to PCF Conversion
3+
" Previous Maintainer: Nikolai Weibull <[email protected]>
4+
" Latest Revision: 2006-04-19
55

66
if exists("current_compiler")
77
finish

runtime/compiler/gcc.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim compiler file
2-
" Compiler: GNU C Compiler
3-
" Maintainer: Nikolai Weibull <[email protected]>
4-
" Latest Revision: 2010-10-14
2+
" Compiler: GNU C Compiler
3+
" Previous Maintainer: Nikolai Weibull <[email protected]>
4+
" Latest Revision: 2010-10-14
55
" added line suggested by Anton Lindqvist 2016 Mar 31
66

77
if exists("current_compiler")

runtime/compiler/rst.vim

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
" Vim compiler file
2-
" Compiler: reStructuredText Documentation Format
3-
" Maintainer: Nikolai Weibull <[email protected]>
4-
" Latest Revision: 2006-04-19
2+
" Compiler: reStructuredText Documentation Format
3+
" Previous Maintainer: Nikolai Weibull <[email protected]>
4+
" Latest Revision: 2006-04-19
55

66
if exists("current_compiler")
77
finish

0 commit comments

Comments
 (0)