comparison src/option.h @ 32373:9ba8d1a8fecd v9.0.1518

patch 9.0.1518: search stats not always visible when searching backwards Commit: https://github.com/vim/vim/commit/34a6a3617b5b6ce11372439f14762caddc4b0cea Author: Christian Brabandt <cb@256bit.org> Date: Sat May 6 19:20:20 2023 +0100 patch 9.0.1518: search stats not always visible when searching backwards Problem: Search stats not always visible when searching backwards. Solution: Do not display the top/bot message on top of the search stats. (Christian Brabandt, closes #12322, closes #12222)
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 May 2023 20:30:03 +0200
parents 6095218c9056
children b5d8d556ea7f
comparison
equal deleted inserted replaced
32372:6cfb4f5fd395 32373:9ba8d1a8fecd
266 #define SHM_INTRO 'I' // intro messages 266 #define SHM_INTRO 'I' // intro messages
267 #define SHM_COMPLETIONMENU 'c' // completion menu messages 267 #define SHM_COMPLETIONMENU 'c' // completion menu messages
268 #define SHM_COMPLETIONSCAN 'C' // completion scanning messages 268 #define SHM_COMPLETIONSCAN 'C' // completion scanning messages
269 #define SHM_RECORDING 'q' // short recording message 269 #define SHM_RECORDING 'q' // short recording message
270 #define SHM_FILEINFO 'F' // no file info messages 270 #define SHM_FILEINFO 'F' // no file info messages
271 #define SHM_SEARCHCOUNT 'S' // search stats: '[1/10]' 271 #define SHM_SEARCHCOUNT 'S' // no search stats: '[1/10]'
272 #define SHM_POSIX "AS" // POSIX value 272 #define SHM_POSIX "AS" // POSIX value
273 #define SHM_ALL "rmfixlnwaWtToOsAIcCqFS" // all possible flags for 'shm' 273 #define SHM_ALL "rmfixlnwaWtToOsAIcCqFS" // all possible flags for 'shm'
274 #define SHM_LEN 30 // max length of all flags together 274 #define SHM_LEN 30 // max length of all flags together
275 // plus a NUL character 275 // plus a NUL character
276 276