diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-05-20 21:56:56 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-05-20 22:48:19 -0400 |
commit | 718702078356c4d53ef94e72662450b0971b5056 (patch) | |
tree | 0ba49304098f1a447d36c270e2c3a4f18d8f882e /src/nvim/ex_cmds.c | |
parent | 7c979f972ede6c47b734fe547873848de438ba54 (diff) | |
download | rneovim-718702078356c4d53ef94e72662450b0971b5056.tar.gz rneovim-718702078356c4d53ef94e72662450b0971b5056.tar.bz2 rneovim-718702078356c4d53ef94e72662450b0971b5056.zip |
vim-patch:8.1.1360: buffer left 'nomodifiable' after :substitute
Problem: Buffer left 'nomodifiable' after :substitute. (Ingo Karkat)
Solution: Save the value of 'modifiable' earlier' (Christian Brabandt,
closes vim/vim#4403)
https://github.com/vim/vim/commit/80341bcd89764d96f87859a3aac8bc00aad1d762
Diffstat (limited to 'src/nvim/ex_cmds.c')
-rw-r--r-- | src/nvim/ex_cmds.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_cmds.c b/src/nvim/ex_cmds.c index 8436ac810e..b3933ac9a6 100644 --- a/src/nvim/ex_cmds.c +++ b/src/nvim/ex_cmds.c @@ -3817,6 +3817,7 @@ static buf_T *do_sub(exarg_T *eap, proftime_T timeout, // 3. Substitute the string. During 'inccommand' preview only do this if // there is a replace pattern. if (!preview || has_second_delim) { + save_ma = curbuf->b_p_ma; if (subflags.do_count) { // prevent accidentally changing the buffer by a function curbuf->b_p_ma = false; |