Open SwatiMohapatra opened 2 weeks ago
@SwatiMohapatra please edit the issue description to fix the link.
copy pasting the link text works fine https://github.com/microsoft/vscode-discussions/discussions/2363 also https://stackoverflow.com/questions/79137268/in-vscode-language-extension-while-comment-toggling-comment-indicator-goes-to-1
possible options are:
Tab Size
indentation to 1
package.json
:
"contributes": {
"configurationDefaults": {
"[languageId]": {
"editor.tabSize": 1
}
}
}
` to
"lineComment": " !"`However it will have problems with uncommenting
due to the comment toggling code skipping whitespace indentation
https://github.com/microsoft/vscode/blob/main/src/vs/editor/contrib/comment/browser/lineCommentCommand.ts
Please have a look at this link https://github.com/microsoft/vscode-discussions/discussions/2363
Kindly add a feature to fix such type of issues