diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-14 18:06:14 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2018-07-14 18:06:14 +1200 |
commit | d0c9bff11ec1ff5e5d0e195e2c537515d3e6c106 (patch) | |
tree | f58d92556dcd6a083fc42efb66e7ad2c8028d5ff /plugin | |
parent | First version (diff) | |
download | vim-digraph-search-d0c9bff11ec1ff5e5d0e195e2c537515d3e6c106.tar.gz vim-digraph-search-d0c9bff11ec1ff5e5d0e195e2c537515d3e6c106.zip |
Require +digraphs feature
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/digraph_search.vim | 2 |
1 files changed, 1 insertions, 1 deletions
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 |