aboutsummaryrefslogtreecommitdiff
path: root/runtime/plugin/man.vim
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2022-09-02 15:20:29 +0100
committerGitHub <noreply@github.com>2022-09-02 15:20:29 +0100
commit2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9 (patch)
treea5e44f3dba1287c398af66673fa926e4841c5343 /runtime/plugin/man.vim
parente085d0be31c68921769c6c437920a3346caec69b (diff)
downloadrneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.tar.gz
rneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.tar.bz2
rneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.zip
feat(Man): port to Lua (#19912)
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'runtime/plugin/man.vim')
-rw-r--r--runtime/plugin/man.vim15
1 files changed, 0 insertions, 15 deletions
diff --git a/runtime/plugin/man.vim b/runtime/plugin/man.vim
deleted file mode 100644
index b10677593f..0000000000
--- a/runtime/plugin/man.vim
+++ /dev/null
@@ -1,15 +0,0 @@
-" Maintainer: Anmol Sethi <hi@nhooyr.io>
-
-if exists('g:loaded_man')
- finish
-endif
-let g:loaded_man = 1
-
-command! -bang -bar -addr=other -complete=customlist,man#complete -nargs=* Man
- \ if <bang>0 | call man#init_pager() |
- \ else | call man#open_page(<count>, <q-mods>, <f-args>) | endif
-
-augroup man
- autocmd!
- autocmd BufReadCmd man://* call man#read_page(matchstr(expand('<amatch>'), 'man://\zs.*'))
-augroup END