ZhangLiao
New Member
2 Posts |
Posted - May 15 2012 : 11:14:08 AM
|
I wrote a header file with a class definition and some function declaration,and I want to give implementions to those functions; class Test{ public: void function1(); void function2(); void function3();
};
I want to input code like: void Test::function1(){ };
but when I typed 'void Test', none of the items int the listbox is selected so I cannot input one of them by 'enter' or 'tab' key, unless I had used the 'up' and 'down' key, this is problem1.png;
when I typed 'void Test::', I got three suggestions of the three functions, but the first was 'half-selected', so I can only commite it with 'tab',not 'enter', this is problem2.png;
however,when I type 'void' at the beginning, I got what I want, the 'void' was always selected and I can commit with 'tab' or 'enter' any way configured in the plugin, this is fine.png.
can we solve problem1.png and problem2.png with the fine.png?
problem1.png
problem2.png
fine.png
|
|