summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-01-25 21:36:17 +0100
committerBram Moolenaar <Bram@vim.org>2017-01-25 21:36:17 +0100
commit9e817c8a31232eda57963215eb16ee5b1ceefa7b (patch)
tree23b2e9fe6c9cee01f1d920c852187d5ddefe92c1 /src/edit.c
parentba47b51ff88d91c9bb5aa522183e23a656865697 (diff)
patch 8.0.0238: bracketed paste does not disable autoindentv8.0.0238
Problem: When using bracketed paste autoindent causes indent to be increased. Solution: Disable 'ai' and set 'paste' temporarily. (Ken Takata)
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/edit.c b/src/edit.c
index 2e1aa2beac..af1d00b85d 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -9463,12 +9463,17 @@ bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
char_u *end = find_termcode((char_u *)"PE");
int ret_char = -1;
int save_allow_keys = allow_keys;
+ int save_paste = p_paste;
+ int save_ai = curbuf->b_p_ai;
/* If the end code is too long we can't detect it, read everything. */
if (STRLEN(end) >= NUMBUFLEN)
end = NULL;
++no_mapping;
allow_keys = 0;
+ p_paste = TRUE;
+ curbuf->b_p_ai = FALSE;
+
for (;;)
{
/* When the end is not defined read everything. */
@@ -9534,8 +9539,11 @@ bracketed_paste(paste_mode_T mode, int drop, garray_T *gap)
}
idx = 0;
}
+
--no_mapping;
allow_keys = save_allow_keys;
+ p_paste = save_paste;
+ curbuf->b_p_ai = save_ai;
return ret_char;
}