diff options
Diffstat (limited to 'runtime/macros/less.vim')
-rw-r--r-- | runtime/macros/less.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/macros/less.vim b/runtime/macros/less.vim index aad122d70a..4883dae41a 100644 --- a/runtime/macros/less.vim +++ b/runtime/macros/less.vim @@ -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> |