mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
Autosuggestions to follow same prioritization as tab completions
Partial fix for #2672
This commit is contained in:
parent
b908d0b89b
commit
0779c89a65
1 changed files with 19 additions and 24 deletions
|
@ -165,6 +165,8 @@ static pthread_key_t generation_count_key;
|
||||||
|
|
||||||
static void set_command_line_and_position(editable_line_t *el, const wcstring &new_str, size_t pos);
|
static void set_command_line_and_position(editable_line_t *el, const wcstring &new_str, size_t pos);
|
||||||
|
|
||||||
|
static void sort_and_prioritize(std::vector<completion_t> *comps);
|
||||||
|
|
||||||
void editable_line_t::insert_string(const wcstring &str, size_t start, size_t len)
|
void editable_line_t::insert_string(const wcstring &str, size_t start, size_t len)
|
||||||
{
|
{
|
||||||
// Clamp the range to something valid
|
// Clamp the range to something valid
|
||||||
|
@ -838,14 +840,6 @@ bool reader_data_t::expand_abbreviation_as_necessary(size_t cursor_backtrack)
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Sorts and remove any duplicate completions in the list. */
|
|
||||||
static void sort_and_make_unique(std::vector<completion_t> &l)
|
|
||||||
{
|
|
||||||
sort(l.begin(), l.end(), completion_t::is_naturally_less_than);
|
|
||||||
l.erase(std::unique(l.begin(), l.end(), completion_t::is_alphabetically_equal_to), l.end());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void reader_reset_interrupted()
|
void reader_reset_interrupted()
|
||||||
{
|
{
|
||||||
interrupted = 0;
|
interrupted = 0;
|
||||||
|
@ -1515,6 +1509,7 @@ struct autosuggestion_context_t
|
||||||
/* Try normal completions */
|
/* Try normal completions */
|
||||||
std::vector<completion_t> completions;
|
std::vector<completion_t> completions;
|
||||||
complete(search_string, completions, COMPLETION_REQUEST_AUTOSUGGESTION);
|
complete(search_string, completions, COMPLETION_REQUEST_AUTOSUGGESTION);
|
||||||
|
sort_and_prioritize(&completions);
|
||||||
if (! completions.empty())
|
if (! completions.empty())
|
||||||
{
|
{
|
||||||
const completion_t &comp = completions.at(0);
|
const completion_t &comp = completions.at(0);
|
||||||
|
@ -1711,11 +1706,7 @@ static fuzzy_match_type_t get_best_match_type(const std::vector<completion_t> &c
|
||||||
fuzzy_match_type_t best_type = fuzzy_match_none;
|
fuzzy_match_type_t best_type = fuzzy_match_none;
|
||||||
for (size_t i=0; i < comp.size(); i++)
|
for (size_t i=0; i < comp.size(); i++)
|
||||||
{
|
{
|
||||||
const completion_t &el = comp.at(i);
|
best_type = std::min(best_type, comp.at(i).match.type);
|
||||||
if (el.match.type < best_type)
|
|
||||||
{
|
|
||||||
best_type = el.match.type;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/* If the best type is an exact match, reduce it to prefix match. Otherwise a tab completion will only show one match if it matches a file exactly. (see issue #959) */
|
/* If the best type is an exact match, reduce it to prefix match. Otherwise a tab completion will only show one match if it matches a file exactly. (see issue #959) */
|
||||||
if (best_type == fuzzy_match_exact)
|
if (best_type == fuzzy_match_exact)
|
||||||
|
@ -1725,23 +1716,28 @@ static fuzzy_match_type_t get_best_match_type(const std::vector<completion_t> &c
|
||||||
return best_type;
|
return best_type;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Order completions such that case insensitive completions come first. */
|
|
||||||
static void prioritize_completions(std::vector<completion_t> &comp)
|
/** Sorts and remove any duplicate completions in the completion list, then puts them in priority order. */
|
||||||
|
static void sort_and_prioritize(std::vector<completion_t> *comps)
|
||||||
{
|
{
|
||||||
fuzzy_match_type_t best_type = get_best_match_type(comp);
|
fuzzy_match_type_t best_type = get_best_match_type(*comps);
|
||||||
|
|
||||||
/* Throw out completions whose match types are less suitable than the best. */
|
/* Throw out completions whose match types are less suitable than the best. */
|
||||||
size_t i = comp.size();
|
size_t i = comps->size();
|
||||||
while (i--)
|
while (i--)
|
||||||
{
|
{
|
||||||
if (comp.at(i).match.type > best_type)
|
if (comps->at(i).match.type > best_type)
|
||||||
{
|
{
|
||||||
comp.erase(comp.begin() + i);
|
comps->erase(comps->begin() + i);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Sort the remainder */
|
/* Remove duplicates */
|
||||||
sort(comp.begin(), comp.end(), compare_completions_by_match_type);
|
sort(comps->begin(), comps->end(), completion_t::is_naturally_less_than);
|
||||||
|
comps->erase(std::unique(comps->begin(), comps->end(), completion_t::is_alphabetically_equal_to), comps->end());
|
||||||
|
|
||||||
|
/* Sort the remainder by match type. They're already sorted alphabetically */
|
||||||
|
stable_sort(comps->begin(), comps->end(), compare_completions_by_match_type);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3374,8 +3370,7 @@ const wchar_t *reader_readline(int nchars)
|
||||||
data->complete_func(buffcpy, comp, COMPLETION_REQUEST_DEFAULT | COMPLETION_REQUEST_DESCRIPTIONS | COMPLETION_REQUEST_FUZZY_MATCH);
|
data->complete_func(buffcpy, comp, COMPLETION_REQUEST_DEFAULT | COMPLETION_REQUEST_DESCRIPTIONS | COMPLETION_REQUEST_FUZZY_MATCH);
|
||||||
|
|
||||||
/* Munge our completions */
|
/* Munge our completions */
|
||||||
sort_and_make_unique(comp);
|
sort_and_prioritize(&comp);
|
||||||
prioritize_completions(comp);
|
|
||||||
|
|
||||||
/* Record our cycle_command_line */
|
/* Record our cycle_command_line */
|
||||||
data->cycle_command_line = el->text;
|
data->cycle_command_line = el->text;
|
||||||
|
|
Loading…
Reference in a new issue