mattn / vim-sonictemplate

Easy and high speed coding method
http://mattn.github.com/vim-sonictemplate
333 stars 42 forks source link

Fix for noexpandtab && &sw == 0 && &ts != &sw #23

Closed sgur closed 8 years ago

sgur commented 8 years ago

http://vim-jp.org/vimdoc-ja/options.html#'shiftwidth'

0 の場合は、'ts' の値が使われる。実際に使われる値を取得するには |shiftwidth()| 関数を使う。

上記 &shiftwidth == 0 の挙動を想定して set sw=0 していると、適切にインデントできない件を修正しました。

mattn commented 8 years ago

Thx!