2017-01-22 115 views
1

我剛開始使用vim-snipmate,所以我可能會做了錯誤的方式。我這樣定義VIM-snipmate改變結束光標位置

snippet model 
    const mongoose = require('mongoose'); 
    module.exports = mongoose.model('${1}',mongoose.Schema({ 
    ${2} 
    })); 

的問題是,直到${1}這一切工作正常,但在${2}我想用我的片段的其他一些,但我使用TAB目前它承擔的$2末並跳轉到一個自定義的代碼片段結束。我可以如何改變這種行爲。或者我會在這裏定義片段的一些錯誤方式?

回答

1

如果您想在該位置使用代碼段,請將${2}更改爲${0}