diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-17 23:47:04 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-06-17 23:47:04 +1200 |
commit | ce5fc70314d8b56a8a1c033f07ce398a92554ba5 (patch) | |
tree | 980eb956bbee1d5bfc8fa318f609ee0cea3d7c54 /vim/autoload | |
parent | Merge branch 'release/v0.56.0' (diff) | |
download | dotfiles-ce5fc70314d8b56a8a1c033f07ce398a92554ba5.tar.gz dotfiles-ce5fc70314d8b56a8a1c033f07ce398a92554ba5.zip |
Add missing !
Diffstat (limited to 'vim/autoload')
-rw-r--r-- | vim/autoload/filter.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/autoload/filter.vim b/vim/autoload/filter.vim index f499f432..0a39f23a 100644 --- a/vim/autoload/filter.vim +++ b/vim/autoload/filter.vim @@ -2,6 +2,6 @@ " restore it after doing so function! filter#Stable(command) abort let l:view = winsaveview() - execute '%' . a:command + execute '%!' . a:command call winrestview(l:view) endfunction |