aboutsummaryrefslogtreecommitdiff
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
parentMerge branch 'release/v0.56.0' (diff)
parentBump VERSION (diff)
downloaddotfiles-2a4eeb8e981d5ee68dabf582d018a1707d9d1a62.tar.gz
dotfiles-2a4eeb8e981d5ee68dabf582d018a1707d9d1a62.zip
Merge branch 'hotfix/v0.56.1'v0.56.1
* hotfix/v0.56.1: Bump VERSION Add missing !
-rw-r--r--VERSION4
-rw-r--r--vim/autoload/filter.vim2
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION
index b2a45e0b..2cb5653f 100644
--- a/VERSION
+++ b/VERSION
@@ -1,2 +1,2 @@
-tejr dotfiles v0.56.0
-Sun Jun 17 11:12:53 UTC 2018
+tejr dotfiles v0.56.1
+Sun Jun 17 11:47:39 UTC 2018
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