Hello, I want to toggle option kind of disabling auto bracket and auto completing words function.
when I try typing
int arr[5] = {0};
it makes code like below right away.
int arr[5] = {
@cursor_here
};
and when I type
int &ret
and give one space, then it makes code like below right away.
int &return ;
How to toggle those options ?
Hello, I want to toggle option kind of disabling auto bracket and auto completing words function.
when I try typing
int arr[5] = {0};it makes code like below right away.
and when I type
int &retand give one space, then it makes code like below right away.
int &return ;How to toggle those options ?