-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error: "E518: Unknown option: cscopequickfix= ..." #48
Comments
+1, can't figure out how to fix it. latest nightly nvim on MacOS. |
sorry, can't help, |
What've I've done for now is comment things out in diff --git a/plugin/gutentags_plus.vim b/plugin/gutentags_plus.vim
index ef0983f..4263e97 100644
--- a/plugin/gutentags_plus.vim
+++ b/plugin/gutentags_plus.vim
@@ -11,11 +11,11 @@
let s:windows = has('win32') || has('win64') || has('win16') || has('win95')
-if v:version >= 800
- set cscopequickfix=s+,c+,d+,i+,t+,e+,g+,f+,a+
-else
- set cscopequickfix=s+,c+,d+,i+,t+,e+,g+,f+
-endif
+"if v:version >= 800
+" set cscopequickfix=s+,c+,d+,i+,t+,e+,g+,f+,a+
+"else
+" set cscopequickfix=s+,c+,d+,i+,t+,e+,g+,f+
+"endif
let g:gutentags_auto_add_gtags_cscope = 0 |
update: I have made a compatible layer and simulate cscope interface for nvim-0.9.0 which makes this plugin available for nvim-0.9.0 now: 8f34500 This requires a little modification in gutentags's gtags-cscope module, the corresponding PR has been created as well: before it gets merged, my branch can be used in neovim-0.9.0: |
Hey, thank you for this! 🙏
I am receiving an error within the latest
nvim
on linux:Thank you again! 🙏
The text was updated successfully, but these errors were encountered: