quickr-cscope.vim icon indicating copy to clipboard operation
quickr-cscope.vim copied to clipboard

Have to click to activate <leader>g

Open Steampunkery opened this issue 2 years ago • 1 comments

I'm not sure what changed recently, as the plugin used to "just work", but it seems that after pressing g I now have to click the tag I wish to search with the mouse. Is there a quickr-cscope or vim setting that I can set to revert this behaviour?

Steampunkery avatar Aug 01 '23 16:08 Steampunkery

I had the same issue, but when I turned on debug messages found out that it can't find the database file (cscope.out). The findfile(g:quickr_cscope_db_file, '.;') apparently can't find the file and returns an empty string. I replaced it with findfile(g:quickr_cscope_db_file, '**') and now every keymap now works just fine.

akmubi avatar Oct 18 '24 21:10 akmubi