comparison src/option.h @ 8560:f3c636c673f7 v7.4.1570

commit https://github.com/vim/vim/commit/426dd0219512af5f4abeb0901b533159253ffba3 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Mar 15 15:09:29 2016 +0100 patch 7.4.1570 Problem: There is no way to avoid the message when editing a file. Solution: Add the "F" flag to 'shortmess'. (Shougo, closes https://github.com/vim/vim/issues/686)
author Christian Brabandt <cb@256bit.org>
date Tue, 15 Mar 2016 15:15:04 +0100
parents 42020d59a432
children 54ac275e3fc4
comparison
equal deleted inserted replaced
8559:d13b2c2fb02a 8560:f3c636c673f7
212 #define SHM_SEARCH 's' /* no search hit bottom messages */ 212 #define SHM_SEARCH 's' /* no search hit bottom messages */
213 #define SHM_ATTENTION 'A' /* no ATTENTION messages */ 213 #define SHM_ATTENTION 'A' /* no ATTENTION messages */
214 #define SHM_INTRO 'I' /* intro messages */ 214 #define SHM_INTRO 'I' /* intro messages */
215 #define SHM_COMPLETIONMENU 'c' /* completion menu messages */ 215 #define SHM_COMPLETIONMENU 'c' /* completion menu messages */
216 #define SHM_RECORDING 'q' /* short recording message */ 216 #define SHM_RECORDING 'q' /* short recording message */
217 #define SHM_ALL "rmfixlnwaWtToOsAIcq" /* all possible flags for 'shm' */ 217 #define SHM_FILEINFO 'F' /* no file info messages */
218 #define SHM_ALL "rmfixlnwaWtToOsAIcqF" /* all possible flags for 'shm' */
218 219
219 /* characters for p_go: */ 220 /* characters for p_go: */
220 #define GO_ASEL 'a' /* autoselect */ 221 #define GO_ASEL 'a' /* autoselect */
221 #define GO_ASELML 'A' /* autoselect modeless selection */ 222 #define GO_ASELML 'A' /* autoselect modeless selection */
222 #define GO_BOT 'b' /* use bottom scrollbar */ 223 #define GO_BOT 'b' /* use bottom scrollbar */