Is it possible to make sublime not auto comment “# code…”.inside loops?
Example when for+TAB:
for ($i=0; $i < ; $i++) { # code... }
Is it possible to make sublime not auto comment “# code…”.inside loops?
Example when for+TAB:
for ($i=0; $i < ; $i++) { # code... }
You can press Tab to go to the next placeholder after auto completion.
If you still want to remove the commented line, you have to modify the snippet for your target language.
That looks like the default “for” snippet in PHP.
You can override that snippet with your own, see the documentation for details.
Alternatively, you could install php-snippets which doesn’t include those comments in the snippets.
For best results, if you install php-snippets you should also install php-grammar and the php-completions packages too.