summaryrefslogtreecommitdiff
path: root/uvim/runtime/syntax/rtf.mnv
diff options
context:
space:
mode:
authorMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 12:41:27 +0300
committerMehmet Samet Duman <yongdohyun@projecttick.org>2026-04-04 12:41:27 +0300
commit4f2d36194b4f299aa7509d815c07121039ea833b (patch)
treef3ded014bad3a4c76ff6a22b8726ebaab68c3d13 /uvim/runtime/syntax/rtf.mnv
parent5b578e70c314723a3cde5c9bfc2be0bf1dadc93b (diff)
downloadProject-Tick-4f2d36194b4f299aa7509d815c07121039ea833b.tar.gz
Project-Tick-4f2d36194b4f299aa7509d815c07121039ea833b.zip
NOISSUE change uvim folder name to mnv
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'uvim/runtime/syntax/rtf.mnv')
-rw-r--r--uvim/runtime/syntax/rtf.mnv75
1 files changed, 0 insertions, 75 deletions
diff --git a/uvim/runtime/syntax/rtf.mnv b/uvim/runtime/syntax/rtf.mnv
deleted file mode 100644
index c1841a0da4..0000000000
--- a/uvim/runtime/syntax/rtf.mnv
+++ /dev/null
@@ -1,75 +0,0 @@
-" MNV syntax file
-" Language: Rich Text Format
-" "*.rtf" files
-"
-" The Rich Text Format (RTF) Specification is a method of encoding formatted
-" text and graphics for easy transfer between applications.
-" .hlp (windows help files) use compiled rtf files
-" rtf documentation at http://night.primate.wisc.edu/software/RTF/
-"
-" Maintainer: Dominique Stéphan (dominique@mggen.com)
-" URL: http://www.mggen.com/mnv/syntax/rtf.zip
-" Last change: 2001 Mai 02
-
-" TODO: render underline, italic, bold
-
-" quit when a syntax file was already loaded
-if exists("b:current_syntax")
- finish
-endif
-
-" case on (all controls must be lower case)
-syn case match
-
-" Control Words
-syn match rtfControlWord "\\[a-z]\+[\-]\=[0-9]*"
-
-" New Control Words (not in the 1987 specifications)
-syn match rtfNewControlWord "\\\*\\[a-z]\+[\-]\=[0-9]*"
-
-" Control Symbol : any \ plus a non alpha symbol, *, \, { and } and '
-syn match rtfControlSymbol "\\[^a-zA-Z\*\{\}\\']"
-
-" { } and \ are special characters, to use them
-" we add a backslash \
-syn match rtfCharacter "\\\\"
-syn match rtfCharacter "\\{"
-syn match rtfCharacter "\\}"
-" Escaped characters (for 8 bytes characters upper than 127)
-syn match rtfCharacter "\\'[A-Za-z0-9][A-Za-z0-9]"
-" Unicode
-syn match rtfUnicodeCharacter "\\u[0-9][0-9]*"
-
-" Color values, we will put this value in Red, Green or Blue
-syn match rtfRed "\\red[0-9][0-9]*"
-syn match rtfGreen "\\green[0-9][0-9]*"
-syn match rtfBlue "\\blue[0-9][0-9]*"
-
-" Some stuff for help files
-syn match rtfFootNote "[#$K+]{\\footnote.*}" contains=rtfControlWord,rtfNewControlWord
-
-" Define the default highlighting.
-" Only when an item doesn't have highlighting yet
-
-
-hi def link rtfControlWord Statement
-hi def link rtfNewControlWord Special
-hi def link rtfControlSymbol Constant
-hi def link rtfCharacter Character
-hi def link rtfUnicodeCharacter SpecialChar
-hi def link rtfFootNote Comment
-
-" Define colors for the syntax file
-hi rtfRed term=underline cterm=underline ctermfg=DarkRed gui=underline guifg=DarkRed
-hi rtfGreen term=underline cterm=underline ctermfg=DarkGreen gui=underline guifg=DarkGreen
-hi rtfBlue term=underline cterm=underline ctermfg=DarkBlue gui=underline guifg=DarkBlue
-
-hi def link rtfRed rtfRed
-hi def link rtfGreen rtfGreen
-hi def link rtfBlue rtfBlue
-
-
-
-let b:current_syntax = "rtf"
-
-" mnv:ts=8