How to insert <TAB> after word? #12133
-
Our coding standard require to insert after type name on variable/field declaration: struct A {
size_t/*TAB here*/fsize;
size_t/*and I try to type it here*/
}; When I type Can you help me? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Do |
Beta Was this translation helpful? Give feedback.
Do
C-c
to close the popup and then try to insert withS-tab
. (By default, pressing tab when not at the whitespace beginning of a line will use smart-tab behavior where the cursor will jump to the end of the current syntax node. But this can be overridden as shown in https://docs.helix-editor.com/editor.html#editorsmart-tab-section)