aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-06-17 23:48:20 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-06-17 23:48:20 +1200
commit2a4eeb8e981d5ee68dabf582d018a1707d9d1a62 (patch)
treebe0ff85148057051b6c6c0dbd35d264224df1626 /vim
parentMerge branch 'release/v0.56.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-0.56.1.tar.gz (sig)
dotfiles-0.56.1.zip
Merge branch 'hotfix/v0.56.1'v0.56.1
* hotfix/v0.56.1: Bump VERSION Add missing !
Diffstat (limited to 'vim')
-rw-r--r--vim/autoload/filter.vim2
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