From 777c2a25ce00f12b2d0dc26d594b1ba7ba10dcc6 Mon Sep 17 00:00:00 2001 From: erw7 Date: Mon, 27 May 2019 12:26:32 +0900 Subject: vim-patch:8.1.1270: cannot see current match position Problem: Cannot see current match position. Solution: Show "3/44" when using the "n" command and "S" is not in 'shortmess'. (Christian Brabandt, closes vim/vim#4317) https://github.com/vim/vim/commit/9dfa3139198b38b28673e251a3756430065914e9 --- src/nvim/options.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nvim/options.lua') diff --git a/src/nvim/options.lua b/src/nvim/options.lua index affddd8084..3f28190ec3 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -2134,7 +2134,7 @@ return { type='string', list='flags', scope={'global'}, vim=true, varname='p_shm', - defaults={if_true={vi="", vim="filnxtToOF"}} + defaults={if_true={vi="S", vim="filnxtToOFS"}} }, { full_name='showbreak', abbreviation='sbr', -- cgit