aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/reader.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2016-02-03 14:19:28 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2016-02-04 12:46:51 -0800
commit0779c89a65cdcce7cf76bf97764b86b2c16fb880 (patch)
tree0efd1ea0fbd73b640a4b6b8767870008a69881da /src/reader.cpp
parentb908d0b89bd595f5bcbbf8ec9e153b037ba1a2f3 (diff)
Autosuggestions to follow same prioritization as tab completions
Partial fix for #2672
Diffstat (limited to 'src/reader.cpp')
-rw-r--r--src/reader.cpp43
1 files changed, 19 insertions, 24 deletions
diff --git a/src/reader.cpp b/src/reader.cpp
index d67bc885..5e1d335e 100644
--- a/src/reader.cpp
+++ b/src/reader.cpp
@@ -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 sort_and_prioritize(std::vector<completion_t> *comps);
+
void editable_line_t::insert_string(const wcstring &str, size_t start, size_t len)
{
// Clamp the range to something valid
@@ -838,14 +840,6 @@ bool reader_data_t::expand_abbreviation_as_necessary(size_t cursor_backtrack)
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()
{
interrupted = 0;
@@ -1515,6 +1509,7 @@ struct autosuggestion_context_t
/* Try normal completions */
std::vector<completion_t> completions;
complete(search_string, completions, COMPLETION_REQUEST_AUTOSUGGESTION);
+ sort_and_prioritize(&completions);
if (! completions.empty())
{
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;
for (size_t i=0; i < comp.size(); i++)
{
- const completion_t &el = comp.at(i);
- if (el.match.type < best_type)
- {
- best_type = el.match.type;
- }
+ best_type = std::min(best_type, comp.at(i).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 (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;
}
-/* Order completions such that case insensitive completions come first. */
-static void prioritize_completions(std::vector<completion_t> &comp)
-{
- fuzzy_match_type_t best_type = get_best_match_type(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(*comps);
+
/* Throw out completions whose match types are less suitable than the best. */
- size_t i = comp.size();
+ size_t i = comps->size();
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);
}
}
+
+ /* Remove duplicates */
+ 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 */
- sort(comp.begin(), comp.end(), compare_completions_by_match_type);
+ /* 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);
/* Munge our completions */
- sort_and_make_unique(comp);
- prioritize_completions(comp);
+ sort_and_prioritize(&comp);
/* Record our cycle_command_line */
data->cycle_command_line = el->text;