bitburner-src/src/Terminal/commands/vim.ts

8 lines
254 B
TypeScript
Raw Normal View History

2021-12-17 18:48:34 +01:00
import { BaseServer } from "../../Server/BaseServer";
2022-04-07 01:30:08 +02:00
import { commonEditor } from "./common/editor";
2021-12-17 18:48:34 +01:00
2022-09-06 15:07:12 +02:00
export function vim(args: (string | number | boolean)[], server: BaseServer): void {
return commonEditor("vim", { args, server }, { vim: true });
2021-12-17 18:48:34 +01:00
}