summaryrefslogtreecommitdiff
path: root/uvim/runtime/ftplugin/man.vim
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-03 22:21:25 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 00:23:03 +0300
commit2eae5db069dc171f74cd863487655f6a88e5384d (patch)
tree2d9d05e09978a2a44acbfbb8d651f240df3ca052 /uvim/runtime/ftplugin/man.vim
parent473d922faed49241a5d29d9e37dc4819cd512006 (diff)
downloadProject-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.tar.gz
Project-Tick-2eae5db069dc171f74cd863487655f6a88e5384d.zip
NOISSUE rebrand vim to MNV's not Vim
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/runtime/ftplugin/man.vim')
-rw-r--r--uvim/runtime/ftplugin/man.vim88
1 files changed, 0 insertions, 88 deletions
diff --git a/uvim/runtime/ftplugin/man.vim b/uvim/runtime/ftplugin/man.vim
deleted file mode 100644
index 3edbb27e78..0000000000
--- a/uvim/runtime/ftplugin/man.vim
+++ /dev/null
@@ -1,88 +0,0 @@
-" Vim filetype plugin file
-" Language: man
-" Maintainer: Jason Franklin <vim@justemail.net>
-" Maintainer: SungHyun Nam <goweol@gmail.com>
-" Autoload Split: Bram Moolenaar
-" Last Change: 2024 Jun 06 (disabled the q mapping, #8210)
-" 2024 Jul 06 (use nnoremap, #15130)
-" 2024 Aug 23 (improve the <Plug>ManBS mapping, #15547, #15556)
-" 2025 Mar 09 (improve :Man completion for man-db, #16843)
-
-" To make the ":Man" command available before editing a manual page, source
-" this script from your startup vimrc file.
-
-" If 'filetype' isn't "man", we must have been called to define ":Man" and not
-" to do the filetype plugin stuff.
-if &filetype == "man"
-
- " Only do this when not done yet for this buffer
- if exists("b:did_ftplugin")
- finish
- endif
- let b:did_ftplugin = 1
-endif
-
-let s:cpo_save = &cpo
-set cpo-=C
-
-if !exists('g:ft_man_implementation')
- if executable('mandb') > 0
- let g:ft_man_implementation = 'man-db'
- else
- let g:ft_man_implementation = ''
- endif
-endif
-
-if &filetype == "man"
- " Allow hyphen, plus, colon, dot, and commercial at in manual page name.
- " Parentheses are not here but in dist#man#PreGetPage()
- setlocal iskeyword=48-57,_,a-z,A-Z,-,+,:,.,@-@
- let b:undo_ftplugin = "setlocal iskeyword<"
-
- " Add mappings, unless the user didn't want this.
- if !exists("no_plugin_maps") && !exists("no_man_maps")
- if !hasmapto('<Plug>ManBS')
- nmap <buffer> <LocalLeader>h <Plug>ManBS
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|silent! nunmap <buffer> <LocalLeader>h'
- endif
-
- nnoremap <buffer> <silent> <Plug>ManBS :setl ma<Bar>%s/.\b//g
- \ <Bar>setl noma<CR>`'
-
- nnoremap <buffer> <silent> <c-]> :call dist#man#PreGetPage(v:count)<CR>
- nnoremap <buffer> <silent> <c-t> :call dist#man#PopPage()<CR>
-
- " Add undo commands for the maps
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|silent! nunmap <buffer> <Plug>ManBS'
- \ . '|silent! nunmap <buffer> <c-]>'
- \ . '|silent! nunmap <buffer> <c-t>'
- endif
-
- if exists('g:ft_man_folding_enable') && (g:ft_man_folding_enable == 1)
- setlocal foldmethod=indent foldnestmax=1 foldenable
- let b:undo_ftplugin = b:undo_ftplugin
- \ . '|silent! setl fdm< fdn< fen<'
- endif
-
-endif
-
-if exists(":Man") != 2
- if g:ft_man_implementation ==# 'man-db'
- com -nargs=+ -complete=customlist,dist#man#ManDbComplete Man call dist#man#GetPage(<q-mods>, <f-args>)
- else
- com -nargs=+ -complete=shellcmd Man call dist#man#GetPage(<q-mods>, <f-args>)
- endif
- nnoremap <Leader>K :call dist#man#PreGetPage(0)<CR>
- nnoremap <Plug>ManPreGetPage :call dist#man#PreGetPage(0)<CR>
-endif
-
-if exists(":ManReload") != 2
- com ManReload call dist#man#Reload()
-endif
-
-let &cpo = s:cpo_save
-unlet s:cpo_save
-
-" vim: set sw=2 ts=8 noet: