8
我正在嘗試使用Vim自動完成。我有在文件def.h
一個struct
:Vim在C中自動完成一個結構
typedef struct test{
int x;
int y;
}*test_p,test_t;
,並在相應的C文件:
test_p t;
t->[autocomplete here]
我本來應該按與x或y來填補呢?無論CTRLP也不CTRLň給我從裏面test
變量。
我已經使用ctags
,當然我已經包含def.h
。以下是我的標籤文件中的內容:
test def.h /^typedef struct test{$/;" s
test_p def.h /^}*test_p,test_t;$/;" t typeref:struct:test
test_t def.h /^}*test_p,test_t;$/;" t typeref:struct:test
x def.h /^ int x;$/;" m struct:test
y def.h /^ int y;$/;" m struct:test