forked from aniani/vim
Add missing assignment operators (:let*=, :let/= and :let%=). Signed-off-by: Doug Kearns <dougkearns@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
12 lines
158 B
VimL
12 lines
158 B
VimL
" Vim variable highlighting
|
|
|
|
let foo = expr
|
|
|
|
let foo += expr
|
|
let foo -= expr
|
|
let foo *= expr
|
|
let foo /= expr
|
|
let foo %= expr
|
|
let foo .= expr
|
|
let foo ..= expr
|