mirror of
https://github.com/amix/vimrc
synced 2024-12-14 22:22:37 +00:00
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
|