Add comma as a word boundary charecter. (#2615)

* Add comma as a word boundary charecter.

* Add changelog for missing trailing commas.
This commit is contained in:
Alexander Eyers-Taylor
2023-07-17 17:12:36 +01:00
committed by GitHub
parent 2abc4d542b
commit baa2a7fed3
2 changed files with 3 additions and 1 deletions

View File

@@ -2,6 +2,8 @@
## [UNRELEASED]
- No longer highlight trailing commas for jump to defition. [#2615](https://github.com/github/vscode-codeql/pull/2615)
## 1.8.8 - 17 July 2023
- Remove support for CodeQL CLI versions older than 2.9.4. [#2610](https://github.com/github/vscode-codeql/pull/2610)

View File

@@ -30,5 +30,5 @@
"end": "^\\s*//\\s*#?endregion\\b"
}
},
"wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\~\\!\\@\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\.\\<\\>\\/\\?\\s]+)"
"wordPattern": "(-?\\d*\\.\\d\\w*)|([^\\~\\!\\@\\#\\%\\^\\&\\*\\(\\)\\-\\=\\+\\[\\{\\]\\}\\\\\\|\\;\\:\\'\\\"\\.\\<\\>\\/\\?\\s\\,]+)"
}