comparison src/option.h @ 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 12518b40c161
children d6827bd31d1d
comparison
equal deleted inserted replaced
20068:b644ea832304 20069:9a67d41708d2
342 #define WIM_LONGEST 0x02 342 #define WIM_LONGEST 0x02
343 #define WIM_LIST 0x04 343 #define WIM_LIST 0x04
344 #define WIM_BUFLASTUSED 0x08 344 #define WIM_BUFLASTUSED 0x08
345 345
346 // arguments for can_bs() 346 // arguments for can_bs()
347 // each defined char should be unique over all values
348 // except for BS_START, that intentionally also matches BS_NOSTOP
349 // because BS_NOSTOP behaves exactly the same except it
350 // does not stop at the start of the insert point
347 #define BS_INDENT 'i' // "Indent" 351 #define BS_INDENT 'i' // "Indent"
348 #define BS_EOL 'o' // "eOl" 352 #define BS_EOL 'l' // "eoL"
349 #define BS_START 's' // "Start" 353 #define BS_START 's' // "Start"
354 #define BS_NOSTOP 'p' // "nostoP
350 355
351 // flags for the 'culopt' option 356 // flags for the 'culopt' option
352 #define CULOPT_LINE 0x01 // Highlight complete line 357 #define CULOPT_LINE 0x01 // Highlight complete line
353 #define CULOPT_SCRLINE 0x02 // Highlight screen line 358 #define CULOPT_SCRLINE 0x02 // Highlight screen line
354 #define CULOPT_NBR 0x04 // Highlight Number column 359 #define CULOPT_NBR 0x04 // Highlight Number column