aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Command.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Command.ts')
-rw-r--r--src/shared/Command.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/shared/Command.ts b/src/shared/Command.ts
new file mode 100644
index 0000000..e492f4a
--- /dev/null
+++ b/src/shared/Command.ts
@@ -0,0 +1,15 @@
+export enum Command {
+ Open = "open",
+ TabOpen = "tabopen",
+ WindowOpen = "winopen",
+ Buffer = "buffer",
+ BufferDelete = "bdelete",
+ BufferDeleteForce = "bdelete!",
+ BuffersDelete = "bdeletes",
+ BuffersDeleteForce = "bdeletes!",
+ AddBookmark = "addbookmark",
+ Quit = "quit",
+ QuitAll = "quitall",
+ Set = "set",
+ Help = "help",
+}