mirror of
https://github.com/We-Dont-Byte/Mind_Reader.git
synced 2024-11-15 03:35:59 +00:00
Added get indentation level and line number hotkey
This commit is contained in:
parent
ed6df007fd
commit
46fef452d8
17
package.json
17
package.json
@ -56,6 +56,10 @@
|
|||||||
{
|
{
|
||||||
"command": "mind-reader.runCursorContext",
|
"command": "mind-reader.runCursorContext",
|
||||||
"title": "Run Cursor Context"
|
"title": "Run Cursor Context"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"command": "mind-reader.getIndent",
|
||||||
|
"title": "Get Line Indentation"
|
||||||
}
|
}
|
||||||
|
|
||||||
],
|
],
|
||||||
@ -153,8 +157,19 @@
|
|||||||
"command": "mind-reader.navigateForward",
|
"command": "mind-reader.navigateForward",
|
||||||
"key": "Ctrl+Shift+-",
|
"key": "Ctrl+Shift+-",
|
||||||
"mac": ""
|
"mac": ""
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"command": "mind-reader.selectTheme",
|
||||||
|
"key": "Ctrl+Shift+1",
|
||||||
|
"mac": ""
|
||||||
|
},
|
||||||
|
|
||||||
|
{
|
||||||
|
"command": "mind-reader.getIndent",
|
||||||
|
"key": "Shift+Tab",
|
||||||
|
"mac": ""
|
||||||
}
|
}
|
||||||
|
|
||||||
],
|
],
|
||||||
"menus": {
|
"menus": {
|
||||||
"editor/context": [
|
"editor/context": [
|
||||||
|
@ -117,6 +117,10 @@ const commands: Command[] = [
|
|||||||
{
|
{
|
||||||
name: 'mind-reader.runCursorContext',
|
name: 'mind-reader.runCursorContext',
|
||||||
callback: runCursorContext
|
callback: runCursorContext
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'mind-reader.getIndent',
|
||||||
|
callback: getIndent
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
@ -146,6 +150,34 @@ function resetEditorScale(): void {
|
|||||||
vscode.commands.executeCommand('workbench.action.zoomReset');
|
vscode.commands.executeCommand('workbench.action.zoomReset');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getIndent(): void {
|
||||||
|
let editor = vscode.window.activeTextEditor;
|
||||||
|
if(editor)
|
||||||
|
{
|
||||||
|
let tabSize = editor.options.tabSize;
|
||||||
|
let editorText = editor?.document.getText();
|
||||||
|
let lineNum = editor.selection.active.line + 1;
|
||||||
|
let textLine = editor.document.lineAt(lineNum - 1);
|
||||||
|
let i = 0;
|
||||||
|
if(textLine.isEmptyOrWhitespace)
|
||||||
|
{
|
||||||
|
vscode.window.showInformationMessage("Line number " + lineNum.toString() + " Is Empty")
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
while(textLine.text[i] == '\t')
|
||||||
|
{
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
vscode.window.showInformationMessage("Line Number " + lineNum.toString() + " Indentation " + i.toString())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
|
vscode.window.showErrorMessage('No document currently active')
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
function runLineContext(): void {
|
function runLineContext(): void {
|
||||||
let editor = vscode.window.activeTextEditor;
|
let editor = vscode.window.activeTextEditor;
|
||||||
if (editor) {
|
if (editor) {
|
||||||
|
Loading…
Reference in New Issue
Block a user