我知道這已經被問過了,但是我無法讓JavaScript縮進在Vim中正常工作。Vim中的JavaScript語法和縮進
我嘗試安裝這個插件:
http://www.vim.org/scripts/script.php?script_id=3081
我得到這個行爲:
if (x == 1) {
alert("nice");
}
這是我的vimrc:
syntax on
set background=light
colorscheme solarized
set tabstop=4
filetype plugin indent on
let g:solarized_termcolors=16
我也有這個試了一下插件:
http://www.vim.org/scripts/script.php?script_id=1840
但是,這給了我這樣的:
if (x == 1) {
alert("nice");
}
即兩個選項卡,在這裏我只是一個標籤中,要縮進。
任何人有什麼想法在這裏做什麼?
我在Vim的工作了一整天的JavaScript和唐Javascript縮進似乎沒有任何實際問題。看看我在Github上的Vim dotfiles - > [https://github.com/shanestillwell/dotvim](https://github.com/shanestillwell/dotvim) –