mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-30 19:41:15 -03:00
Replaced some usage of wchar_t * with wcstring in complete(). Some style fixes.
This commit is contained in:
@@ -1187,7 +1187,7 @@ struct autosuggestion_context_t
|
||||
if (! cursor_at_end && iswspace(last_char))
|
||||
return 0;
|
||||
|
||||
// On the other hand, if the line ends with a quote, don't go dumping stuff after the quote
|
||||
/* On the other hand, if the line ends with a quote, don't go dumping stuff after the quote */
|
||||
if (wcschr(L"'\"", last_char) && cursor_at_end)
|
||||
return 0;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user