Skip to content

Commit fb21fc9

Browse files
committed
Add JavaScript regex translation to Hover #18
1 parent 937390a commit fb21fc9

File tree

3 files changed

+78
-2
lines changed

3 files changed

+78
-2
lines changed

package-lock.json

+49
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@
446446
},
447447
"dependencies": {
448448
"oniguruma-parser": "^0.7.0",
449+
"oniguruma-to-es": "^4.1.0",
449450
"vscode-oniguruma": "1.7.0",
450451
"web-tree-sitter": "^0.25.3"
451452
},

src/Providers/HoverProvider.ts

+28-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import * as vscode from 'vscode';
2-
import { getTrees, queryNode, toPoint, toRange, trees } from "../TreeSitter";
2+
import { toRegExpDetails, ToRegExpOptions } from 'oniguruma-to-es';
33
import { Point } from 'web-tree-sitter';
4+
import { getTrees, queryNode, toPoint, toRange, trees } from "../TreeSitter";
45

56
export const HoverProvider: vscode.HoverProvider = {
67
provideHover(document: vscode.TextDocument, position: vscode.Position, token: vscode.CancellationToken): vscode.Hover | undefined {
@@ -54,7 +55,7 @@ export const HoverProvider: vscode.HoverProvider = {
5455
markdownString.appendMarkdown('Unlike `"end"`, `"while"` is line-based, not character-based. It is only checked once per line (starting on the line after the `"begin"`) \n');
5556
markdownString.appendMarkdown('If it matches then the _rest_ of the line is now part of the block (same also applies to the `"begin"` rule) \n');
5657
markdownString.appendMarkdown('Rules can be nested inside the block with the `"patterns"` key \n');
57-
markdownString.appendMarkdown('VSCode: `"while"` is always tested first, before any inner `"patterns"`. \n');
58+
markdownString.appendMarkdown('VSCode: `"while"` is always tested first, before any inner `"patterns"` \n');
5859
markdownString.appendMarkdown('VSCode: When `"while"` doesn\'t match, all unfinished/unclosed patterns are terminated and the `"begin"`/`"while"` block is then finished/closed \n');
5960
markdownString.appendMarkdown('Apple: `"begin"`&`"end"` rules \'push\' the `"while"` rule to the next line \n');
6061
markdownString.appendMarkdown('An anchor is placed after the `"begin"` rule; that you can then match with `\\\\G` \n');
@@ -64,6 +65,31 @@ export const HoverProvider: vscode.HoverProvider = {
6465
break;
6566
}
6667

68+
try {
69+
const regexNode = hoverNode.parent?.childForFieldName('regex');
70+
if (regexNode?.text) {
71+
const text: string = JSON.parse(`"${regexNode.text}"`);
72+
const options: ToRegExpOptions = {
73+
accuracy: 'default',
74+
avoidSubclass: true,
75+
rules: {
76+
// Follow `vscode-oniguruma` which enables this Oniguruma option by default
77+
captureGroup: true,
78+
allowOrphanBackrefs: true,
79+
},
80+
};
81+
const jsRegex = toRegExpDetails(text, options);
82+
83+
// markdownString.appendMarkdown('<details><summary>Click to show JS Translation</summary> \n');
84+
markdownString.appendMarkdown('Optimized literal [translation](https://github.com/slevithan/oniguruma-to-es) from Oniguruma to JavaScript: \n');
85+
markdownString.appendCodeblock(`/${jsRegex.pattern}/${jsRegex.flags}`, 'javascript');
86+
// markdownString.appendMarkdown('</details> \n');
87+
// markdownString.supportHtml = true;
88+
}
89+
} catch (error) {
90+
console.warn("JSON TextMate: oniguruma-to-es:\n", error);
91+
}
92+
6793
const range = toRange(hoverNode);
6894
const hover = new vscode.Hover(markdownString, range);
6995
// vscode.window.showInformationMessage(`hover\n${JSON.stringify(hover)}`);

0 commit comments

Comments
 (0)