summaryrefslogtreecommitdiff
path: root/uvim/runtime/plugin
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/plugin
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/plugin')
-rw-r--r--uvim/runtime/plugin/README.txt28
-rw-r--r--uvim/runtime/plugin/getscriptPlugin.mnv (renamed from uvim/runtime/plugin/getscriptPlugin.vim)18
-rw-r--r--uvim/runtime/plugin/gzip.mnv (renamed from uvim/runtime/plugin/gzip.vim)8
-rw-r--r--uvim/runtime/plugin/logiPat.mnv (renamed from uvim/runtime/plugin/logiPat.vim)10
-rw-r--r--uvim/runtime/plugin/manpager.mnv (renamed from uvim/runtime/plugin/manpager.vim)16
-rw-r--r--uvim/runtime/plugin/matchparen.mnv (renamed from uvim/runtime/plugin/matchparen.vim)14
-rw-r--r--uvim/runtime/plugin/mnvballPlugin.mnv (renamed from uvim/runtime/plugin/vimballPlugin.vim)44
-rw-r--r--uvim/runtime/plugin/netrwPlugin.mnv (renamed from uvim/runtime/plugin/netrwPlugin.vim)2
-rw-r--r--uvim/runtime/plugin/openPlugin.mnv (renamed from uvim/runtime/plugin/openPlugin.vim)20
-rw-r--r--uvim/runtime/plugin/rrhelper.mnv (renamed from uvim/runtime/plugin/rrhelper.vim)4
-rw-r--r--uvim/runtime/plugin/spellfile.mnv (renamed from uvim/runtime/plugin/spellfile.vim)6
-rw-r--r--uvim/runtime/plugin/tarPlugin.mnv (renamed from uvim/runtime/plugin/tarPlugin.vim)10
-rw-r--r--uvim/runtime/plugin/tohtml.mnv (renamed from uvim/runtime/plugin/tohtml.vim)84
-rw-r--r--uvim/runtime/plugin/tutor.mnv (renamed from uvim/runtime/plugin/tutor.vim)2
-rw-r--r--uvim/runtime/plugin/zipPlugin.mnv (renamed from uvim/runtime/plugin/zipPlugin.vim)12
15 files changed, 139 insertions, 139 deletions
diff --git a/uvim/runtime/plugin/README.txt b/uvim/runtime/plugin/README.txt
index 6161b6f640..a2c014aa15 100644
--- a/uvim/runtime/plugin/README.txt
+++ b/uvim/runtime/plugin/README.txt
@@ -1,17 +1,17 @@
-The plugin directory is for standard Vim plugin scripts.
+The plugin directory is for standard MNV plugin scripts.
-All files here ending in .vim will be sourced by Vim when it starts up.
+All files here ending in .mnv will be sourced by MNV when it starts up.
Look in the file for hints on how it can be disabled without deleting it.
-getscriptPlugin.vim get latest version of Vim scripts
-gzip.vim edit compressed files
-logiPat.vim logical operators on patterns
-manpager.vim using Vim as manpager
-matchparen.vim highlight paren matching the one under the cursor
-netrwPlugin.vim edit files over a network and browse (remote) directories
-rrhelper.vim used for --remote-wait editing
-spellfile.vim download a spellfile when it's missing
-tarPlugin.vim edit (compressed) tar files
-tohtml.vim convert a file with syntax highlighting to HTML
-vimballPlugin.vim create and unpack .vba files
-zipPlugin.vim edit zip archives
+getscriptPlugin.mnv get latest version of MNV scripts
+gzip.mnv edit compressed files
+logiPat.mnv logical operators on patterns
+manpager.mnv using MNV as manpager
+matchparen.mnv highlight paren matching the one under the cursor
+netrwPlugin.mnv edit files over a network and browse (remote) directories
+rrhelper.mnv used for --remote-wait editing
+spellfile.mnv download a spellfile when it's missing
+tarPlugin.mnv edit (compressed) tar files
+tohtml.mnv convert a file with syntax highlighting to HTML
+mnvballPlugin.mnv create and unpack .vba files
+zipPlugin.mnv edit zip archives
diff --git a/uvim/runtime/plugin/getscriptPlugin.vim b/uvim/runtime/plugin/getscriptPlugin.mnv
index f3abdbe1eb..b9495c37a0 100644
--- a/uvim/runtime/plugin/getscriptPlugin.vim
+++ b/uvim/runtime/plugin/getscriptPlugin.mnv
@@ -1,37 +1,37 @@
" ---------------------------------------------------------------------
-" getscriptPlugin.vim
+" getscriptPlugin.mnv
" Maintainer: This runtime file is looking for a new maintainer.
" Original Author: Charles E. Campbell
" Date: Nov 29, 2013
" Installing: :help glvs-install
" Usage: :help glvs
"
-" GetLatestVimScripts: 642 1 :AutoInstall: getscript.vim
+" GetLatestMNVScripts: 642 1 :AutoInstall: getscript.mnv
"
" (Rom 15:11 WEB) Again, "Praise the Lord, all you Gentiles! Let
" all the peoples praise Him."
" ---------------------------------------------------------------------
" Initialization: {{{1
" if you're sourcing this file, surely you can't be
-" expecting vim to be in its vi-compatible mode
+" expecting mnv to be in its vi-compatible mode
if exists("g:loaded_getscriptPlugin")
finish
endif
if &cp
if &verbose
- echo "GetLatestVimScripts is not vi-compatible; not loaded (you need to set nocp)"
+ echo "GetLatestMNVScripts is not vi-compatible; not loaded (you need to set nocp)"
endif
finish
endif
let g:loaded_getscriptPlugin = "v37"
let s:keepcpo = &cpo
-set cpo&vim
+set cpo&mnv
" ---------------------------------------------------------------------
" Public Interface: {{{1
-com! -nargs=0 GetLatestVimScripts call getscript#GetLatestVimScripts()
-com! -nargs=0 GetScripts call getscript#GetLatestVimScripts()
-sil! com -nargs=0 GLVS call getscript#GetLatestVimScripts()
+com! -nargs=0 GetLatestMNVScripts call getscript#GetLatestMNVScripts()
+com! -nargs=0 GetScripts call getscript#GetLatestMNVScripts()
+sil! com -nargs=0 GLVS call getscript#GetLatestMNVScripts()
" ---------------------------------------------------------------------
" Restore Options: {{{1
@@ -39,4 +39,4 @@ let &cpo= s:keepcpo
unlet s:keepcpo
" ---------------------------------------------------------------------
-" vim: ts=8 sts=2 fdm=marker nowrap
+" mnv: ts=8 sts=2 fdm=marker nowrap
diff --git a/uvim/runtime/plugin/gzip.vim b/uvim/runtime/plugin/gzip.mnv
index 9138844e6c..88ec675227 100644
--- a/uvim/runtime/plugin/gzip.vim
+++ b/uvim/runtime/plugin/gzip.mnv
@@ -1,7 +1,7 @@
-" Vim plugin for editing compressed files.
-" Maintainer: The Vim Project <https://github.com/vim/vim>
+" MNV plugin for editing compressed files.
+" Maintainer: The MNV Project <https://github.com/Project-Tick/Project-Tick>
" Last Change: 2025 Feb 28
-" Former Maintainer: Bram Moolenaar <Bram@vim.org>
+" Former Maintainer: Bram Moolenaar <Bram@mnv.org>
" Exit quickly when:
" - this plugin was already loaded
@@ -17,7 +17,7 @@ augroup gzip
au!
" Enable editing of gzipped files.
- " The functions are defined in autoload/gzip.vim.
+ " The functions are defined in autoload/gzip.mnv.
"
" Set binary mode before reading the file.
autocmd BufReadPre,FileReadPre *.gz,*.bz2,*.bz3,*.Z,*.lzma,*.xz,*.lz,*.zst,*.br,*.lzo,*.lz4 setlocal bin
diff --git a/uvim/runtime/plugin/logiPat.vim b/uvim/runtime/plugin/logiPat.mnv
index a8c154e207..f7253f0c61 100644
--- a/uvim/runtime/plugin/logiPat.vim
+++ b/uvim/runtime/plugin/logiPat.mnv
@@ -8,7 +8,7 @@
" Permission is hereby granted to use and distribute this code,
" with or without modifications, provided that this copyright
" notice is copied with it. Like most anything else that's free,
-" LogiPat.vim is provided *as is* and comes with no warranty
+" LogiPat.mnv is provided *as is* and comes with no warranty
" of any kind, either expressed or implied. By using this
" plugin, you agree that in no event will the copyright
" holder be liable for any damages resulting from the use
@@ -27,7 +27,7 @@
" :LogiPat !("january"|"february")
" would match all strings not containing the strings january
" or february
-" GetLatestVimScripts: 1290 1 :AutoInstall: LogiPat.vim
+" GetLatestMNVScripts: 1290 1 :AutoInstall: LogiPat.mnv
"
" Behold, you will conceive in your womb, and bring forth a son, {{{1
" and will call his name Jesus. He will be great, and will be
@@ -42,7 +42,7 @@ if &cp || exists("loaded_logiPat")
endif
let g:loaded_logiPat = "v4"
let s:keepcpo = &cpo
-set cpo&vim
+set cpo&mnv
"DechoRemOn
" ---------------------------------------------------------------------
@@ -146,7 +146,7 @@ fun! LogiPat(pat,...)
endfun
" ---------------------------------------------------------------------
-" s:String: Vim6.4 doesn't have string() {{{2
+" s:String: MNV6.4 doesn't have string() {{{2
func! s:String(str)
return "'".escape(a:str, '"')."'"
endfunc
@@ -337,4 +337,4 @@ endfun
" Cleanup And Modeline: {{{1
let &cpo= s:keepcpo
unlet s:keepcpo
-" vim: ts=4 fdm=marker
+" mnv: ts=4 fdm=marker
diff --git a/uvim/runtime/plugin/manpager.vim b/uvim/runtime/plugin/manpager.mnv
index e3a8ea55a9..c07c2c3c74 100644
--- a/uvim/runtime/plugin/manpager.vim
+++ b/uvim/runtime/plugin/manpager.mnv
@@ -1,8 +1,8 @@
-" Vim plugin for using Vim as manpager.
-" Maintainer: Enno Nagel <ennonagel+vim@gmail.com>
+" MNV plugin for using MNV as manpager.
+" Maintainer: Enno Nagel <ennonagel+mnv@gmail.com>
" Last Change: 2024 Jul 03
-" 2026 Mar 22 by Vim Project: strip OSC 9 sequences (#19787)
-" 2026 Mar 24 by Vim Project: strip Bell char: Ctrl-G (#19807)
+" 2026 Mar 22 by MNV Project: strip OSC 9 sequences (#19787)
+" 2026 Mar 24 by MNV Project: strip Bell char: Ctrl-G (#19807)
if exists('g:loaded_manpager_plugin')
finish
@@ -17,15 +17,15 @@ function s:ManPager()
if &compatible
set nocompatible
endif
- if exists('+viminfofile')
- set viminfofile=NONE
+ if exists('+mnvinfofile')
+ set mnvinfofile=NONE
endif
syntax on
" Ensure text width matches window width
setlocal foldcolumn& nofoldenable nonumber norelativenumber
- " In case Vim was invoked with -M
+ " In case MNV was invoked with -M
setlocal modifiable
" Emulate 'col -b'
@@ -52,5 +52,5 @@ function s:ManPager()
" Set filetype to man even if ftplugin is disabled
setlocal filetype=man
- runtime ftplugin/man.vim
+ runtime ftplugin/man.mnv
endfunction
diff --git a/uvim/runtime/plugin/matchparen.vim b/uvim/runtime/plugin/matchparen.mnv
index 562148c19e..f62729edb2 100644
--- a/uvim/runtime/plugin/matchparen.vim
+++ b/uvim/runtime/plugin/matchparen.mnv
@@ -1,12 +1,12 @@
-" Vim plugin for showing matching parens
-" Maintainer: The Vim Project <https://github.com/vim/vim>
+" MNV plugin for showing matching parens
+" Maintainer: The MNV Project <https://github.com/Project-Tick/Project-Tick>
" Last Change: 2025 Apr 08
-" Former Maintainer: Bram Moolenaar <Bram@vim.org>
+" Former Maintainer: Bram Moolenaar <Bram@mnv.org>
" Exit quickly when:
" - this plugin was already loaded (or disabled)
" - when 'compatible' is set
-" - Vim has no support for :defer
+" - MNV has no support for :defer
if exists("g:loaded_matchparen") || &cp || exists(":defer") != 2
finish
endif
@@ -129,8 +129,8 @@ func s:Highlight_Matching_Pair()
" Catch if this throws E363: pattern uses more memory than 'maxmempattern'.
try
execute 'if ' . s_skip . ' | let s_skip = "0" | endif'
- catch /^Vim\%((\a\+)\)\=:E363/
- " We won't find anything, so skip searching, should keep Vim responsive.
+ catch /^MNV\%((\a\+)\)\=:E363/
+ " We won't find anything, so skip searching, should keep MNV responsive.
return
endtry
endif
@@ -217,7 +217,7 @@ func s:NoMatchParen()
endfunc
func s:DoMatchParen()
- runtime plugin/matchparen.vim
+ runtime plugin/matchparen.mnv
let w = winnr()
silent windo doau CursorMoved
exe "noau ". w . "wincmd w"
diff --git a/uvim/runtime/plugin/vimballPlugin.vim b/uvim/runtime/plugin/mnvballPlugin.mnv
index fdae3d5c1a..268f769c0e 100644
--- a/uvim/runtime/plugin/vimballPlugin.vim
+++ b/uvim/runtime/plugin/mnvballPlugin.mnv
@@ -1,52 +1,52 @@
-" vimballPlugin : construct a file containing both paths and files
+" mnvballPlugin : construct a file containing both paths and files
" Maintainer: This runtime file is looking for a new maintainer.
" Original Author: Charles E. Campbell
" Copyright: (c) 2004-2014 by Charles E. Campbell
-" The VIM LICENSE applies to Vimball.vim, and Vimball.txt
-" (see |copyright|) except use "Vimball" instead of "Vim".
+" The MNV LICENSE applies to MNVball.mnv, and MNVball.txt
+" (see |copyright|) except use "MNVball" instead of "MNV".
" No warranty, express or implied.
" *** *** Use At-Your-Own-Risk! *** ***
"
" (Rom 2:1 WEB) Therefore you are without excuse, O man, whoever you are who
" judge. For in that which you judge another, you condemn yourself. For
" you who judge practice the same things.
-" GetLatestVimScripts: 1502 1 :AutoInstall: vimball.vim
+" GetLatestMNVScripts: 1502 1 :AutoInstall: mnvball.mnv
" ---------------------------------------------------------------------
" Load Once: {{{1
-if &cp || exists("g:loaded_vimballPlugin")
+if &cp || exists("g:loaded_mnvballPlugin")
finish
endif
-let g:loaded_vimballPlugin = "v37"
+let g:loaded_mnvballPlugin = "v37"
let s:keepcpo = &cpo
-set cpo&vim
+set cpo&mnv
" ------------------------------------------------------------------------------
" Public Interface: {{{1
-com! -range -complete=file -nargs=+ -bang MkVimball call vimball#MkVimball(<line1>,<line2>,<bang>0,<f-args>)
-com! -nargs=? -complete=dir UseVimball call vimball#Vimball(1,<f-args>)
-com! -nargs=0 VimballList call vimball#Vimball(0)
-com! -nargs=* -complete=dir RmVimball call vimball#SaveSettings()|call vimball#RmVimball(<f-args>)|call vimball#RestoreSettings()
-augroup Vimball
+com! -range -complete=file -nargs=+ -bang MkMNVball call mnvball#MkMNVball(<line1>,<line2>,<bang>0,<f-args>)
+com! -nargs=? -complete=dir UseMNVball call mnvball#MNVball(1,<f-args>)
+com! -nargs=0 MNVballList call mnvball#MNVball(0)
+com! -nargs=* -complete=dir RmMNVball call mnvball#SaveSettings()|call mnvball#RmMNVball(<f-args>)|call mnvball#RestoreSettings()
+augroup MNVball
au!
au BufEnter *.vba,*.vba.gz,*.vba.bz2,*.vba.bz3,*.vba.zip,*.vba.xz
- \ if getline(1) =~ '^" Vimball Archiver' |
- \ setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 'unix'|setlocal ma ff=unix noma|endif|if line('$') > 1|call vimball#ShowMesg(0, "Source this file to extract it! (:so %)")|endif |
+ \ if getline(1) =~ '^" MNVball Archiver' |
+ \ setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 'unix'|setlocal ma ff=unix noma|endif|if line('$') > 1|call mnvball#ShowMesg(0, "Source this file to extract it! (:so %)")|endif |
\ endif
- au SourceCmd *.vba.gz,*.vba.bz2,*.vba.bz3,*.vba.zip,*.vba.xz let s:origfile=expand("%")|if expand("%")!=expand("<afile>") | exe "1sp" fnameescape(expand("<afile>"))|endif|call vimball#Decompress(expand("<amatch>"))|so %|if s:origfile!=expand("<afile>")|close|endif
- au SourceCmd *.vba if expand("%")!=expand("<afile>") | exe "1sp" fnameescape(expand("<afile>"))|call vimball#Vimball(1)|close|else|call vimball#Vimball(1)|endif
+ au SourceCmd *.vba.gz,*.vba.bz2,*.vba.bz3,*.vba.zip,*.vba.xz let s:origfile=expand("%")|if expand("%")!=expand("<afile>") | exe "1sp" fnameescape(expand("<afile>"))|endif|call mnvball#Decompress(expand("<amatch>"))|so %|if s:origfile!=expand("<afile>")|close|endif
+ au SourceCmd *.vba if expand("%")!=expand("<afile>") | exe "1sp" fnameescape(expand("<afile>"))|call mnvball#MNVball(1)|close|else|call mnvball#MNVball(1)|endif
au BufEnter *.vmb,*.vmb.gz,*.vmb.bz2,*.vmb.bz3,*.vmb.zip,*.vmb.xz
- \ if getline(1) =~ '^" Vimball Archiver' |
- \ setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 'unix'|setlocal ma ff=unix noma|endif|if line('$') > 1|call vimball#ShowMesg(0,"Source this file to extract it! (:so %)")|endif |
+ \ if getline(1) =~ '^" MNVball Archiver' |
+ \ setlocal bt=nofile fmr=[[[,]]] fdm=marker|if &ff != 'unix'|setlocal ma ff=unix noma|endif|if line('$') > 1|call mnvball#ShowMesg(0,"Source this file to extract it! (:so %)")|endif |
\ endif
- au SourceCmd *.vmb.gz,*.vmb.bz2,*.vmb.bz3,*.vmb.zip,*.vmb.xz let s:origfile=expand("%")|if expand("%")!=expand("<afile>") | exe "1sp" fnameescape(expand("<afile>"))|endif|call vimball#Decompress(expand("<amatch>"))|so %|if s:origfile!=expand("<afile>")|close|endif
- au SourceCmd *.vmb if expand("%")!=expand("<afile>") | exe "1sp" fnameescape(expand("<afile>"))|call vimball#Vimball(1)|close|else|call vimball#Vimball(1)|endif
+ au SourceCmd *.vmb.gz,*.vmb.bz2,*.vmb.bz3,*.vmb.zip,*.vmb.xz let s:origfile=expand("%")|if expand("%")!=expand("<afile>") | exe "1sp" fnameescape(expand("<afile>"))|endif|call mnvball#Decompress(expand("<amatch>"))|so %|if s:origfile!=expand("<afile>")|close|endif
+ au SourceCmd *.vmb if expand("%")!=expand("<afile>") | exe "1sp" fnameescape(expand("<afile>"))|call mnvball#MNVball(1)|close|else|call mnvball#MNVball(1)|endif
augroup END
" =====================================================================
" Restoration And Modelines: {{{1
-" vim: fdm=marker
+" mnv: fdm=marker
let &cpo= s:keepcpo
unlet s:keepcpo
-" vim: ts=4:
+" mnv: ts=4:
diff --git a/uvim/runtime/plugin/netrwPlugin.vim b/uvim/runtime/plugin/netrwPlugin.mnv
index 6d7a8660ff..ce242fbad5 100644
--- a/uvim/runtime/plugin/netrwPlugin.vim
+++ b/uvim/runtime/plugin/netrwPlugin.mnv
@@ -6,4 +6,4 @@ endif
packadd netrw
-" vim:ts=8 sts=2 sw=2 et
+" mnv:ts=8 sts=2 sw=2 et
diff --git a/uvim/runtime/plugin/openPlugin.vim b/uvim/runtime/plugin/openPlugin.mnv
index b7274aadda..ee51cd1acd 100644
--- a/uvim/runtime/plugin/openPlugin.vim
+++ b/uvim/runtime/plugin/openPlugin.mnv
@@ -1,8 +1,8 @@
-vim9script
+mnv9script
-# Vim runtime support library
+# MNV runtime support library
#
-# Maintainer: The Vim Project <https://github.com/vim/vim>
+# Maintainer: The MNV Project <https://github.com/Project-Tick/Project-Tick>
# Last Change: 2025 Jun 22
if exists("g:loaded_openPlugin") || &cp
@@ -10,16 +10,16 @@ if exists("g:loaded_openPlugin") || &cp
endif
g:loaded_openPlugin = 1
-import autoload 'dist/vim9.vim'
+import autoload 'dist/mnv9.mnv'
-command -complete=shellcmd -nargs=1 Launch vim9.Launch(trim(<f-args>))
+command -complete=shellcmd -nargs=1 Launch mnv9.Launch(trim(<f-args>))
# technically, -nargs=1 is correct, but this throws E480: No match
# when the argument contains a wildchar on Windows
-command -complete=file -nargs=* Open vim9.Open(trim(<f-args>))
+command -complete=file -nargs=* Open mnv9.Open(trim(<f-args>))
# Use URLOpen when you don't want completion to happen
# (or because you want to avoid cmdline-special)
-command -nargs=1 URLOpen vim9.Open(trim(<f-args>))
+command -nargs=1 URLOpen mnv9.Open(trim(<f-args>))
const no_gx = get(g:, "nogx", get(g:, "netrw_nogx", false))
if !no_gx
@@ -34,13 +34,13 @@ if !no_gx
enddef
if maparg('gx', 'n') == ""
- nnoremap <Plug>(open-word-under-cursor) <scriptcmd>vim9.Open(GetWordUnderCursor())<CR>
+ nnoremap <Plug>(open-word-under-cursor) <scriptcmd>mnv9.Open(GetWordUnderCursor())<CR>
nmap gx <Plug>(open-word-under-cursor)
endif
if maparg('gx', 'x') == ""
- xnoremap <Plug>(open-word-under-cursor) <scriptcmd>vim9.Open(getregion(getpos('v'), getpos('.'), { type: mode() })->join())<CR>
+ xnoremap <Plug>(open-word-under-cursor) <scriptcmd>mnv9.Open(getregion(getpos('v'), getpos('.'), { type: mode() })->join())<CR>
xmap gx <Plug>(open-word-under-cursor)
endif
endif
-# vim: ts=8 sts=2 sw=2 et
+# mnv: ts=8 sts=2 sw=2 et
diff --git a/uvim/runtime/plugin/rrhelper.vim b/uvim/runtime/plugin/rrhelper.mnv
index 5e23eef1b1..554c7d08ef 100644
--- a/uvim/runtime/plugin/rrhelper.vim
+++ b/uvim/runtime/plugin/rrhelper.mnv
@@ -1,4 +1,4 @@
-" Vim plugin with helper function(s) for --remote-wait
+" MNV plugin with helper function(s) for --remote-wait
" Maintainer: Flemming Madsen <fma@cci.dk>
" Last Change: 2008 May 29
@@ -46,4 +46,4 @@ function DoRemoteReply(id, cnt, group, file)
execute 'augroup! '.a:group
endfunc
-" vim: set sw=2 sts=2 :
+" mnv: set sw=2 sts=2 :
diff --git a/uvim/runtime/plugin/spellfile.vim b/uvim/runtime/plugin/spellfile.mnv
index 1730ac8a95..493858e941 100644
--- a/uvim/runtime/plugin/spellfile.vim
+++ b/uvim/runtime/plugin/spellfile.mnv
@@ -1,7 +1,7 @@
-" Vim plugin for downloading spell files
-" Maintainer: The Vim Project <https://github.com/vim/vim>
+" MNV plugin for downloading spell files
+" Maintainer: The MNV Project <https://github.com/Project-Tick/Project-Tick>
" Last Change: 2023 Aug 10
-" Former Maintainer: Bram Moolenaar <Bram@vim.org>
+" Former Maintainer: Bram Moolenaar <Bram@mnv.org>
" Exit quickly when:
" - this plugin was already loaded
diff --git a/uvim/runtime/plugin/tarPlugin.vim b/uvim/runtime/plugin/tarPlugin.mnv
index e55a367854..3e18961f42 100644
--- a/uvim/runtime/plugin/tarPlugin.vim
+++ b/uvim/runtime/plugin/tarPlugin.mnv
@@ -1,4 +1,4 @@
-" tarPlugin.vim -- a Vim plugin for browsing tarfiles
+" tarPlugin.mnv -- a MNV plugin for browsing tarfiles
"
" Original was copyright (c) 2002, Michael C. Toren <mct@toren.net>
" Modified by Charles E. Campbell
@@ -9,7 +9,7 @@
" let me know.
" Also look there for further comments and documentation.
"
-" This part only sets the autocommands. The functions are in autoload/tar.vim.
+" This part only sets the autocommands. The functions are in autoload/tar.mnv.
" ---------------------------------------------------------------------
" Load Once: {{{1
if &cp || exists("g:loaded_tarPlugin")
@@ -17,7 +17,7 @@ if &cp || exists("g:loaded_tarPlugin")
endif
let g:loaded_tarPlugin = "v32"
let s:keepcpo = &cpo
-set cpo&vim
+set cpo&mnv
" ---------------------------------------------------------------------
" Public Interface: {{{1
@@ -51,10 +51,10 @@ augroup tar
au BufReadCmd *.txz call tar#Browse(expand("<amatch>"))
au BufReadCmd *.tzst call tar#Browse(expand("<amatch>"))
augroup END
-com! -nargs=? -complete=file Vimuntar call tar#Vimuntar(<q-args>)
+com! -nargs=? -complete=file MNVuntar call tar#MNVuntar(<q-args>)
" ---------------------------------------------------------------------
" Restoration And Modelines: {{{1
-" vim: fdm=marker
+" mnv: fdm=marker
let &cpo= s:keepcpo
unlet s:keepcpo
diff --git a/uvim/runtime/plugin/tohtml.vim b/uvim/runtime/plugin/tohtml.mnv
index 56eb2c15bf..2972d4618e 100644
--- a/uvim/runtime/plugin/tohtml.vim
+++ b/uvim/runtime/plugin/tohtml.mnv
@@ -1,14 +1,14 @@
-" Vim plugin for converting a syntax highlighted file to HTML.
+" MNV plugin for converting a syntax highlighted file to HTML.
" Maintainer: Ben Fritz <fritzophrenic@gmail.com>
" Last Change: 2023 Sep 07
"
-" The core of the code is in $VIMRUNTIME/autoload/tohtml.vim and
-" $VIMRUNTIME/syntax/2html.vim
+" The core of the code is in $MNVRUNTIME/autoload/tohtml.mnv and
+" $MNVRUNTIME/syntax/2html.mnv
"
if exists('g:loaded_2html_plugin')
finish
endif
-let g:loaded_2html_plugin = 'vim9.0_v2'
+let g:loaded_2html_plugin = 'mnv9.0_v2'
"
" Changelog: {{{
@@ -22,28 +22,28 @@ let g:loaded_2html_plugin = 'vim9.0_v2'
" - Fix SourceForge issue #33: generate diff filler
" correctly when new lines have been added to or
" removed from end of buffer.
-" - Fix SourceForge issue #32/Vim Github issue #8547:
+" - Fix SourceForge issue #32/MNV Github issue #8547:
" use translated highlight ID for styling the
" special-use group names (e.g. LineNr) used
" directly by name in the 2html processing.
" - Fix SourceForge issue #26, refactoring to use
" :let-heredoc style string assignment and
" additional fixes for ".." vs. "." style string
-" concatenation. Requires Vim v8.1.1354 or higher.
-" 9.0_v1 (Vim 9.0.1275): - Implement g:html_no_doc and g:html_no_modeline
+" concatenation. Requires MNV v8.1.1354 or higher.
+" 9.0_v1 (MNV 9.0.1275): - Implement g:html_no_doc and g:html_no_modeline
" for diff mode. Add tests.
-" (Vim 9.0.1122): NOTE: no version string update for this version!
+" (MNV 9.0.1122): NOTE: no version string update for this version!
" - Bugfix for variable name in g:html_no_doc
-" (Vim 9.0.0819): NOTE: no version string update for this version!
+" (MNV 9.0.0819): NOTE: no version string update for this version!
" - Add options g:html_no_doc, g:html_no_lines,
-" and g:html_no_modeline (partially included in Vim
+" and g:html_no_modeline (partially included in MNV
" runtime prior to version string update).
-" - Updates for new Vim9 string append style (i.e. use
-" ".." instead of "."). Requires Vim version
+" - Updates for new MNV9 string append style (i.e. use
+" ".." instead of "."). Requires MNV version
" 8.1.1114 or higher.
"
" 8.1 updates: {{{
-" 8.1_v2 (Vim 8.1.2312): - Fix SourceForge issue #19: fix calculation of tab
+" 8.1_v2 (MNV 8.1.2312): - Fix SourceForge issue #19: fix calculation of tab
" stop position to use in expanding a tab, when that
" tab occurs after a syntax match which in turn
" comes after previously expanded tabs.
@@ -72,31 +72,31 @@ let g:loaded_2html_plugin = 'vim9.0_v2'
" - Fix fallback sizing of <input> tags for browsers
" without "ch" support.
" - Fix cursor on unselectable diff filler text.
-" 8.1_v1 (Vim 8.1.0528): - Fix SourceForge issue #6: Don't generate empty
+" 8.1_v1 (MNV 8.1.0528): - Fix SourceForge issue #6: Don't generate empty
" script tag.
" - Fix SourceForge issue #5: javascript should
" declare variables with "var".
" - Fix SourceForge issue #13: errors thrown sourcing
-" 2html.vim directly when plugins not loaded.
+" 2html.mnv directly when plugins not loaded.
" - Fix SourceForge issue #16: support 'vartabstop'.
"}}}
"
" 7.4 updates: {{{
-" 7.4_v2 (Vim 7.4.0899): Fix error raised when converting a diff containing
+" 7.4_v2 (MNV 7.4.0899): Fix error raised when converting a diff containing
" an empty buffer. Jan Stocker: allow g:html_font to
" take a list so it is easier to specfiy fallback
" fonts in the generated CSS.
-" 7.4_v1 (Vim 7.4.0000): Fix modeline mangling for new "Vim:" format, and
-" also for version-specific modelines like "vim>703:".
+" 7.4_v1 (MNV 7.4.0000): Fix modeline mangling for new "MNV:" format, and
+" also for version-specific modelines like "mnv>703:".
"}}}
"
" 7.3 updates: {{{
-" 7.3_v14 (Vim 7.3.1246): Allow suppressing line number anchors using
+" 7.3_v14 (MNV 7.3.1246): Allow suppressing line number anchors using
" g:html_line_ids=0. Allow customizing
" important IDs (like line IDs and fold IDs) using
" g:html_id_expr evaluated when the buffer conversion
" is started.
-" 7.3_v13 (Vim 7.3.1088): Keep foldmethod at manual in the generated file and
+" 7.3_v13 (MNV 7.3.1088): Keep foldmethod at manual in the generated file and
" insert modeline to set it to manual.
" Fix bug: diff mode with 2 unsaved buffers creates a
" duplicate of one buffer instead of including both.
@@ -107,7 +107,7 @@ let g:loaded_2html_plugin = 'vim9.0_v2'
" Fix XML validation error: &nsbp; not part of XML.
" Allow TOhtml to chain together with other commands
" using |.
-" 7.3_v12 (Vim 7.3.0616): Fix modeline mangling to also work for when multiple
+" 7.3_v12 (MNV 7.3.0616): Fix modeline mangling to also work for when multiple
" highlight groups make up the start-of-modeline text.
" Improve render time of page with uncopyable regions
" by not using one-input-per-char. Change name of
@@ -127,69 +127,69 @@ let g:loaded_2html_plugin = 'vim9.0_v2'
" gap (using a dirty hack, improvements welcome). Add
" "colorscheme" meta tag. Does NOT include support for
" the new default foldtext added in v11, as the patch
-" adding it has not yet been included in Vim.
+" adding it has not yet been included in MNV.
" 7.3_v11 ( unreleased ): Support new default foldtext from patch by Christian
" Brabandt in
-" http://groups.google.com/d/topic/vim_dev/B6FSGfq9VoI/discussion.
-" This patch has not yet been included in Vim, thus
+" http://groups.google.com/d/topic/mnv_dev/B6FSGfq9VoI/discussion.
+" This patch has not yet been included in MNV, thus
" these changes are removed in the next version.
-" 7.3_v10 (Vim 7.3.0227): Fix error E684 when converting a range wholly inside
+" 7.3_v10 (MNV 7.3.0227): Fix error E684 when converting a range wholly inside
" multiple nested folds with dynamic folding on.
" Also fix problem with foldtext in this situation.
-" 7.3_v9 (Vim 7.3.0170): Add html_pre_wrap option active with html_use_css
+" 7.3_v9 (MNV 7.3.0170): Add html_pre_wrap option active with html_use_css
" and without html_no_pre, default value same as
" 'wrap' option, (Andy Spencer). Don't use
" 'fileencoding' for converted document encoding if
" 'buftype' indicates a special buffer which isn't
" written.
-" 7.3_v8 (Vim 7.3.0100): Add html_expand_tabs option to allow leaving tab
+" 7.3_v8 (MNV 7.3.0100): Add html_expand_tabs option to allow leaving tab
" characters in generated output (Andy Spencer).
-" Escape text that looks like a modeline so Vim
+" Escape text that looks like a modeline so MNV
" doesn't use anything in the converted HTML as a
" modeline. Bugfixes: Fix folding when a fold starts
" before the conversion range. Remove fold column when
" there are no folds.
-" 7.3_v7 (Vim 7-3-0063): see betas released on vim_dev below:
+" 7.3_v7 (MNV 7-3-0063): see betas released on mnv_dev below:
" 7.3_v7b3: Fixed bug, convert Unicode to UTF-8 all the way.
" 7.3_v7b2: Remove automatic detection of encodings that are not
" supported by all major browsers according to
" http://wiki.whatwg.org/wiki/Web_Encodings and
" convert to UTF-8 for all Unicode encodings. Make
-" HTML encoding to Vim encoding detection be
+" HTML encoding to MNV encoding detection be
" case-insensitive for built-in pairs.
" 7.3_v7b1: Remove use of setwinvar() function which cannot be
" called in restricted mode (Andy Spencer). Use
" 'fencoding' instead of 'encoding' to determine by
" charset, and make sure the 'fenc' of the generated
" file matches its indicated charset. Add charsets for
-" all of Vim's natively supported encodings.
-" 7.3_v6 (Vim 7.3.0000): Really fix bug with 'nowrapscan', 'magic' and other
+" all of MNV's natively supported encodings.
+" 7.3_v6 (MNV 7.3.0000): Really fix bug with 'nowrapscan', 'magic' and other
" user settings interfering with diff mode generation,
" trailing whitespace (e.g. line number column) when
" using html_no_pre, and bugs when using
" html_hover_unfold.
" 7.3_v5 ( unreleased ): Fix bug with 'nowrapscan' and also with out-of-sync
" folds in diff mode when first line was folded.
-" 7.3_v4 (Vim 7.3.0000): Bugfixes, especially for xhtml markup, and diff mode
-" 7.3_v3 (Vim 7.3.0000): Refactor option handling and make html_use_css
+" 7.3_v4 (MNV 7.3.0000): Bugfixes, especially for xhtml markup, and diff mode
+" 7.3_v3 (MNV 7.3.0000): Refactor option handling and make html_use_css
" default to true when not set to anything. Use strict
" doctypes where possible. Rename use_xhtml option to
" html_use_xhtml for consistency. Use .xhtml extension
" when using this option. Add meta tag for settings.
-" 7.3_v2 (Vim 7.3.0000): Fix syntax highlighting in diff mode to use both the
+" 7.3_v2 (MNV 7.3.0000): Fix syntax highlighting in diff mode to use both the
" diff colors and the normal syntax colors
-" 7.3_v1 (Vim 7.3.0000): Add conceal support and meta tags in output
+" 7.3_v1 (MNV 7.3.0000): Add conceal support and meta tags in output
"}}}
"}}}
" TODO: {{{
" * Check the issue tracker:
-" https://sourceforge.net/p/vim-tohtml/issues/search/?q=%21status%3Aclosed
+" https://sourceforge.net/p/mnv-tohtml/issues/search/?q=%21status%3Aclosed
" * Options for generating the CSS in external style sheets. New :TOcss
" command to convert the current color scheme into a (mostly) generic CSS
" stylesheet which can be re-used. Alternate stylesheet support? Good start
" by Erik Falor
-" ( https://groups.google.com/d/topic/vim_use/7XTmC4D22dU/discussion ).
+" ( https://groups.google.com/d/topic/mnv_use/7XTmC4D22dU/discussion ).
" * Add optional argument to :TOhtml command to specify mode (gui, cterm,
" term) to use for the styling. Suggestion by "nacitar".
" * Add way to override or specify which RGB colors map to the color numbers
@@ -212,7 +212,7 @@ let g:loaded_2html_plugin = 'vim9.0_v2'
" 'd' and showing the whole diff (observed in multiple browsers). Only gaps
" on diff lines though.
" * Undercurl support via CSS3, with fallback to dotted or something:
-" https://groups.google.com/d/topic/vim_use/BzXA6He1pHg/discussion
+" https://groups.google.com/d/topic/mnv_use/BzXA6He1pHg/discussion
" * Redo updates for modified default foldtext (v11) when/if the patch is
" accepted to modify it.
" * Test case +diff_one_file-dynamic_folds+expand_tabs-hover_unfold
@@ -225,9 +225,9 @@ let g:loaded_2html_plugin = 'vim9.0_v2'
" * Check to see if the windows-125\d encodings actually work in Unix without
" the 8bit- prefix. Add prefix to autoload dictionaries for Unix if not.
" * Font auto-detection similar to
-" http://www.vim.org/scripts/script.php?script_id=2384 but for a variety of
+" http://www.mnv.org/scripts/script.php?script_id=2384 but for a variety of
" platforms.
-" * Pull in code from http://www.vim.org/scripts/script.php?script_id=3113 :
+" * Pull in code from http://www.mnv.org/scripts/script.php?script_id=3113 :
" - listchars support
" - full-line background highlight
" - other?
@@ -251,4 +251,4 @@ if !&cp && !exists(":TOhtml") && has("user_commands")
endif "}}}
" Make sure any patches will probably use consistent indent
-" vim: ts=8 sw=2 sts=2 noet fdm=marker
+" mnv: ts=8 sw=2 sts=2 noet fdm=marker
diff --git a/uvim/runtime/plugin/tutor.vim b/uvim/runtime/plugin/tutor.mnv
index 495f31704c..7bfdce230c 100644
--- a/uvim/runtime/plugin/tutor.vim
+++ b/uvim/runtime/plugin/tutor.mnv
@@ -1,4 +1,4 @@
-" Tutor: New Style Tutor Plugin :h vim-tutor-mode
+" Tutor: New Style Tutor Plugin :h mnv-tutor-mode
" Maintainer: This runtime file is looking for a new maintainer.
" Contributors: Phạm Bình An <phambinhanctb2004@gmail.com>
" Original Author: Felipe Morales <hel.sheep@gmail.com>
diff --git a/uvim/runtime/plugin/zipPlugin.vim b/uvim/runtime/plugin/zipPlugin.mnv
index a9ab12158b..9306d71e68 100644
--- a/uvim/runtime/plugin/zipPlugin.vim
+++ b/uvim/runtime/plugin/zipPlugin.mnv
@@ -1,17 +1,17 @@
-" zipPlugin.vim: Handles browsing zipfiles
+" zipPlugin.mnv: Handles browsing zipfiles
" PLUGIN PORTION
" Date: Dec 07, 2021
" Maintainer: This runtime file is looking for a new maintainer.
" Former Maintainer: Charles E Campbell
" Last Change:
-" 2025 Apr 02 by Vim Project: add *.whl to list of zip extensions (#17038)
+" 2025 Apr 02 by MNV Project: add *.whl to list of zip extensions (#17038)
" 2025 Oct 06 by MultisampledNight: add *.pkpass to list of zip extensions (#18501)
-" License: Vim License (see vim's :help license)
+" License: MNV License (see mnv's :help license)
" Copyright: Copyright (C) 2005-2016 Charles E. Campbell {{{1
" Permission is hereby granted to use and distribute this code,
" with or without modifications, provided that this copyright
" notice is copied with it. Like anything else that's free,
-" zipPlugin.vim is provided *as is* and comes with no warranty
+" zipPlugin.mnv is provided *as is* and comes with no warranty
" of any kind, either expressed or implied. By using this
" plugin, you agree that in no event will the copyright
" holder be liable for any damages resulting from the use
@@ -26,7 +26,7 @@ if &cp || exists("g:loaded_zipPlugin")
endif
let g:loaded_zipPlugin = "v33"
let s:keepcpo = &cpo
-set cpo&vim
+set cpo&mnv
" ---------------------------------------------------------------------
" Options: {{{1
@@ -55,6 +55,6 @@ augroup END
" ---------------------------------------------------------------------
" Restoration And Modelines: {{{1
-" vim: fdm=marker
+" mnv: fdm=marker
let &cpo= s:keepcpo
unlet s:keepcpo