summaryrefslogtreecommitdiff
path: root/uvim/runtime/syntax/modula2/opt
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/syntax/modula2/opt
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/syntax/modula2/opt')
-rw-r--r--uvim/runtime/syntax/modula2/opt/iso.mnv (renamed from uvim/runtime/syntax/modula2/opt/iso.vim)20
-rw-r--r--uvim/runtime/syntax/modula2/opt/pim.mnv (renamed from uvim/runtime/syntax/modula2/opt/pim.vim)20
-rw-r--r--uvim/runtime/syntax/modula2/opt/r10.mnv (renamed from uvim/runtime/syntax/modula2/opt/r10.vim)22
3 files changed, 31 insertions, 31 deletions
diff --git a/uvim/runtime/syntax/modula2/opt/iso.vim b/uvim/runtime/syntax/modula2/opt/iso.mnv
index 5bd24f6885..270fa34d2e 100644
--- a/uvim/runtime/syntax/modula2/opt/iso.vim
+++ b/uvim/runtime/syntax/modula2/opt/iso.mnv
@@ -1,18 +1,18 @@
-" Vim syntax file
+" MNV syntax file
" Language: Modula-2 (ISO)
" Maintainer: B.Kowarsch <trijezdci@moc.liamg>
" Last Change: 2016 August 22
" ----------------------------------------------------
-" THIS FILE IS LICENSED UNDER THE VIM LICENSE
-" see https://github.com/vim/vim/blob/master/LICENSE
+" THIS FILE IS LICENSED UNDER THE MNV LICENSE
+" see https://github.com/Project-Tick/Project-Tick/blob/master/LICENSE
" ----------------------------------------------------
" Remarks:
-" Vim Syntax files are available for the following Modula-2 dialects:
-" * for the PIM dialect : m2pim.vim
-" * for the ISO dialect : m2iso.vim (this file)
-" * for the R10 dialect : m2r10.vim
+" MNV Syntax files are available for the following Modula-2 dialects:
+" * for the PIM dialect : m2pim.mnv
+" * for the ISO dialect : m2iso.mnv (this file)
+" * for the R10 dialect : m2r10.mnv
" -----------------------------------------------------------------------------
" This syntax description follows ISO standard IS-10514 (aka ISO Modula-2)
@@ -23,7 +23,7 @@
" Parameters:
"
-" Vim's filetype script recognises Modula-2 dialect tags within the first 200
+" MNV's filetype script recognises Modula-2 dialect tags within the first 200
" lines of Modula-2 .def and .mod input files. The script sets filetype and
" dialect automatically when a valid dialect tag is found in the input file.
" The dialect tag for the ISO dialect is (*!m2iso*). It is recommended to put
@@ -45,7 +45,7 @@
" Variable g:modula2_iso_disallow_synonyms controls the rendering of @, & and ~:
" if defined and set to a non-zero value, they are rendered as errors.
"
-" Variables may be defined in Vim startup file .vimrc
+" Variables may be defined in MNV startup file .mnvrc
"
" Examples:
" let g:modula2_default_dialect = 'm2iso'
@@ -375,6 +375,6 @@ highlight default link modula2IllegalIdent Error
let b:current_syntax = "modula2"
-" vim: ts=4
+" mnv: ts=4
" END OF FILE
diff --git a/uvim/runtime/syntax/modula2/opt/pim.vim b/uvim/runtime/syntax/modula2/opt/pim.mnv
index 1626db91cf..213f224da8 100644
--- a/uvim/runtime/syntax/modula2/opt/pim.vim
+++ b/uvim/runtime/syntax/modula2/opt/pim.mnv
@@ -1,18 +1,18 @@
-" Vim syntax file
+" MNV syntax file
" Language: Modula-2 (PIM)
" Maintainer: B.Kowarsch <trijezdci@moc.liamg>
" Last Change: 2016 August 22
" ----------------------------------------------------
-" THIS FILE IS LICENSED UNDER THE VIM LICENSE
-" see https://github.com/vim/vim/blob/master/LICENSE
+" THIS FILE IS LICENSED UNDER THE MNV LICENSE
+" see https://github.com/Project-Tick/Project-Tick/blob/master/LICENSE
" ----------------------------------------------------
" Remarks:
-" Vim Syntax files are available for the following Modula-2 dialects:
-" * for the PIM dialect : m2pim.vim (this file)
-" * for the ISO dialect : m2iso.vim
-" * for the R10 dialect : m2r10.vim
+" MNV Syntax files are available for the following Modula-2 dialects:
+" * for the PIM dialect : m2pim.mnv (this file)
+" * for the ISO dialect : m2iso.mnv
+" * for the R10 dialect : m2r10.mnv
" -----------------------------------------------------------------------------
" This syntax description follows the 3rd and 4th editions of N.Wirth's Book
@@ -24,7 +24,7 @@
" Parameters:
"
-" Vim's filetype script recognises Modula-2 dialect tags within the first 200
+" MNV's filetype script recognises Modula-2 dialect tags within the first 200
" lines of Modula-2 .def and .mod input files. The script sets filetype and
" dialect automatically when a valid dialect tag is found in the input file.
" The dialect tag for the PIM dialect is (*!m2pim*). It is recommended to put
@@ -46,7 +46,7 @@
" Variable g:modula2_pim_disallow_synonyms controls the rendering of & and ~:
" if defined and set to a non-zero value, they are rendered as errors.
"
-" Variables may be defined in Vim startup file .vimrc
+" Variables may be defined in MNV startup file .mnvrc
"
" Examples:
" let g:modula2_default_dialect = 'm2pim'
@@ -372,6 +372,6 @@ highlight default link modula2IllegalIdent Error
let b:current_syntax = "modula2"
-" vim: ts=4
+" mnv: ts=4
" END OF FILE
diff --git a/uvim/runtime/syntax/modula2/opt/r10.vim b/uvim/runtime/syntax/modula2/opt/r10.mnv
index 5172be54c6..0785951cc3 100644
--- a/uvim/runtime/syntax/modula2/opt/r10.vim
+++ b/uvim/runtime/syntax/modula2/opt/r10.mnv
@@ -1,18 +1,18 @@
-" Vim syntax file
+" MNV syntax file
" Language: Modula-2 (R10)
" Maintainer: B.Kowarsch <trijezdci@moc.liamg>
" Last Change: 2020 June 18 (moved repository from bb to github)
" ----------------------------------------------------
-" THIS FILE IS LICENSED UNDER THE VIM LICENSE
-" see https://github.com/vim/vim/blob/master/LICENSE
+" THIS FILE IS LICENSED UNDER THE MNV LICENSE
+" see https://github.com/Project-Tick/Project-Tick/blob/master/LICENSE
" ----------------------------------------------------
" Remarks:
-" Vim Syntax files are available for the following Modula-2 dialects:
-" * for the PIM dialect : m2pim.vim
-" * for the ISO dialect : m2iso.vim
-" * for the R10 dialect : m2r10.vim (this file)
+" MNV Syntax files are available for the following Modula-2 dialects:
+" * for the PIM dialect : m2pim.mnv
+" * for the ISO dialect : m2iso.mnv
+" * for the R10 dialect : m2r10.mnv (this file)
" -----------------------------------------------------------------------------
" This syntax description follows the Modula-2 Revision 2010 language report
@@ -21,7 +21,7 @@
" Parameters:
"
-" Vim's filetype script recognises Modula-2 dialect tags within the first 200
+" MNV's filetype script recognises Modula-2 dialect tags within the first 200
" lines of Modula-2 .def and .mod input files. The script sets filetype and
" dialect automatically when a valid dialect tag is found in the input file.
" The dialect tag for the R10 dialect is (*!m2r10*). It is recommended to put
@@ -37,7 +37,7 @@
" Variable g:modula2_r10_allow_lowline controls support for lowline in identifiers:
" if defined and set to a non-zero value, they are recognised, otherwise not
"
-" Variables may be defined in Vim startup file .vimrc
+" Variables may be defined in MNV startup file .mnvrc
"
" Examples:
" let g:modula2_default_dialect = 'm2r10'
@@ -157,7 +157,7 @@ syn match modula2Base16Num "0[ux][0-9A-F]\+\('[0-9A-F]\+\)*"
"| which greatly diminishes readability and thereby increases the opportunity
"| for error during maintenance. Ideally, regular expressions should be split
"| into small human readable pieces with interleaved comments that explain
-"| precisely what each piece is doing. Vim script imposes poor design. :-(
+"| precisely what each piece is doing. MNV script imposes poor design. :-(
syn match modula2Base10Num
\ "\(\(0[bux]\@!\|[1-9]\)[0-9]*\('[0-9]\+\)*\)\(\.[0-9]\+\('[0-9]\+\)*\(e[+-]\?[0-9]\+\('[0-9]\+\)*\)\?\)\?"
@@ -447,6 +447,6 @@ highlight default link modula2IllegalIdent Error
let b:current_syntax = "modula2"
-" vim: ts=4
+" mnv: ts=4
" END OF FILE