mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-09 12:11:20 -03:00
Made tests compile again
Renamed autosuggest_handle_special to autosuggest_special_validate_from_history Began work to factor autosuggest_special_validate_from_history together with autosuggest_suggest_special
This commit is contained in:
@@ -1269,7 +1269,7 @@ struct autosuggestion_context_t {
|
||||
continue;
|
||||
|
||||
bool item_ok = false;
|
||||
if (autosuggest_handle_special(item.str(), working_directory, &item_ok)) {
|
||||
if (autosuggest_special_validate_from_history(item.str(), working_directory, &item_ok)) {
|
||||
/* The command autosuggestion was handled specially, so we're done */
|
||||
} else {
|
||||
/* See if the item has any required paths */
|
||||
|
||||
Reference in New Issue
Block a user