mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-03 06:41:14 -03:00
Make sure cwd colors update when the variable changes. This is a common regression, it seems. This time it was caused by the repaint reductions added in 1.22.2.
darcs-hash:20061212101348-ac50b-970686fcd3317f19c6131cdc46885a841c68a6d6.gz
This commit is contained in:
5
input.c
5
input.c
@@ -133,7 +133,8 @@ static const wchar_t *name_arr[] =
|
||||
L"vi-arg-digit",
|
||||
L"execute",
|
||||
L"beginning-of-buffer",
|
||||
L"end-of-buffer"
|
||||
L"end-of-buffer",
|
||||
L"repaint"
|
||||
}
|
||||
;
|
||||
|
||||
@@ -214,6 +215,7 @@ static const wchar_t code_arr[] =
|
||||
R_EXECUTE,
|
||||
R_BEGINNING_OF_BUFFER,
|
||||
R_END_OF_BUFFER,
|
||||
R_REPAINT
|
||||
}
|
||||
;
|
||||
|
||||
@@ -255,7 +257,6 @@ static int inputrc_error = 0;
|
||||
*/
|
||||
static int is_init = 0;
|
||||
|
||||
|
||||
/**
|
||||
This is the variable telling us how many timew the next command
|
||||
should bne repeated. Only actually used in vi-mode.
|
||||
|
||||
Reference in New Issue
Block a user