summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2021-04-04 19:36:57 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2021-04-04 19:36:57 -0400
commit2007d299916be6b079e6b97aea7c4d2835e23bd0 (patch)
treee8c1fc1000f1822e49e7b724da373fe31166f88e /command.h
parent36444b69593008f40ee2d0b47c894e37428435ae (diff)
command to reload all buffers, run make on multiple threads
Diffstat (limited to 'command.h')
-rw-r--r--command.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/command.h b/command.h
index 97812b0..49ffc09 100644
--- a/command.h
+++ b/command.h
@@ -52,6 +52,7 @@ ENUM_U16 {
CMD_REDO,
CMD_COMMAND_SELECTOR,
CMD_OPEN_CONFIG,
+ CMD_RELOAD_ALL, // reload all buffers from file
CMD_QUIT,
CMD_AUTOCOMPLETE,
@@ -137,6 +138,7 @@ static CommandName const command_names[] = {
{"save", CMD_SAVE},
{"save-as", CMD_SAVE_AS},
{"save-all", CMD_SAVE_ALL},
+ {"reload-all", CMD_RELOAD_ALL},
{"quit", CMD_QUIT},
{"command-selector", CMD_COMMAND_SELECTOR},
{"open-config", CMD_OPEN_CONFIG},