| Server IP : 85.112.90.236 / Your IP : 192.168.1.26 Web Server : Apache System : Linux 85-112-90-236.cprapid.com 6.12.0-211.7.3.el10_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 12:46:58 EDT 2026 x86_64 User : ftechme ( 1002) PHP Version : 8.2.32 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /usr/share/vim/vimfiles/syntax/ |
Upload File : |
" Vim syntax file
" Language: Tcl Modulefile
" Maintainer: Xavier Delaruelle <xavier.delaruelle@cea.fr>
" Original: Felix Neumärker <xdch47@posteo.de>
" Reference: https://modules.readthedocs.io/en/latest/modulefile.html
" Quit when a syntax file was already loaded
if exists("b:current_syntax")
finish
endif
runtime syntax/tcl.vim
syn iskeyword @,48-57,_,192-255,-
" Modulefile commands
syn keyword modCommand add-property always-load append-path chdir complete conflict
syn keyword modCommand depends-on depends-on-any extensions family getenv getvariant
syn keyword modCommand haveDynamicMPATH hide-modulefile hide-version is-avail is-loaded
syn keyword modCommand is-saved is-used lsb-release module module-alias module-forbid
syn keyword modCommand module-help module-hide module-info module-tag module-version
syn keyword modCommand module-virtual module-warn module-whatis modulepath-label
syn keyword modCommand prepend-path prereq prereq-all prereq-any provide pushenv
syn keyword modCommand remove-path reportError reportWarning require-fullname set-alias
syn keyword modCommand set-function setenv source-sh system uname uncomplete unset-alias
syn keyword modCommand unset-function unsetenv variant versioncmp x-resource
" Modulefile procedures
syn keyword modProc ModulesHelp ModulesDisplay ModulesTest
" Modulefile variables
syn keyword modVar ModulesVersion ModulesCurrentModulefile ModuleTool ModuleToolVersion
syn keyword modVar ModuleVariant
hi def link modCommand Special
hi def link modProc Special
hi def link modVar Special
let b:current_syntax = "modulefile"
" vim:set tabstop=4 shiftwidth=4 expandtab textwidth=100: