mirror of
https://github.com/vim/vim.git
synced 2026-05-07 12:50:06 -04:00
076366bd4e
- Fix regex highlighting after opening parens, javascriptParens was matching later. Fixes issue #20069. - Add missing regex flags. - Mark the file as unmaintained. Thanks Claudio for all your work. closes: #20076 Signed-off-by: Doug Kearns <[email protected]> Signed-off-by: Christian Brabandt <[email protected]>
6 lines
175 B
JavaScript
6 lines
175 B
JavaScript
// Issue #20069 (JavaScript syntax highlighting not working properly with regex
|
|
// patterns containing quotation marks)
|
|
|
|
const containsSymbols = password.match(/[!".../g);
|
|
|