We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 745321f + 0a07f54 commit d6fee2bCopy full SHA for d6fee2b
autoload/codequery.vim
@@ -137,7 +137,7 @@ function! codequery#make_codequery_db(args) abort
137
continue
138
endif
139
140
- if v:version >= 800
+ if v:version >= 800 && !has('nvim')
141
echom 'Making DB ...'
142
let mydict = {'db_path': db_path,
143
\'callback': function("codequery#db#make_db_callback")}
autoload/codequery/query.vim
@@ -197,7 +197,7 @@ function! codequery#query#do_query(word) abort
197
return
198
199
200
201
echom 'Searching ... [' . a:word . ']'
202
203
let job_dict = {'is_append': g:codequery_append_to_qf ? 1 : 0,
0 commit comments