vim-patch:388a5d4f20b4

Update runtime files
388a5d4f20

Omit vim9.
This commit is contained in:
Jan Edmund Lazo
2021-04-28 01:55:06 -04:00
parent 0185625c04
commit 65821cc1b9
15 changed files with 220 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
" Vim script to work like "less"
" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last Change: 2017 Mar 31
" Last Change: 2020 May 18
" Avoid loading this file twice, allow the user to define his own script.
if exists("loaded_less")
@@ -66,8 +66,8 @@ endif
" When reading from stdin don't consider the file modified.
au VimEnter * set nomod
" Can't modify the text
set noma
" Can't modify the text or write the file.
set nomodifiable readonly
" Give help
noremap h :call <SID>Help()<CR>