summaryrefslogtreecommitdiffstats
path: root/src/edit.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-11-11 20:52:40 +0100
committerBram Moolenaar <Bram@vim.org>2020-11-11 20:52:40 +0100
commit6f6244855fbce5aaa718cd5001a29aac3c5c15d6 (patch)
tree3085b60577b588458df611930840afae9ae5e7b1 /src/edit.c
parentbbf9f344afd08954163191ed678352fb554fc254 (diff)
patch 8.2.1976: cannot backspace in prompt buffer after using cursor-leftv8.2.1976
Problem: Cannot backspace in prompt buffer after using cursor-left. (Maxim Kim) Solution: Ignore "arrow_used" in a prompt buffer. (closes #7281)
Diffstat (limited to 'src/edit.c')
-rw-r--r--src/edit.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c
index 73e8337521..934f6c1983 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -3946,8 +3946,11 @@ ins_bs(
#endif
((curwin->w_cursor.lnum == 1 && curwin->w_cursor.col == 0)
|| (!can_bs(BS_START)
- && (arrow_used
- || (curwin->w_cursor.lnum == Insstart_orig.lnum
+ && ((arrow_used
+#ifdef FEAT_JOB_CHANNEL
+ && !bt_prompt(curbuf)
+#endif
+ ) || (curwin->w_cursor.lnum == Insstart_orig.lnum
&& curwin->w_cursor.col <= Insstart_orig.col)))
|| (!can_bs(BS_INDENT) && !arrow_used && ai_col > 0
&& curwin->w_cursor.col <= ai_col)