summaryrefslogtreecommitdiffstats
path: root/runtime/autoload/javascriptcomplete.vim
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/autoload/javascriptcomplete.vim')
-rw-r--r--runtime/autoload/javascriptcomplete.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/autoload/javascriptcomplete.vim b/runtime/autoload/javascriptcomplete.vim
index 87e40f36d3..2abe41b463 100644
--- a/runtime/autoload/javascriptcomplete.vim
+++ b/runtime/autoload/javascriptcomplete.vim
@@ -1,7 +1,7 @@
" Vim completion script
" Language: Java Script
" Maintainer: Mikolaj Machowski ( mikmach AT wp DOT pl )
-" Last Change: 2006 Feb 6
+" Last Change: 2006 Apr 30
function! javascriptcomplete#CompleteJS(findstart, base)
if a:findstart
@@ -48,7 +48,7 @@ function! javascriptcomplete#CompleteJS(findstart, base)
let doms = ['style.']
" Arrays
let arrayprop = ['constructor', 'index', 'input', 'length', 'prototype']
- let arraymeth = ['concat', 'join', 'pop', 'push', 'reverse', 'shift',
+ let arraymeth = ['concat', 'join', 'pop', 'push', 'reverse', 'shift',
\ 'splice', 'sort', 'toSource', 'toString', 'unshift', 'valueOf',
\ 'watch', 'unwatch']
call map(arraymeth, 'v:val."("')