From f17880d5ec783d600a3f74dff3d30acfc7d1e06c Mon Sep 17 00:00:00 2001 From: Albert Cervin Date: Thu, 2 Feb 2023 00:13:53 +0100 Subject: Add kill-ring pasting M-y can cycle through earlier cut/copies. Also fix minibuffer tokenization error and error when deleting text. Vertical scrolling also works as it should now. --- src/command.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/command.h') diff --git a/src/command.h b/src/command.h index 20c7d74..35467e7 100644 --- a/src/command.h +++ b/src/command.h @@ -175,6 +175,11 @@ struct command *lookup_command_by_hash(struct commands *commands, */ int32_t find_file(struct command_ctx ctx, int argc, const char *argv[]); +/** + * Write the active buffer to a file + */ +int32_t write_file(struct command_ctx ctx, int argc, const char *argv[]); + /** * Run a command interactively from the minibuffer. */ -- cgit v1.2.3