mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
Test and fix issue where, if binding X is a prefix of binding Y, and X
is specified before Y, then Y will never be invoked because X will always get there first. Now instead we order bindings in descending order by length, so that we always test the binding before any others that prefixes it. Fixes #1283.
This commit is contained in:
parent
29ddb68da4
commit
503bbd85b5
4 changed files with 76 additions and 42 deletions
|
@ -556,8 +556,7 @@ static int builtin_bind(parser_t &parser, wchar_t **argv)
|
|||
BIND_ERASE,
|
||||
BIND_KEY_NAMES,
|
||||
BIND_FUNCTION_NAMES
|
||||
}
|
||||
;
|
||||
};
|
||||
|
||||
int argc=builtin_count_args(argv);
|
||||
int mode = BIND_INSERT;
|
||||
|
|
|
@ -61,6 +61,7 @@
|
|||
#include "parse_tree.h"
|
||||
#include "parse_util.h"
|
||||
#include "pager.h"
|
||||
#include "input.h"
|
||||
|
||||
static const char * const * s_arguments;
|
||||
static int s_test_run_count = 0;
|
||||
|
@ -1798,6 +1799,30 @@ static bool history_contains(history_t *history, const wcstring &txt)
|
|||
return result;
|
||||
}
|
||||
|
||||
static void test_input()
|
||||
{
|
||||
say(L"Testing input");
|
||||
/* Ensure sequences are order independent. Here we add two bindings where the first is a prefix of the second, and then emit the second key list. The second binding should be invoked, not the first! */
|
||||
wcstring prefix_binding = L"qqqqqqqa";
|
||||
wcstring desired_binding = prefix_binding + L'a';
|
||||
input_mapping_add(prefix_binding.c_str(), L"up-line");
|
||||
input_mapping_add(desired_binding.c_str(), L"down-line");
|
||||
|
||||
/* Push the desired binding on the stack (backwards!) */
|
||||
size_t idx = desired_binding.size();
|
||||
while (idx--)
|
||||
{
|
||||
input_unreadch(desired_binding.at(idx));
|
||||
}
|
||||
|
||||
/* Now test */
|
||||
wint_t c = input_readch();
|
||||
if (c != R_DOWN_LINE)
|
||||
{
|
||||
err(L"Expected to read char R_DOWN_LINE, but instead got %ls\n", describe_char(c).c_str());
|
||||
}
|
||||
}
|
||||
|
||||
class history_tests_t
|
||||
{
|
||||
public:
|
||||
|
@ -2836,6 +2861,7 @@ int main(int argc, char **argv)
|
|||
if (should_test_function("is_potential_path")) test_is_potential_path();
|
||||
if (should_test_function("colors")) test_colors();
|
||||
if (should_test_function("complete")) test_complete();
|
||||
if (should_test_function("input")) test_input();
|
||||
if (should_test_function("completion_insertions")) test_completion_insertions();
|
||||
if (should_test_function("autosuggestion_combining")) test_autosuggestion_combining();
|
||||
if (should_test_function("autosuggest_suggest_special")) test_autosuggest_suggest_special();
|
||||
|
|
87
input.cpp
87
input.cpp
|
@ -62,16 +62,20 @@
|
|||
|
||||
#define DEFAULT_TERM L"ansi"
|
||||
|
||||
/**
|
||||
Struct representing a keybinding. Returned by input_get_mappings.
|
||||
*/
|
||||
/** Struct representing a keybinding. Returned by input_get_mappings. */
|
||||
struct input_mapping_t
|
||||
{
|
||||
wcstring seq; /**< Character sequence which generates this event */
|
||||
wcstring command; /**< command that should be evaluated by this mapping */
|
||||
|
||||
/* We wish to preserve the user-specified order. This is just an incrementing value. */
|
||||
unsigned int specification_order;
|
||||
|
||||
|
||||
input_mapping_t(const wcstring &s, const wcstring &c) : seq(s), command(c) {}
|
||||
input_mapping_t(const wcstring &s, const wcstring &c) : seq(s), command(c)
|
||||
{
|
||||
static unsigned int s_last_input_mapping_specification_order = 0;
|
||||
specification_order = ++s_last_input_mapping_specification_order;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
|
@ -81,7 +85,6 @@ struct terminfo_mapping_t
|
|||
{
|
||||
const wchar_t *name; /**< Name of key */
|
||||
const char *seq; /**< Character sequence generated on keypress. Constant string. */
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
@ -133,7 +136,7 @@ static const wchar_t * const name_arr[] =
|
|||
L"cancel"
|
||||
};
|
||||
|
||||
wcstring describe_char(wchar_t c)
|
||||
wcstring describe_char(wint_t c)
|
||||
{
|
||||
wchar_t initial_cmd_char = R_BEGINNING_OF_LINE;
|
||||
size_t name_count = sizeof name_arr / sizeof *name_arr;
|
||||
|
@ -257,28 +260,44 @@ static bool is_init = false;
|
|||
*/
|
||||
static void input_terminfo_init();
|
||||
|
||||
/* Helper function to compare the lengths of sequences */
|
||||
static bool length_is_greater_than(const input_mapping_t &m1, const input_mapping_t &m2)
|
||||
{
|
||||
return m1.seq.size() > m2.seq.size();
|
||||
}
|
||||
|
||||
/**
|
||||
Returns the function description for the given function code.
|
||||
*/
|
||||
static bool specification_order_is_less_than(const input_mapping_t &m1, const input_mapping_t &m2)
|
||||
{
|
||||
return m1.specification_order < m2.specification_order;
|
||||
}
|
||||
|
||||
|
||||
/* Inserts an input mapping at the correct position. We sort them in descending order by length, so that we test longer sequences first. */
|
||||
static void input_mapping_insert_sorted(const input_mapping_t &new_mapping)
|
||||
{
|
||||
std::vector<input_mapping_t>::iterator loc = std::lower_bound(mapping_list.begin(), mapping_list.end(), new_mapping, length_is_greater_than);
|
||||
mapping_list.insert(loc, new_mapping);
|
||||
}
|
||||
|
||||
/* Adds an input mapping */
|
||||
void input_mapping_add(const wchar_t *sequence, const wchar_t *command)
|
||||
{
|
||||
CHECK(sequence,);
|
||||
CHECK(command,);
|
||||
|
||||
// debug( 0, L"Add mapping from %ls to %ls", escape(sequence, 1), escape(command, 1 ) );
|
||||
|
||||
for (size_t i=0; i<mapping_list.size(); i++)
|
||||
|
||||
// remove existing mappings with this sequence
|
||||
size_t idx = mapping_list.size();
|
||||
while (idx--)
|
||||
{
|
||||
input_mapping_t &m = mapping_list.at(i);
|
||||
if (m.seq == sequence)
|
||||
if (mapping_list.at(idx).seq == sequence)
|
||||
{
|
||||
m.command = command;
|
||||
return;
|
||||
mapping_list.erase(mapping_list.begin() + idx);
|
||||
}
|
||||
}
|
||||
mapping_list.push_back(input_mapping_t(sequence, command));
|
||||
|
||||
// add a new mapping, using the next order
|
||||
const input_mapping_t new_mapping = input_mapping_t(sequence, command);
|
||||
input_mapping_insert_sorted(new_mapping);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -530,15 +549,10 @@ wint_t input_readch()
|
|||
|
||||
CHECK_BLOCK(R_NULL);
|
||||
|
||||
/*
|
||||
Clear the interrupted flag
|
||||
*/
|
||||
/* Clear the interrupted flag */
|
||||
reader_reset_interrupted();
|
||||
|
||||
/*
|
||||
Search for sequence in mapping tables
|
||||
*/
|
||||
|
||||
/* Search for sequence in mapping tables */
|
||||
while (1)
|
||||
{
|
||||
const input_mapping_t *generic = 0;
|
||||
|
@ -556,18 +570,11 @@ wint_t input_readch()
|
|||
|
||||
}
|
||||
|
||||
/*
|
||||
No matching exact mapping, try to find generic mapping.
|
||||
*/
|
||||
/* No matching exact mapping, try to find generic mapping. */
|
||||
|
||||
if (generic)
|
||||
{
|
||||
wchar_t arr[2]=
|
||||
{
|
||||
0,
|
||||
0
|
||||
}
|
||||
;
|
||||
wchar_t arr[2]= { 0, 0 } ;
|
||||
arr[0] = input_common_readch(0);
|
||||
|
||||
return input_exec_binding(*generic, arr);
|
||||
|
@ -589,11 +596,13 @@ wint_t input_readch()
|
|||
|
||||
void input_mapping_get_names(wcstring_list_t &lst)
|
||||
{
|
||||
size_t i;
|
||||
|
||||
for (i=0; i<mapping_list.size(); i++)
|
||||
// Sort the mappings by the user specification order, so we can return them in the same order that the user specified them in
|
||||
std::vector<input_mapping_t> local_list = mapping_list;
|
||||
std::sort(local_list.begin(), local_list.end(), specification_order_is_less_than);
|
||||
|
||||
for (size_t i=0; i<local_list.size(); i++)
|
||||
{
|
||||
const input_mapping_t &m = mapping_list.at(i);
|
||||
const input_mapping_t &m = local_list.at(i);
|
||||
lst.push_back(wcstring(m.seq));
|
||||
}
|
||||
|
||||
|
|
2
input.h
2
input.h
|
@ -62,7 +62,7 @@ enum
|
|||
R_CANCEL
|
||||
};
|
||||
|
||||
wcstring describe_char(wchar_t c);
|
||||
wcstring describe_char(wint_t c);
|
||||
|
||||
/**
|
||||
Initialize the terminal by calling setupterm, and set up arrays
|
||||
|
|
Loading…
Reference in a new issue