diff options
author | pommicket <pommicket@gmail.com> | 2024-09-08 14:56:12 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2024-09-08 14:56:12 -0400 |
commit | c4ab62a68f81fda1365bab9e5200f27a6a986bae (patch) | |
tree | 75efd94bc517c1aca84be2d10bb24ef5df642d46 /command.h | |
parent | d37fe5d5d27d91a28776baf2593fefc0b749cc85 (diff) |
manual indentation, command palette fixes
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; |