Add comment on next line when not at the end of the line comment in onEnter rules (#233219)

adding line comment when not at the end of a line
This commit is contained in:
Aiday Marlen Kyzy 2024-11-06 17:45:54 +01:00 коммит произвёл GitHub
Родитель af4c2d2666
Коммит e8e5333cbb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 14 добавлений и 1 удалений

Просмотреть файл

@ -228,5 +228,18 @@
"appendText": "\t",
}
},
// Add // when pressing enter from inside line comment
{
"beforeText": {
"pattern": "\/\/.*"
},
"afterText": {
"pattern": "^(?!\\s*$).+"
},
"action": {
"indent": "none",
"appendText": "// "
}
},
]
}

Просмотреть файл

@ -252,7 +252,7 @@
"pattern": "\/\/.*"
},
"afterText": {
"pattern": ".*"
"pattern": "^(?!\\s*$).+"
},
"action": {
"indent": "none",