summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEnno <Konfekt@users.noreply.github.com>2024-07-04 13:37:10 +0200
committerChristian Brabandt <cb@256bit.org>2024-07-04 13:39:34 +0200
commit9d85d4dcf9c738ab27f5591c62d5e54c421967a1 (patch)
tree46bab5a64215b5ce3025fa91e8b5b6117544c694
parent9554ace1d95336d3ccd58a573930db460ce210e3 (diff)
runtime(manpager): avoid readonly prompt
fixes: #15103 closes: #15106 Signed-off-by: Enno <Konfekt@users.noreply.github.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
-rw-r--r--runtime/plugin/manpager.vim8
1 files changed, 4 insertions, 4 deletions
diff --git a/runtime/plugin/manpager.vim b/runtime/plugin/manpager.vim
index 076aca5f83..6ed6030254 100644
--- a/runtime/plugin/manpager.vim
+++ b/runtime/plugin/manpager.vim
@@ -1,6 +1,6 @@
" Vim plugin for using Vim as manpager.
" Maintainer: Enno Nagel <ennonagel+vim@gmail.com>
-" Last Change: 2022 Oct 17
+" Last Change: 2024 Jul 03
if exists('g:loaded_manpager_plugin')
finish
@@ -20,9 +20,6 @@ function s:ManPager()
endif
syntax on
- " Make this an unlisted, readonly scratch buffer
- setlocal buftype=nofile noswapfile bufhidden=hide nobuflisted readonly
-
" Ensure text width matches window width
setlocal foldcolumn& nofoldenable nonumber norelativenumber
@@ -45,6 +42,9 @@ function s:ManPager()
" Finished preprocessing the buffer, prevent any further modifications
setlocal nomodified nomodifiable
+ " Make this an unlisted, readonly scratch buffer
+ setlocal buftype=nofile noswapfile bufhidden=hide nobuflisted readonly
+
" Set filetype to man even if ftplugin is disabled
setlocal filetype=man
runtime ftplugin/man.vim