Sublime Forum

Multi-line comment concatenated into 1 line

#1

Hi there,
I don’t understand how indents work with multi-line “comments”.
I’m not comfortable with this behavior:

#!/bin/sh
if true; then
  # echo hello
  # echo world
fi

If I remove 1 character from to multi-line comment concatenated into 1 line:

#!/bin/sh
if true; then
  # echo hell echo world
fi

It’s possible to disable concatenation?

0 Likes

#2

It is coming from one of your plugin, this is not a “feature” from Sublime.

0 Likes

#3

Thanks.
It seems the problem with plugin “WrapAsYourType

Fixed when I deleted this

0 Likes