Skip to content

Commit ee3183e

Browse files
authored
fix ftplugin var and clean indent (#580)
* fix ftplugin var and clean indent
1 parent 924a645 commit ee3183e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

after/ftplugin/javascript.vim

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,8 @@
55

66
setlocal iskeyword+=$ suffixesadd+=.js
77

8-
let b:undo_ftplugin .= ' | setlocal iskeyword< suffixesadd<'
8+
if exists('b:undo_ftplugin')
9+
let b:undo_ftplugin .= ' | setlocal iskeyword< suffixesadd<'
10+
else
11+
let b:undo_ftplugin = 'setlocal iskeyword< suffixesadd<'
12+
endif

indent/javascript.vim

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
" Maintainer: vim-javascript community
44
" URL: https://github.com/pangloss/vim-javascript
55
" Acknowledgement: Based off of vim-ruby maintained by Nikolai Weibull http://vim-ruby.rubyforge.org
6+
" Last Change: July 29, 2016
67

78
" Only load this indent file when no other was loaded.
89
if exists("b:did_indent")
@@ -56,7 +57,7 @@ func s:lookForParens(start,end,flags,time)
5657
endtry
5758
endfunc
5859

59-
let s:line_term = '\s*\%(\%(:\@<!\/\/.*\)\=\|\%(\/\*.*\*\/\s*\)*\)$'
60+
let s:line_term = '\s*\%(\/\*.*\*\/\s*\)*\%(:\@<!\/\/.*\)\=$'
6061

6162
" configurable regexes that define continuation lines, not including (, {, or [.
6263
if !exists('g:javascript_opfirst')
@@ -131,7 +132,6 @@ function GetJavascriptIndent()
131132
let line = getline(v:lnum)
132133
" previous nonblank line number
133134
let prevline = prevnonblank(v:lnum - 1)
134-
" previous line of code
135135

136136
" start with strings,comments,etc.{{{2
137137
if (line !~ '^[''"`]' && s:IsSyn(v:lnum,1,'string\|template')) ||

0 commit comments

Comments
 (0)