diff options
author | zeertzjq <zeertzjq@outlook.com> | 2024-04-04 06:11:17 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-04 06:11:17 +0800 |
commit | a4697453384c65cc45d86f57bb334ed728dfc9dc (patch) | |
tree | 2ac97d403ca5c5beafb4c2932620d7455e186f52 /src | |
parent | 1b55ed58ecaba96f91a21685b7019362320ea156 (diff) | |
download | rneovim-a4697453384c65cc45d86f57bb334ed728dfc9dc.tar.gz rneovim-a4697453384c65cc45d86f57bb334ed728dfc9dc.tar.bz2 rneovim-a4697453384c65cc45d86f57bb334ed728dfc9dc.zip |
vim-patch:9.1.0259: Normal mode TextChanged isn't tested properly (#28167)
Problem: Normal mode TextChanged isn't tested properly.
Solution: Combine Test_Changed_ChangedI() and Test_Changed_ChangedI_2()
and also run it on Windows. Fix a typo in main.c.
(zeertzjq)
closes: vim/vim#14396
https://github.com/vim/vim/commit/c422662933275484e61af79d8148898337a5c38e
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/state.c b/src/nvim/state.c index baa1e75775..993db255de 100644 --- a/src/nvim/state.c +++ b/src/nvim/state.c @@ -289,7 +289,7 @@ static bool is_safe_now(void) && !debug_mode; } -/// Trigger SafeState if currently in s safe state, that is "safe" is TRUE and +/// Trigger SafeState if currently in a safe state, that is "safe" is true and /// there is no typeahead. void may_trigger_safestate(bool safe) { |