diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-10-02 10:41:10 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2019-10-02 10:41:10 +0900 |
commit | 807562bbebb7b7c033823ebd3b13b32a814d4f7f (patch) | |
tree | bc37f7ec07cf56cc5150d72a9f2d8011ba445044 /autoload | |
parent | 7db10f422f61819a1a8f45d0dade1de17ecab2b6 (diff) | |
download | vim-sonictemplate-807562bbebb7b7c033823ebd3b13b32a814d4f7f.tar.gz vim-sonictemplate-807562bbebb7b7c033823ebd3b13b32a814d4f7f.tar.bz2 vim-sonictemplate-807562bbebb7b7c033823ebd3b13b32a814d4f7f.zip |
Use flag n for 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 1fc6451..6146b3d 100644 --- a/autoload/sonictemplate.vim +++ b/autoload/sonictemplate.vim @@ -327,7 +327,7 @@ function! sonictemplate#apply(name, mode, ...) abort else silent! call search('{{_cursor_}}\zs', 'w') silent! foldopen - silent! call feedkeys(repeat("\<bs>", 12)) + silent! call feedkeys(repeat("\<bs>", 12), 'n') endif endif endfunction |