mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 02:03:58 +01:00
add tab switching support to vim mode
This commit is contained in:
parent
9ddb1c4379
commit
419d585694
@ -206,6 +206,32 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
save();
|
save();
|
||||||
props.router.toTerminal();
|
props.router.toTerminal();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Setup "go to next tab" and "go to previous tab". This is a little more involved
|
||||||
|
// since these aren't Ex commands (they run in normal mode, not after typing `:`)
|
||||||
|
MonacoVim.VimMode.Vim.defineAction("nextTabs", function (_cm: any, args: {repeat?: number}, _vim: any) {
|
||||||
|
const nTabs = args.repeat ?? 1;
|
||||||
|
// Go to the next tab (to the right). Wraps around when at the rightmost tab
|
||||||
|
const currIndex = currentTabIndex();
|
||||||
|
if (currIndex !== undefined) {
|
||||||
|
const nextIndex = (currIndex + nTabs) % openScripts.length;
|
||||||
|
onTabClick(nextIndex);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
MonacoVim.VimMode.Vim.defineAction("prevTabs", function (_cm: any, args: {repeat?: number}, _vim: any) {
|
||||||
|
const nTabs = args.repeat ?? 1;
|
||||||
|
// Go to the previous tab (to the left). Wraps around when at the leftmost tab
|
||||||
|
const currIndex = currentTabIndex();
|
||||||
|
if (currIndex !== undefined) {
|
||||||
|
let nextIndex = (currIndex - nTabs);
|
||||||
|
while (nextIndex < 0) {
|
||||||
|
nextIndex += openScripts.length;
|
||||||
|
}
|
||||||
|
onTabClick(nextIndex);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
MonacoVim.VimMode.Vim.mapCommand("gt", "action", "nextTabs", {}, {context: "normal"});
|
||||||
|
MonacoVim.VimMode.Vim.mapCommand("gT", "action", "prevTabs", {}, {context: "normal"});
|
||||||
editor.focus();
|
editor.focus();
|
||||||
});
|
});
|
||||||
} catch { }
|
} catch { }
|
||||||
@ -605,16 +631,26 @@ export function Root(props: IProps): React.ReactElement {
|
|||||||
openScripts = items;
|
openScripts = items;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function currentTabIndex(): number | undefined {
|
||||||
|
if (currentScript !== null) {
|
||||||
|
return openScripts.findIndex(
|
||||||
|
(script) =>
|
||||||
|
currentScript !== null &&
|
||||||
|
script.fileName === currentScript.fileName &&
|
||||||
|
script.hostname === currentScript.hostname,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
|
||||||
function onTabClick(index: number): void {
|
function onTabClick(index: number): void {
|
||||||
if (currentScript !== null) {
|
if (currentScript !== null) {
|
||||||
// Save currentScript to openScripts
|
// Save currentScript to openScripts
|
||||||
const curIndex = openScripts.findIndex(
|
const curIndex = currentTabIndex();
|
||||||
(script) =>
|
if (curIndex !== undefined) {
|
||||||
currentScript !== null &&
|
openScripts[curIndex] = currentScript;
|
||||||
script.fileName === currentScript.fileName &&
|
}
|
||||||
script.hostname === currentScript.hostname,
|
|
||||||
);
|
|
||||||
openScripts[curIndex] = currentScript;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
currentScript = { ...openScripts[index] };
|
currentScript = { ...openScripts[index] };
|
||||||
|
Loading…
Reference in New Issue
Block a user