Skip to content

Commit 665a066

Browse files
authored
Fix :norm[al] when argument contains a double quote (#9430)
1 parent 79889af commit 665a066

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vimscript/parserUtils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const escapedParser = string('\\')
113113
export const keystrokesExpressionParser: Parser<string[]> = alt(
114114
escapedParser,
115115
specialCharacterParser,
116-
noneOf('"'),
116+
regexp(/./),
117117
).many();
118118

119119
export const keystrokesExpressionForMacroParser: Parser<string[]> = alt(

0 commit comments

Comments
 (0)