You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
357 B
VimL
13 lines
357 B
VimL
" Vim filetype plugin file
|
|
" Language: JavaScript
|
|
" Maintainer: vim-javascript community
|
|
" URL: https://github.com/pangloss/vim-javascript
|
|
|
|
setlocal iskeyword+=$ suffixesadd+=.js
|
|
|
|
if exists('b:undo_ftplugin')
|
|
let b:undo_ftplugin .= ' | setlocal iskeyword< suffixesadd<'
|
|
else
|
|
let b:undo_ftplugin = 'setlocal iskeyword< suffixesadd<'
|
|
endif
|