comparison src/edit.c @ 20069:9a67d41708d2 v8.2.0590

patch 8.2.0590: no 'backspace' value allows ignoring the insertion point Commit: https://github.com/vim/vim/commit/aa0489e12d227d24752cf16e4e97058ac32edcc1 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 17 19:41:21 2020 +0200 patch 8.2.0590: no 'backspace' value allows ignoring the insertion point Problem: No 'backspace' value allows ignoring the insertion point. Solution: Add the "nostop" and 3 values. (Christian Brabandt, closes https://github.com/vim/vim/issues/5940)
author Bram Moolenaar <Bram@vim.org>
date Fri, 17 Apr 2020 19:45:05 +0200
parents 6b1564fcab92
children 252d2bb90394
comparison
equal deleted inserted replaced
20068:b644ea832304 20069:9a67d41708d2
4882 } while ( 4882 } while (
4883 #ifdef FEAT_RIGHTLEFT 4883 #ifdef FEAT_RIGHTLEFT
4884 revins_on || 4884 revins_on ||
4885 #endif 4885 #endif
4886 (curwin->w_cursor.col > mincol 4886 (curwin->w_cursor.col > mincol
4887 && (curwin->w_cursor.lnum != Insstart_orig.lnum 4887 && (can_bs(BS_NOSTOP)
4888 || curwin->w_cursor.col != Insstart_orig.col))); 4888 || (curwin->w_cursor.lnum != Insstart_orig.lnum
4889 || curwin->w_cursor.col != Insstart_orig.col)
4890 )));
4889 } 4891 }
4890 did_backspace = TRUE; 4892 did_backspace = TRUE;
4891 } 4893 }
4892 #ifdef FEAT_SMARTINDENT 4894 #ifdef FEAT_SMARTINDENT
4893 did_si = FALSE; 4895 did_si = FALSE;