Update runtime files.

This commit is contained in:
Bram Moolenaar
2020-12-23 13:56:35 +01:00
parent 9f63a65f22
commit 4072ba571b
29 changed files with 266 additions and 160 deletions

View File

@ -1,6 +1,6 @@
" Vim script to work like "less"
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2020 May 18
" Last Change: 2020 Dec 17
" Avoid loading this file twice, allow the user to define his own script.
if exists("loaded_less")
@ -35,8 +35,16 @@ if argc() > 0
endwhile
endif
set nocp
syntax on
" we don't want 'compatible' here
if &cp
set nocp
endif
" enable syntax highlighting if not done already
if !get(g:, 'syntax_on', 0)
syntax enable
endif
set so=0
set hlsearch
set incsearch