Sublime Text: prohibit comment on a new line

I’m not quite sure that this is not a plugin, but after starting the line comment in the .js file, for example, when I press Enter, the next line starts with "//". This is a bit annoying. Is there an easy way to remove this?

+3
source share
2 answers

This is really called the DocBlockr package.

When using this package, you can click shift + enterto prevent it from appearing //on your new line.

+10
source

In "Preferences → Package Settings → Doc Blockr → Default Settings" you can find the lines:

// true, enter, (, ) // .

"jsdocs_extend_double_slash": true,

, " → → Doc Blockr → "

{
  "jsdocs_extend_double_slash": false
}
+12

All Articles