summaryrefslogtreecommitdiff
path: root/command.h
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2024-09-08 14:56:12 -0400
committerpommicket <pommicket@gmail.com>2024-09-08 14:56:12 -0400
commitc4ab62a68f81fda1365bab9e5200f27a6a986bae (patch)
tree75efd94bc517c1aca84be2d10bb24ef5df642d46 /command.h
parentd37fe5d5d27d91a28776baf2593fefc0b749cc85 (diff)
manual indentation, command palette fixes
Diffstat (limited to 'command.h')
-rw-r--r--command.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/command.h b/command.h
index 1beb18a..076c4ef 100644
--- a/command.h
+++ b/command.h
@@ -163,6 +163,13 @@ typedef enum {
CMD_MACRO_STOP,
CMD_MACRO_EXECUTE,
+ /// indent active buffer with spaces; if argument > 1, it is the # of spaces
+ CMD_INDENT_WITH_SPACES,
+ /// indent active buffer with tabs; if argument > 1, it is the tab width
+ CMD_INDENT_WITH_TABS,
+ /// set tab width/number of spaces to indent with
+ CMD_SET_TAB_WIDTH,
+
CMD_COUNT
} Command;