Post

Replies

Boosts

Views

Activity

Comment on how to complete code just ONE "tab"?
thanks for reply, vs code i.e. visual studio code is a code editor which I used before. I wrote a cpp example program to show the difference. // code start (cpp) struct A{     public:     int varFst = 1;     int varSec = 2;     int funcAbc(){         return 1;     }     int funcAdc() {         return 2;     } }; void main(){     A a;     a.funcAbc();     a.funcAdc();     a.varSec; } // code end
Dec ’22
Comment on how to complete code just ONE "tab"?
typing "a.f" vs code will complete the highlight one with one tab, but in Xcode I need to press three times to make sure. "a.funcAbc()". I understand your explanation, but is it possible to make Xcode complete the highlight one with one tab?
Replies
Boosts
Views
Activity
Dec ’22
Comment on how to complete code just ONE "tab"?
thanks for reply, vs code i.e. visual studio code is a code editor which I used before. I wrote a cpp example program to show the difference. // code start (cpp) struct A{     public:     int varFst = 1;     int varSec = 2;     int funcAbc(){         return 1;     }     int funcAdc() {         return 2;     } }; void main(){     A a;     a.funcAbc();     a.funcAdc();     a.varSec; } // code end
Replies
Boosts
Views
Activity
Dec ’22