aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/edit.c
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-12-20 17:01:31 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-12-20 17:03:36 -0500
commit06869a6940ea6943ba5e652d08e3062626fe47e9 (patch)
tree7f02d0460a82233a1bb7e739a2f0593b4f0a7bbd /src/nvim/edit.c
parent0476f049f4f259cf172e0390f4dc655209ea0c34 (diff)
downloadrneovim-06869a6940ea6943ba5e652d08e3062626fe47e9.tar.gz
rneovim-06869a6940ea6943ba5e652d08e3062626fe47e9.tar.bz2
rneovim-06869a6940ea6943ba5e652d08e3062626fe47e9.zip
vim-patch:8.2.2166: auto format doesn't work when deleting text
Problem: Auto format doesn't work when deleting text. Solution: Make "x" trigger auto format. (closes vim/vim#7504) https://github.com/vim/vim/commit/d0a1dee3f197d41434df4cf0271066b6aeb690fc
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r--src/nvim/edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c
index 1cf821f786..45bd84261d 100644
--- a/src/nvim/edit.c
+++ b/src/nvim/edit.c
@@ -3716,7 +3716,7 @@ static bool ins_compl_prep(int c)
retval = true;
}
- auto_format(FALSE, TRUE);
+ auto_format(false, true);
// Trigger the CompleteDonePre event to give scripts a chance to
// act upon the completion before clearing the info, and restore
@@ -6503,7 +6503,7 @@ stop_insert (
curwin->w_cursor = tpos;
}
- auto_format(TRUE, FALSE);
+ auto_format(true, false);
if (ascii_iswhite(cc)) {
if (gchar_cursor() != NUL)