From 2eae5db069dc171f74cd863487655f6a88e5384d Mon Sep 17 00:00:00 2001 From: Mehmet Samet Duman Date: Fri, 3 Apr 2026 22:21:25 +0300 Subject: NOISSUE rebrand vim to MNV's not Vim Signed-off-by: Mehmet Samet Duman --- uvim/runtime/syntax/just.vim | 406 ------------------------------------------- 1 file changed, 406 deletions(-) delete mode 100644 uvim/runtime/syntax/just.vim (limited to 'uvim/runtime/syntax/just.vim') diff --git a/uvim/runtime/syntax/just.vim b/uvim/runtime/syntax/just.vim deleted file mode 100644 index 79c81d0f9c..0000000000 --- a/uvim/runtime/syntax/just.vim +++ /dev/null @@ -1,406 +0,0 @@ -" Vim syntax file -" Language: Justfile -" Maintainer: Peter Benjamin <@pbnj> -" Last Change: 2025 Jan 25 -" Credits: The original author, Noah Bogart - -if exists('b:current_syntax') - finish -endif - -let s:cpo_save = &cpo -set cpo&vim - -let b:current_syntax = 'just' - -" syncing fromstart prevents mismatched highlighting when jumping around in a justfile -" linebreaks= keeps multi-line constructs highlighted correctly while typing -syn sync fromstart linebreaks=10 - -" a-zA-Z0-9_- -syn iskeyword @,48-57,_,- - -syn match justComment "#.*$" contains=@Spell,justCommentTodo -syn match justCommentInBody '#.*$' contained contains=justCommentTodo,justInterpolation,@justOtherCurlyBraces -syn keyword justCommentTodo TODO FIXME XXX contained -syn match justShebang "^\s*#!.*$" contains=justInterpolation,@justOtherCurlyBraces -syn match justName "\h\k*" contained -syn match justFunction "\h\k*" contained - -syn match justPreBodyComment "\v%(\s|\\\n)*%([^\\]\n)@3%(%(\s|\\\n)*\=)@!" contained - -syn region justRecipeParenDefault - \ matchgroup=justRecipeDepParamsParen start='\v%(\=%(\s|\\\n)*)@<=\(' end='\V)' - \ contained - \ contains=@justExpr -syn match justRecipeSubsequentDeps '\V&&' contained - -syn match justRecipeNoDeps '\v:%(\s|\\\n)*\n|:#@=|:%(\s|\\\n)+#@=' - \ transparent contained - \ contains=justRecipeColon - \ nextgroup=justPreBodyComment,@justBodies -syn region justRecipeDeps start="\v:%(\s|\\\n)*%([a-zA-Z_(]|\&\&)" skip='\\\n' end="\v#@=|\\@1