From 4a9be7bf1125acf3aee4c2dc2dfdb59e85fa71f1 Mon Sep 17 00:00:00 2001 From: Julian Aron Prenner Date: Wed, 22 Jan 2014 10:00:44 +0100 Subject: Experimental support for f,F,t,T vi commands. Input functions can now have arguments --- input.h | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'input.h') diff --git a/input.h b/input.h index d7412212..a8e2dffb 100644 --- a/input.h +++ b/input.h @@ -64,12 +64,14 @@ enum R_ACCEPT_AUTOSUGGESTION, R_BEGIN_SELECTION, R_END_SELECTION, - R_KILL_SELECTION + R_KILL_SELECTION, + R_FORWARD_JUMP, + R_BACKWARD_JUMP } ; #define R_MIN R_NULL -#define R_MAX R_KILL_SELECTION +#define R_MAX R_BACKWARD_JUMP /** Initialize the terminal by calling setupterm, and set up arrays @@ -145,6 +147,9 @@ const wchar_t *input_get_bind_mode(); */ bool input_set_bind_mode(const wchar_t *bind_mode); + +wchar_t input_function_pop_arg(); + /** Return the sequence for the terminfo variable of the specified name. -- cgit v1.2.3