mirror of
https://github.com/neovim/neovim.git
synced 2025-09-15 07:48:18 +00:00
vim-patch:7.4.267
Problem: The '[ mark is in the wrong position after "gq". (Ingo Karkat) Solution: Add the setmark argument to do_join(). (Christian Brabandt) https://code.google.com/p/vim/source/detail?r=75f222d67cea335efbe0274de6340dba174c1e7e
This commit is contained in:

committed by
Justin M. Keyes

parent
1b43e5c47e
commit
753401ab4c
@@ -3588,7 +3588,7 @@ void do_sub(exarg_T *eap)
|
||||
eap->flags = EXFLAG_PRINT;
|
||||
}
|
||||
|
||||
do_join(eap->line2 - eap->line1 + 1, FALSE, TRUE, FALSE);
|
||||
do_join(eap->line2 - eap->line1 + 1, FALSE, TRUE, FALSE, true);
|
||||
sub_nlines = sub_nsubs = eap->line2 - eap->line1 + 1;
|
||||
do_sub_msg(FALSE);
|
||||
ex_may_print(eap);
|
||||
|
Reference in New Issue
Block a user