diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-10-02 11:26:01 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-10-02 11:26:01 +0900 |
commit | 51a9cec47ad815451a8cdf1408a50ea525111442 (patch) | |
tree | 1fbcd283a3a1946e4762dff6d0388704afd8ecc8 /autoload | |
parent | 807562bbebb7b7c033823ebd3b13b32a814d4f7f (diff) | |
download | vim-sonictemplate-51a9cec47ad815451a8cdf1408a50ea525111442.tar.gz vim-sonictemplate-51a9cec47ad815451a8cdf1408a50ea525111442.tar.bz2 vim-sonictemplate-51a9cec47ad815451a8cdf1408a50ea525111442.zip |
Fix feedkeys
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/sonictemplate.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/sonictemplate.vim b/autoload/sonictemplate.vim index 6146b3d..b857a25 100644 --- a/autoload/sonictemplate.vim +++ b/autoload/sonictemplate.vim @@ -379,7 +379,7 @@ function! sonictemplate#postfix() if stridx(c, '{{_cursor_}}') != -1 silent! call search('{{_cursor_}}\zs', 'w') silent! foldopen - silent! call feedkeys(repeat("\<bs>", 12)) + silent! call feedkeys(repeat("\<bs>", 12), 'n') endif break endif |