我的vim不能用 cs find s 等其他方法去找 function 或 symbol
我先說一下我怎麼 build 好了
Command 如下
find "$(pwd -P)" -name "*.c" -o -name "*.h" > cscope.files
cscope -Rbqk -i cscope.files
以上兩個指令下在 project 的 Root
然後 .vimrc 參考這邊的做法
https://www.ptt.cc/bbs/Linux/M.1260968163.A.227.html
來取得 database,確保我在 project內的所有 folder 開檔都可以拿到database
我有使用 :cs show 來看有沒有正確載入,確實有載入我要的 cscope.out
但是就是沒辦法用,用 cs find s等等都不行,都會出現E259 matches no found...
但奇怪的是,我在 project 的 root 用以下 command
cscope -Rbqk - I cscope.files
進入到互動介面後,整份 project 的 symbol 和 function 都可以如預期找到
我感覺像是 vim 除了狀況
但我不知道該怎麼查出來QQ