2016-05-01 12:31:25 +08:00
|
|
|
// Functions for reading a character of input from stdin, using the inputrc information for key
|
|
|
|
// bindings.
|
2005-10-04 23:11:39 +08:00
|
|
|
#ifndef FISH_INPUT_H
|
|
|
|
#define FISH_INPUT_H
|
|
|
|
|
2015-07-25 23:14:25 +08:00
|
|
|
#include <stddef.h>
|
2017-02-14 12:37:27 +08:00
|
|
|
|
2015-07-25 23:14:25 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2017-06-13 08:19:13 +08:00
|
|
|
#include "builtin_bind.h"
|
2015-07-25 23:14:25 +08:00
|
|
|
#include "common.h"
|
2005-10-04 23:11:39 +08:00
|
|
|
|
2014-01-19 17:27:39 +08:00
|
|
|
#define FISH_BIND_MODE_VAR L"fish_bind_mode"
|
2013-12-31 08:52:41 +08:00
|
|
|
|
2018-09-14 15:36:26 +08:00
|
|
|
class environment_t;
|
|
|
|
|
2014-02-13 04:49:32 +08:00
|
|
|
wcstring describe_char(wint_t c);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2017-02-16 12:09:26 +08:00
|
|
|
/// Set up arrays used by readch to detect escape sequences for special keys and perform related
|
|
|
|
/// initializations for our input subsystem.
|
|
|
|
void init_input();
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Read a character from fd 0. Try to convert some escape sequences into character constants, but
|
|
|
|
/// do not permanently block the escape character.
|
|
|
|
///
|
|
|
|
/// This is performed in the same way vim does it, i.e. if an escape character is read, wait for
|
|
|
|
/// more input for a short time (a few milliseconds). If more input is avaialable, it is assumed to
|
|
|
|
/// be an escape sequence for a special character (such as an arrow key), and readch attempts to
|
|
|
|
/// parse it. If no more input follows after the escape key, it is assumed to be an actual escape
|
|
|
|
/// key press, and is returned as such.
|
|
|
|
///
|
|
|
|
/// The argument determines whether fish commands are allowed to be run as bindings. If false, when
|
|
|
|
/// a character is encountered that would invoke a fish command, it is unread and R_NULL is
|
|
|
|
/// returned.
|
Fix `commandline` behavior in bind functions
When a key is bound to a fish function, if that function invokes
`commandline`, it gets a stale copy of the commandline. This is because
any keys passed to `self-insert` (the default) don't actually get added
to the commandline until a special character is processed, such as the
R_NULL that gets returned after running a binding for a fish command.
To fix this, don't allow fish commands to be run for bindings if we're
processing more than one key. When a key wants to invoke a fish command,
instead we push the invocation sequence back onto the input, followed by
an R_NULL, and return. This causes the input loop to break out and
update the commandline. When it starts up again, it will re-process the
keys and invoke the fish command.
This is primarily an issue with pasting text that includes bound keys in
it. Typed text is slow enough that fish will update the commandline
between each character.
---
I don't know of any way to write a test for this, but the issue can be
reproduced as follows:
> bind _ 'commandline -i _'
This binds _ to a command that inserts _. Typing the following works:
> echo wat_is_it
But if you copy that line and paste it instead of typing it, the end
result looks like
> _echo wat_isit
With this fix in place, the pasted output correctly matches the typed
output.
2014-08-23 05:02:29 +08:00
|
|
|
wint_t input_readch(bool allow_commands = true);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Enqueue a character or a readline function to the queue of unread characters that input_readch
|
|
|
|
/// will return before actually reading from fd 0.
|
2015-04-06 02:07:17 +08:00
|
|
|
void input_queue_ch(wint_t ch);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Add a key mapping from the specified sequence to the specified command.
|
|
|
|
///
|
|
|
|
/// \param sequence the sequence to bind
|
|
|
|
/// \param command an input function that will be run whenever the key sequence occurs
|
2013-12-31 08:52:41 +08:00
|
|
|
void input_mapping_add(const wchar_t *sequence, const wchar_t *command,
|
|
|
|
const wchar_t *mode = DEFAULT_BIND_MODE,
|
2018-09-18 17:52:25 +08:00
|
|
|
const wchar_t *new_mode = DEFAULT_BIND_MODE, bool user = true);
|
2007-09-26 00:14:47 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
void input_mapping_add(const wchar_t *sequence, const wchar_t *const *commands, size_t commands_len,
|
|
|
|
const wchar_t *mode = DEFAULT_BIND_MODE,
|
2018-09-18 17:52:25 +08:00
|
|
|
const wchar_t *new_mode = DEFAULT_BIND_MODE, bool user = true);
|
2014-01-01 07:11:32 +08:00
|
|
|
|
2014-09-23 12:04:06 +08:00
|
|
|
struct input_mapping_name_t {
|
|
|
|
wcstring seq;
|
|
|
|
wcstring mode;
|
|
|
|
};
|
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Returns all mapping names and modes.
|
2018-09-18 17:52:25 +08:00
|
|
|
std::vector<input_mapping_name_t> input_mapping_get_names(bool user = true);
|
|
|
|
|
|
|
|
/// Erase all bindings
|
|
|
|
void input_mapping_clear(const wchar_t *mode = NULL, bool user = true);
|
2007-09-26 00:14:47 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Erase binding for specified key sequence.
|
2018-09-18 17:52:25 +08:00
|
|
|
bool input_mapping_erase(const wcstring &sequence, const wcstring &mode = DEFAULT_BIND_MODE, bool user = true);
|
2007-09-26 00:14:47 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Gets the command bound to the specified key sequence in the specified mode. Returns true if it
|
|
|
|
/// exists, false if not.
|
2018-09-18 17:52:25 +08:00
|
|
|
bool input_mapping_get(const wcstring &sequence, const wcstring &mode, wcstring_list_t *out_cmds, bool user,
|
2016-05-01 12:31:25 +08:00
|
|
|
wcstring *out_new_mode);
|
2013-12-31 08:52:41 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Return the current bind mode.
|
2018-09-14 15:36:26 +08:00
|
|
|
wcstring input_get_bind_mode(const environment_t &vars);
|
2013-12-31 08:52:41 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Set the current bind mode.
|
2014-03-31 04:13:35 +08:00
|
|
|
void input_set_bind_mode(const wcstring &bind_mode);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2014-01-22 17:00:44 +08:00
|
|
|
wchar_t input_function_pop_arg();
|
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Sets the return status of the most recently executed input function.
|
2014-01-23 17:23:04 +08:00
|
|
|
void input_function_set_status(bool status);
|
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Return the sequence for the terminfo variable of the specified name.
|
|
|
|
///
|
|
|
|
/// If no terminfo variable of the specified name could be found, return false and set errno to
|
|
|
|
/// ENOENT. If the terminfo variable does not have a value, return false and set errno to EILSEQ.
|
2013-04-16 04:07:17 +08:00
|
|
|
bool input_terminfo_get_sequence(const wchar_t *name, wcstring *out_seq);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Return the name of the terminfo variable with the specified sequence, in out_name. Returns true
|
|
|
|
/// if found, false if not found.
|
2014-07-08 01:45:26 +08:00
|
|
|
bool input_terminfo_get_name(const wcstring &seq, wcstring *out_name);
|
2005-09-20 21:26:39 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Return a list of all known terminfo names.
|
2012-11-19 08:30:30 +08:00
|
|
|
wcstring_list_t input_terminfo_get_names(bool skip_null);
|
2007-09-26 00:14:47 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Returns the input function code for the given input function name.
|
2015-08-17 09:45:42 +08:00
|
|
|
#define INPUT_CODE_NONE (wchar_t(-1))
|
2012-11-19 08:30:30 +08:00
|
|
|
wchar_t input_function_get_code(const wcstring &name);
|
2007-09-26 00:14:47 +08:00
|
|
|
|
2016-05-01 12:31:25 +08:00
|
|
|
/// Returns a list of all existing input function names.
|
2012-11-19 08:30:30 +08:00
|
|
|
wcstring_list_t input_function_get_names(void);
|
2007-09-26 00:14:47 +08:00
|
|
|
|
2005-10-04 23:11:39 +08:00
|
|
|
#endif
|