TheRealSyler / vscode-sass-indented

Sass indented syntax support for VSCode
https://marketplace.visualstudio.com/items?itemName=Syler.sass-indented
Other
44 stars 8 forks source link

Unexpected indent on enter #103

Closed pikeas closed 2 years ago

pikeas commented 2 years ago

Describe the bug

foo
    property: value
|<-- place cursor here

Pressing enter triggers an indent, resulting in:

foo
    property: value

    |<-- cursor moves here

Expected behavior

foo
    property: value

|<-- cursor should move here
TheRealSyler commented 2 years ago

There is a option to disable this behavior sass.disableAutoIndent, you need to reload/restart vscode after changing it.