mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
vim-patch:8.2.1513: cannot interrupt shell used for filename expansion
Problem: Cannot interrupt shell used for filename expansion. (Dominique
Pellé)
Solution: Do set tmode in mch_delay(). (closes vim/vim#6770)
0981c8729e
Neovim does not run settmode() in os_delay() so this patch is mostly N/A.
Do not port Vim's flags (ie. MCH_DELAY_SETTMODE) for mch_delay().
This commit is contained in:
parent
f135e511c0
commit
8996a12d82
@ -1865,7 +1865,7 @@ static void cs_release_csp(size_t i, bool freefnpp)
|
||||
alive = false; // cscope process no longer exists
|
||||
break;
|
||||
}
|
||||
os_delay(50L, false); // sleep 50ms
|
||||
os_delay(50L, false); // sleep 50 ms
|
||||
}
|
||||
}
|
||||
if (alive)
|
||||
|
Loading…
Reference in New Issue
Block a user