Open
Description
Hello
I have a lot of TABed code and find that the plugin doesn’t respect the initial cursor TABed (or multiple space indent) position for the inserted snippet code -see below. Is there anything I can do to fix this anomaly.
Before cursor
<empty line>
Nameobject(folderName);
BeginFolderN(kSYMBOLDEFS); {kSYMBOLDEFS = 16;}
<empty line>
After cursor
<empty line>
EndFolder;
Some example code
SetSelect(objH);
<-cursor
end;
If I add snippet at cursor position above, I get the following
SetSelect(objH);
Nameobject(folderName);
BeginFolderN(kSYMBOLDEFS); {kSYMBOLDEFS = 16;}
<-cursor
EndFolder;
end;