mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-13 07:21:13 -03:00
Work on soft wrapping to address https://github.com/fish-shell/fish-shell/issues/300
Resizing is still wonky
This commit is contained in:
@@ -1199,7 +1199,7 @@ static void update_autosuggestion(void) {
|
||||
if (can_autosuggest()) {
|
||||
history_search_t searcher = history_search_t(*data->history, data->command_line, HISTORY_SEARCH_TYPE_PREFIX);
|
||||
if (searcher.go_backwards()) {
|
||||
data->autosuggestion = searcher.current_item();
|
||||
data->autosuggestion = searcher.current_item().str();
|
||||
}
|
||||
}
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user