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 c42ab56 commit 14c1d73Copy full SHA for 14c1d73
src/vs/editor/contrib/linesOperations/linesOperations.ts
@@ -1040,8 +1040,8 @@ class BackwardsCompatibleRegExp {
1040
1041
export class TitleCaseAction extends AbstractCaseAction {
1042
1043
- public static titleBoundary = new BackwardsCompatibleRegExp('(^|[^\\p{L}\\p{N}])[\\p{L}\\p{N}]', 'gmu');
1044
- public static apostrophe = new BackwardsCompatibleRegExp('[\\p{L}\\p{N}]\'[\\p{L}\\p{N}]', 'gmu');
+ public static titleBoundary = new BackwardsCompatibleRegExp('(^|[^\\p{L}\\p{N}])\\p{L}', 'gmu');
+ public static apostrophe = new BackwardsCompatibleRegExp('\\p{L}\'\\p{L}', 'gmu');
1045
1046
constructor() {
1047
super({
0 commit comments