Skip to content

Commit df7ec58

Browse files
authored
Fix keyword auto-completion: correct over-escaped wordPattern and merge duplicate configurationDefaults
1 parent da44eff commit df7ec58

4 files changed

Lines changed: 4 additions & 8 deletions

File tree

language-configuration.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// symbol used for single line comment. Remove this entry if your language does not support line comments
44
"lineComment": "$",
55
},
6-
"wordPattern": "(-?\\\\d*\\\\.\\\\d\\\\w*)|([^\\\\`\\\\~\\\\!\\\\@\\\\#\\\\%\\\\^\\\\(\\\\)\\\\-\\\\=\\\\+\\\\[\\\\{\\\\]\\\\}\\\\\\\\|\\\\;\\\\:\\\\'\\\\\"\\\\,\\\\.\\\\<\\\\>\\\\/\\\\?\\\\s]+)",
6+
"wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\`\\~\\!\\@\\#\\%\\^\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\|\\;\\:\\'\\\"\\,\\.\\<\\>\\/\\?\\s]+)",
77
// symbols used as brackets
88
"brackets": [
99
["{", "}"],

lsdyna-custom-2.0.7-hqyyqh.3.vsix

22.9 MB
Binary file not shown.

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,11 +62,6 @@
6262
"contents": "%viewsWelcome.lsdynaKeywordIndex.contents%"
6363
}
6464
],
65-
"configurationDefaults": {
66-
"[lsdyna]": {
67-
"editor.autoIndent": "none"
68-
}
69-
},
7065
"languages": [
7166
{
7267
"id": "lsdyna",
@@ -189,6 +184,7 @@
189184
"configurationDefaults": {
190185
"[lsdyna]": {
191186
"editor.wordWrap": "off",
187+
"editor.autoIndent": "none",
192188
"editor.guides.indentation": false,
193189
"editor.renderIndentGuides": false,
194190
"editor.renderWhitespace": "all",

0 commit comments

Comments
 (0)