We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12d9e09 commit a073038Copy full SHA for a073038
src/vs/editor/contrib/linesOperations/linesOperations.ts
@@ -1040,7 +1040,7 @@ class BackwardsCompatibleRegExp {
1040
1041
export class TitleCaseAction extends AbstractCaseAction {
1042
1043
- public static titleBoundary = new BackwardsCompatibleRegExp('(?:^|[^\\p{L}\\p{N}\']|(?:(?:^|\\P{L})\'))\\p{L}', 'gmu');
+ public static titleBoundary = new BackwardsCompatibleRegExp('(^|[^\\p{L}\\p{N}\']|((^|\\P{L})\'))\\p{L}', 'gmu');
1044
1045
constructor() {
1046
super({
0 commit comments