mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2025-02-04 10:38:42 +00:00
Added Key binding pages
This commit is contained in:
parent
bf094336a4
commit
1423360f5d
30
package.json
30
package.json
@ -51,7 +51,14 @@
|
|||||||
"command": "mind-reader.openWebview",
|
"command": "mind-reader.openWebview",
|
||||||
"title": "Mind Reader Webview"
|
"title": "Mind Reader Webview"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"command": "mind-reader.openKeyBindWin",
|
||||||
|
"title": "Key Bindings for Windows"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "mind-reader.openKeyBindMac",
|
||||||
|
"title": "Key Bindings for Mac"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"command": "mind-reader.runLineContext",
|
"command": "mind-reader.runLineContext",
|
||||||
"title": "Run Line Context"
|
"title": "Run Line Context"
|
||||||
@ -173,6 +180,16 @@
|
|||||||
"command": "mind-reader.getIndent",
|
"command": "mind-reader.getIndent",
|
||||||
"key": "Shift+Tab",
|
"key": "Shift+Tab",
|
||||||
"mac": ""
|
"mac": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "mind-reader.openKeyBindWin",
|
||||||
|
"key": "Ctrl+Shift+8",
|
||||||
|
"mac": "Cmd+Shift+8"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "mind-reader.openKeyBindMac",
|
||||||
|
"key": "Ctrl+Shift+9",
|
||||||
|
"mac": "Cmd+Shift+9"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"menus": {
|
"menus": {
|
||||||
@ -222,7 +239,18 @@
|
|||||||
"command": "mind-reader.openWebview",
|
"command": "mind-reader.openWebview",
|
||||||
"group": "mind-reader",
|
"group": "mind-reader",
|
||||||
"when": "activeEditor"
|
"when": "activeEditor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "mind-reader.openKeyBindWin",
|
||||||
|
"group": "mind-reader",
|
||||||
|
"when": "activeEditor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "mind-reader.openKeyBindMac",
|
||||||
|
"group": "mind-reader",
|
||||||
|
"when": "activeEditor"
|
||||||
}
|
}
|
||||||
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"submenus": [
|
"submenus": [
|
||||||
|
114
src/commands.ts
114
src/commands.ts
@ -55,6 +55,15 @@ const commands: Command[] = [
|
|||||||
callback: openWebview,
|
callback: openWebview,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
name: 'mind-reader.openKeyBindWin',
|
||||||
|
callback: openKeyBindWin,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'mind-reader.openKeyBindMac',
|
||||||
|
callback: openKeyBindMac,
|
||||||
|
},
|
||||||
|
|
||||||
//Navigation Keys......
|
//Navigation Keys......
|
||||||
{
|
{
|
||||||
name: 'mind-reader.showAllSymbols',
|
name: 'mind-reader.showAllSymbols',
|
||||||
@ -196,6 +205,14 @@ function getWebviewContent() {
|
|||||||
vision impaired.
|
vision impaired.
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
<p>Use the following key binding to bring up a page for all key bindings for windows
|
||||||
|
<br>
|
||||||
|
Control and Shift and 8
|
||||||
|
</p>
|
||||||
|
<p>Use this key binding to do the same for mac computers:
|
||||||
|
<br>
|
||||||
|
Command and Shift and 9
|
||||||
|
</p>
|
||||||
<h2>This is the Lego Spike Prime!</h2z>
|
<h2>This is the Lego Spike Prime!</h2z>
|
||||||
<p></p>
|
<p></p>
|
||||||
<img src="https://cdn.vox-cdn.com/thumbor/qoaa6N2ppl7oj97MR-aj43qPy0w=/0x0:1024x576/920x613/filters:focal(431x207:593x369):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63339099/lego_spike.0.png" width="300" />
|
<img src="https://cdn.vox-cdn.com/thumbor/qoaa6N2ppl7oj97MR-aj43qPy0w=/0x0:1024x576/920x613/filters:focal(431x207:593x369):format(webp)/cdn.vox-cdn.com/uploads/chorus_image/image/63339099/lego_spike.0.png" width="300" />
|
||||||
@ -205,6 +222,103 @@ function getWebviewContent() {
|
|||||||
</html>`;
|
</html>`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function openKeyBindWin(): void {
|
||||||
|
//vscode.commands.executeCommand('workbench.action.zoomOut');
|
||||||
|
const panel = vscode.window.createWebviewPanel(
|
||||||
|
'mindReader', // Identifies the type of the webview. Used internally
|
||||||
|
'MR Key Bindings', // Title of the panel displayed to the user
|
||||||
|
vscode.ViewColumn.One, // Editor column to show the new webview panel in.
|
||||||
|
{}
|
||||||
|
); // Webview options. More on these later.
|
||||||
|
|
||||||
|
panel.webview.html = getKeyBindWinContent();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getKeyBindWinContent() {
|
||||||
|
return `<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Mind Reader Key Bindings for Windows</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h2> Here is a list of all Mind Reader's commands and they're keybindings on windows and linux systems </h2>
|
||||||
|
<p>
|
||||||
|
<h2> Editor Settings </h2>
|
||||||
|
Increase Font Scale - Number Pad Add<br>
|
||||||
|
Decrease Font Scale - Number Pad Subtract<br>
|
||||||
|
Increase Editor Scale - Shift and Number Pad Add<br>
|
||||||
|
Decrease Editor Scale - Shift and Number Pad Subtract<br>
|
||||||
|
Reset Editor Scale - Shift and Enter<br>
|
||||||
|
Select Theme - Control and Shift and 1<br>
|
||||||
|
<h2>Navigation</h2>
|
||||||
|
Get Indent - Shift and Tab<br>
|
||||||
|
Show All Symbols - Control and T<br>
|
||||||
|
Go To Line - Control and G<br>
|
||||||
|
Quick Open - Control and P<br>
|
||||||
|
Go To Symbol - Control and Shift and 0<br>
|
||||||
|
Show Problems - Control and Shift and M<br>
|
||||||
|
Next In File - F8<br>
|
||||||
|
Previous In File - Shift and F8<br>
|
||||||
|
Open Previous Editor Group - Control and Tab<br>
|
||||||
|
Navigate Forward - Control and Shift and Minus<br>
|
||||||
|
Navigate Back - Control and Alt and Minus<br>
|
||||||
|
Get Quick Input Back - Control and Alt and Minus
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
function openKeyBindMac(): void {
|
||||||
|
//vscode.commands.executeCommand('workbench.action.zoomOut');
|
||||||
|
const panel = vscode.window.createWebviewPanel(
|
||||||
|
'mindReader', // Identifies the type of the webview. Used internally
|
||||||
|
'MR Key Bindings', // Title of the panel displayed to the user
|
||||||
|
vscode.ViewColumn.One, // Editor column to show the new webview panel in.
|
||||||
|
{}
|
||||||
|
); // Webview options. More on these later.
|
||||||
|
|
||||||
|
panel.webview.html = getKeyBindMacContent();
|
||||||
|
}
|
||||||
|
|
||||||
|
function getKeyBindMacContent() {
|
||||||
|
return `<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Mind Reader Key Bindings for Mac</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h2> Here is a list of all the Mind Reader commands and they're keybindings on Mac systems </h2>
|
||||||
|
<p>
|
||||||
|
<h2> Editor Settings </h2>
|
||||||
|
Increase Font Scale - <br>
|
||||||
|
Decrease Font Scale - <br>
|
||||||
|
Increase Editor Scale - <br>
|
||||||
|
Decrease Editor Scale - <br>
|
||||||
|
Reset Editor Scale - <br>
|
||||||
|
Select Theme - <br>
|
||||||
|
<h2>Navigation</h2>
|
||||||
|
Get Indent - <br>
|
||||||
|
Show All Symbols - <br>
|
||||||
|
Go To Line - <br>
|
||||||
|
Quick Open - <br>
|
||||||
|
Go To Symbol - <br>
|
||||||
|
Show Problems - <br>
|
||||||
|
Next In File - <br>
|
||||||
|
Previous In File - <br>
|
||||||
|
Open Previous Editor Group - <br>
|
||||||
|
Navigate Forward - <br>
|
||||||
|
Navigate Back - <br>
|
||||||
|
Get Quick Input Back -
|
||||||
|
</p>
|
||||||
|
</body>
|
||||||
|
</html>`;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function getIndent(): void {
|
function getIndent(): void {
|
||||||
let editor = vscode.window.activeTextEditor;
|
let editor = vscode.window.activeTextEditor;
|
||||||
if(editor)
|
if(editor)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user