���ѧۧݧ�ӧ�� �ާ֧ߧ֧էا֧� - ���֧էѧܧ�ڧ��ӧѧ�� - /home/ukubnwwtacc0unt/chapelbellstudios.com/uploads/cover/vimfiles.tar
���ѧ٧ѧ�
template.spec 0000644 00000000356 15204070615 0007237 0 ustar 00 Name: Version: Release: 1%{?dist} Summary: Group: License: URL: Source0: BuildRequires: Requires: %description %prep %setup -q %build %configure make %{?_smp_mflags} %install %make_install %files %doc %changelog doc/tags 0000644 00000000000 15204070615 0006160 0 ustar 00 ftdetect/modulefile.vim 0000644 00000000162 15204070615 0011207 0 ustar 00 au BufNewFile,BufRead * \ if (getline(1) =~? "^#%Module") | \ set filetype=modulefile | \ endif ftdetect/augeas.vim 0000644 00000000060 15204070615 0010324 0 ustar 00 au BufNewFile,BufRead *.aug set filetype=augeas syntax/modulefile.vim 0000644 00000004416 15204070615 0010741 0 ustar 00 " include tcl syntax set syntax=tcl "Clear tcl keywords to match to avoid priority of keyword " (e.g append vs append-path) syn clear tclCommand " set again tclCommand with `syn match` " Basic Tcl commands: http://www.tcl.tk/man/tcl8.6/TclCmd/contents.htm syn match tclCommand "\v<(after|append|array|bgerror|binary|cd|chan|clock|close|concat)>" syn match tclCommand "\v<(dde|dict|encoding|eof|error|eval|exec|exit|expr|fblocked)>" syn match tclCommand "\v<(fconfigure|fcopy|file|fileevent|flush|format|gets|glob)>" syn match tclCommand "\v<(global|history|http|incr|info|interp|join|lappend|lassign)>" syn match tclCommand "\v<(lindex|linsert|list|llength|lmap|load|lrange|lrepeat)>" syn match tclCommand "\v<(lreplace|lreverse|lsearch|lset|lsort|memory|my|namespace)>" syn match tclCommand "\v<(next|nextto|open|package|pid|puts|pwd|read|refchan|regexp)>" syn match tclCommand "\v<(registry|regsub|rename|scan|seek|self|set|socket|source)>" syn match tclCommand "\v<(split|string|subst|tell|time|trace|unknown|unload|unset)>" syn match tclCommand "\v<(update|uplevel|upvar|variable|vwait)>" " The 'Tcl Standard Library' commands: http://www.tcl.tk/man/tcl8.6/TclCmd/library.htm syn match tclCommand "\v<(auto_execok|auto_import|auto_load|auto_mkindex|auto_reset)>" syn match tclCommand "\v<(auto_qualify|tcl_findLibrary|parray|tcl_endOfWord)>" syn match tclCommand "\v<(tcl_startOfNextWord|tcl_startOfPreviousWord)>" syn match tclCommand "\v<(tcl_wordBreakAfter|tcl_wordBreakBefore)>" " Modulefile commands: https://modules.readthedocs.io/en/stable/modulefile.html syn match modCommand "\v<(append|prepend|remove)-path>" syn match modCommand "\v<prereq>" syn match modCommand "\v<(module|conflict|chdir|prereq)>" syn match modCommand "\v<module-(alias|info|log|trace|user|verbosity|version|virtual|whatis)>" syn match modCommand "\v<(un)?set-(alias|function)>" syn match modCommand "\v<(un)?setenv>" syn match modCommand "\v<getenv>" syn match modCommand "\v<(system|uname|x-resource)>" syn match modCommand "\v<is-(loaded|saved|used|avail)>" hi def link modCommand tclSpecial syn match modProc "\v<ModulesHelp>" syn match modProc "\v<ModulesDisplay>" syn match modProc "\v<ModulesTest>" hi def link modProc tclSpecial syn match modVar "\v<ModulesVersion>" hi def link modVar tclSpecial syntax/augeas.vim 0000644 00000006212 15204070615 0010055 0 ustar 00 " Vim syntax file " Language: Augeas " Version: 1.0 " $Id$ " Maintainer: Bruno Cornec <bruno@project-builder.org> " Contributors: " Raphaël Pinson <raphink@gmail.com> " For version 5.x: Clear all syntax items " For version 6.x: Quit when a syntax file was already loaded if version < 600 syntax clear elseif exists("b:current_syntax") finish endif syn case ignore syn sync lines=250 syn keyword augeasStatement module let incl transform autoload in rec syn keyword augeasTestStatement test get after put insa insb set rm syn keyword augeasTodo contained TODO FIXME XXX DEBUG NOTE if exists("augeas_symbol_operator") syn match augeasSymbolOperator "[+\-/*=]" syn match augeasSymbolOperator "[<>]=\=" syn match augeasSymbolOperator "<>" syn match augeasSymbolOperator ":=" syn match augeasSymbolOperator "[()]" syn match augeasSymbolOperator "\.\." syn match augeasSymbolOperator "[\^.]" syn match augeasMatrixDelimiter "[][]" "if you prefer you can highlight the range "syn match augeasMatrixDelimiter "[\d\+\.\.\d\+]" endif if exists("augeas_no_tabs") syn match augeasShowTab "\t" endif syn region augeasComment start="(\*" end="\*)" contains=augeasTodo,augeasSpaceError if !exists("augeas_no_functions") " functions syn keyword augeasLabel del key store label value square seq syn keyword augeasFunction Util Build Rx Sep Quote endif syn region augeasRegexp start="/" end="[^\\]/" syn region augeasString start=+"+ end=+"+ skip=+\\"+ " Define the default highlighting. " For version 5.7 and earlier: only when not done already " For version 5.8 and later: only when an item doesn't have highlighting yet if version >= 508 || !exists("did_augeas_syn_inits") if version < 508 let did_augeas_syn_inits = 1 command -nargs=+ HiLink hi link <args> else command -nargs=+ HiLink hi def link <args> endif HiLink augeasAcces augeasStatement HiLink augeasBoolean Boolean HiLink augeasComment Comment HiLink augeasConditional Conditional HiLink augeasConstant Constant HiLink augeasDelimiter Identifier HiLink augeasDirective augeasStatement HiLink augeasException Exception HiLink augeasFloat Float HiLink augeasFunction Function HiLink augeasLabel Label HiLink augeasMatrixDelimiter Identifier HiLink augeasModifier Type HiLink augeasNumber Number HiLink augeasOperator Operator HiLink augeasPredefined augeasStatement HiLink augeasPreProc PreProc HiLink augeasRepeat Repeat HiLink augeasSpaceError Error HiLink augeasStatement Statement HiLink augeasString String HiLink augeasStringEscape Special HiLink augeasStringEscapeGPC Special HiLink augeasRegexp Special HiLink augeasStringError Error HiLink augeasStruct augeasStatement HiLink augeasSymbolOperator augeasOperator HiLink augeasTestStatement augeasStatement HiLink augeasTodo Todo HiLink augeasType Type HiLink augeasUnclassified augeasStatement " HiLink augeasAsm Assembler HiLink augeasError Error HiLink augeasAsmKey augeasStatement HiLink augeasShowTab Error delcommand HiLink endif let b:current_syntax = "augeas" " vim: ts=8 sw=2 ftplugin/modulefile.vim 0000644 00000000752 15204070615 0011242 0 ustar 00 if exists("b:did_modulefile_ftplugin") finish endif let b:did_modulefile_ftplugin = 1 set syntax=modulefile " adopted from tcl ftplugin: let s:cpo_save = &cpo set cpo-=C setlocal comments=:# setlocal commentstring=#%s setlocal formatoptions+=croql " Undo the stuff we changed. let b:undo_ftplugin = "setlocal fo< com< cms< inc< inex< def< isf< kp<" . \ " | unlet! b:browsefilter" " Restore the saved compatibility options. let &cpo = s:cpo_save unlet s:cpo_save
| ver. 1.4 |
Github
|
.
| PHP 8.1.34 | ���֧ߧ֧�ѧ�ڧ� ����ѧߧڧ��: 0 |
proxy
|
phpinfo
|
���ѧ����ۧܧ�