aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2018-07-14 18:06:37 +1200
committerTom Ryder <tom@sanctum.geek.nz>2018-07-14 18:06:37 +1200
commitee33e50228cedbcf973728baa4c5d46c83aee1ce (patch)
treefed9ca1cd7bba8979fb7180388a7186414bea1c9
parentFirst version (diff)
parentBump VERSION (diff)
downloadvim-digraph-search-ee33e50228cedbcf973728baa4c5d46c83aee1ce.tar.gz
vim-digraph-search-ee33e50228cedbcf973728baa4c5d46c83aee1ce.zip
Merge branch 'hotfix/v0.1.1'v0.1.1
* hotfix/v0.1.1: Bump VERSION Require +digraphs feature
-rw-r--r--VERSION2
-rw-r--r--plugin/digraph_search.vim2
2 files changed, 2 insertions, 2 deletions
diff --git a/VERSION b/VERSION
index 6e8bf73..17e51c3 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.1.0
+0.1.1
diff --git a/plugin/digraph_search.vim b/plugin/digraph_search.vim
index 44a1307..24a5f37 100644
--- a/plugin/digraph_search.vim
+++ b/plugin/digraph_search.vim
@@ -8,7 +8,7 @@
if exists('g:loaded_digraph_search') || &compatible
finish
endif
-if v:version < 700
+if !has('digraphs') || v:version < 700
finish
endif
let g:loaded_digraph_search = 1