GRAYBYTE WORDPRESS FILE MANAGER4628

Server IP : 68.65.123.43 / Your IP : 216.73.216.162
System : Linux server266.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /usr/share/mc/syntax/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /usr/share/mc/syntax//lua.syntax
#
# Lua syntax highlighting
#
# History:
#
# - 2015: Support for long strings and long comments.
# - 2011: String-literal fixes.
# - 2005: Started by Mike Gorchak <lestat@i.com.ua>

context default lightgray

# keywords
    keyword whole and white
    keyword whole break white
    keyword whole do white
    keyword whole else white
    keyword whole elseif white
    keyword whole end white
    keyword whole false white
    keyword whole for white
    keyword whole function white
    keyword whole if white
    keyword whole in white
    keyword whole local white
    keyword whole nil white
    keyword whole not white
    keyword whole or white
    keyword whole repeat white
    keyword whole return white
    keyword whole then white
    keyword whole true white
    keyword whole until white
    keyword whole while white

# Comment and string delimiters
    keyword -- brown
    keyword ]\[=\]] brown
    # The following colorizes the start delimiter of "long" strings.
    # The start delimiter of "long" comments isn't affected by the following
    # directive but gets its color from the "--" above (gods know why).
    keyword [\[=\][ brown

# Operators
    keyword ( white
    keyword ) white
    keyword { white
    keyword } white
    keyword [ white
    keyword ] white
    keyword . white
    keyword , white
    keyword ; white
    keyword : white
    keyword .. white
    keyword ... white
    keyword = white
    keyword == white
    keyword ~= white
    keyword <= white
    keyword => white
    keyword > white
    keyword < white
    keyword \+ white
    keyword - white
    keyword \* white
    keyword / white
    keyword ^ white


# Library Functions

    # basiclib
    keyword whole error yellow
    keyword whole getmetatable yellow
    keyword whole setmetatable yellow
    keyword whole getfenv yellow
    keyword whole setfenv yellow
    keyword whole next yellow
    keyword whole ipairs yellow
    keyword whole pairs yellow
    keyword whole print yellow
    keyword whole tonumber yellow
    keyword whole tostring yellow
    keyword whole type yellow
    keyword whole assert yellow
    #keyword whole unpack yellow    # modern code should use table.unpack()
    keyword whole rawequal yellow
    keyword whole rawget yellow
    keyword whole rawset yellow
    keyword whole pcall yellow
    keyword whole xpcall yellow
    keyword whole collectgarbage yellow
    keyword whole gcinfo yellow
    keyword whole loadfile yellow
    keyword whole dofile yellow
    keyword whole loadstring yellow
    keyword whole require yellow
    keyword whole coroutine.create yellow
    keyword whole coroutine.wrap yellow
    keyword whole coroutine.resume yellow
    keyword whole coroutine.yield yellow
    keyword whole coroutine.status yellow

    # stringlib
    keyword whole string.len yellow
    keyword whole string.sub yellow
    keyword whole string.lower yellow
    keyword whole string.upper yellow
    keyword whole string.char yellow
    keyword whole string.rep yellow
    keyword whole string.byte yellow
    keyword whole string.format yellow
    keyword whole string.dump yellow
    keyword whole string.find yellow
    keyword whole string.gfind yellow
    keyword whole string.gsub yellow

    # tablelib
    keyword whole table.concat yellow
    keyword whole table.foreach yellow
    keyword whole table.foreachi yellow
    keyword whole table.getn yellow
    keyword whole table.setn yellow
    keyword whole table.sort yellow
    keyword whole table.insert yellow
    keyword whole table.remove yellow
    keyword whole table.unpack yellow

    # mathlib
    keyword whole math.abs yellow
    keyword whole math.sin yellow
    keyword whole math.cos yellow
    keyword whole math.tan yellow
    keyword whole math.asin yellow
    keyword whole math.acos yellow
    keyword whole math.atan yellow
    keyword whole math.atan2 yellow
    keyword whole math.ceil yellow
    keyword whole math.floor yellow
    keyword whole math.mod yellow
    keyword whole math.frexp yellow
    keyword whole math.ldexp yellow
    keyword whole math.sqrt yellow
    keyword whole math.min yellow
    keyword whole math.max yellow
    keyword whole math.log yellow
    keyword whole math.log10 yellow
    keyword whole math.exp yellow
    keyword whole math.deg yellow
    keyword whole math.pow yellow
    keyword whole math.rad yellow
    keyword whole math.random yellow
    keyword whole math.randomseed yellow

    # iolib
    keyword whole io.input yellow
    keyword whole io.output yellow
    keyword whole io.lines yellow
    keyword whole io.close yellow
    keyword whole io.flush yellow
    keyword whole io.open yellow
    keyword whole io.popen yellow
    keyword whole io.read yellow
    keyword whole io.tmpfile yellow
    keyword whole io.type yellow
    keyword whole io.write yellow

    # filelib
    keyword whole file.flush yellow
    keyword whole file.read yellow
    keyword whole file.lines yellow
    keyword whole file.seek yellow
    keyword whole file.write yellow
    keyword whole file.close yellow
    keyword whole file.__gc yellow
    keyword whole file.__tostring yellow

    # syslib
    keyword whole os.clock yellow
    keyword whole os.date yellow
    keyword whole os.difftime yellow
    keyword whole os.execute yellow
    keyword whole os.exit yellow
    keyword whole os.getenv yellow
    keyword whole os.remove yellow
    keyword whole os.rename yellow
    keyword whole os.setlocale yellow
    keyword whole os.time yellow
    keyword whole os.tmpname yellow

    # debuglib
    keyword whole debug.getlocal yellow
    keyword whole debug.getinfo yellow
    keyword whole debug.gethook yellow
    keyword whole debug.getupvalue yellow
    keyword whole debug.sethook yellow
    keyword whole debug.setlocal yellow
    keyword whole debug.setupvalue yellow
    keyword whole debug.debug yellow
    keyword whole debug.traceback yellow


# Global Variables
    keyword whole _VERSION brightmagenta
    keyword whole _G brightmagenta

#
# Long comments
#

context exclusive --[[ ]] brown
    # hightlights ldoc tags: "@todo", "@param", "@function" etc.
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck
context exclusive --[=[ ]=] brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck
context exclusive --[==[ ]==] brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck
context exclusive --[===[ ]===] brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck
# 4 equals and up (the number of ='s doesn't have to match, but that's the best we can do):
context exclusive --[====\[=\][ ]====\[=\]] brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck

#
# Long strings
#

context exclusive [[ ]] brightmagenta
    spellcheck
context exclusive [=[ ]=] brightmagenta
    spellcheck
context exclusive [==[ ]==] brightmagenta
    spellcheck
context exclusive [===[ ]===] brightmagenta
    spellcheck
# 4 equals and up (the number of ='s doesn't have to match, but that's the best we can do):
context exclusive [====\[=\][ ]====\[=\]] brightmagenta
    spellcheck


# Simple comments
context exclusive -- \n brown
    keyword @\[abcdefghijklmnopqrstuvwxyz\] brightred base
    spellcheck

# Shebang line
context linestart #! \n brown

# Strings
context " " green
    keyword %a brightgreen
    keyword %c brightgreen
    keyword %d brightgreen
    keyword %l brightgreen
    keyword %p brightgreen
    keyword %q brightgreen
    keyword %s brightgreen
    keyword %u brightgreen
    keyword %w brightgreen
    keyword %x brightgreen
    keyword %z brightgreen
    keyword \\\\ brightgreen
    keyword \\" brightgreen
    keyword \\' brightgreen
    keyword \\\{abtnvfr\} brightgreen
    keyword \\\{0123\}\{01234567\}\{01234567\} brightgreen
    keyword \\\{01234567\}\{01234567\} brightgreen
    keyword \\\{01234567\} brightgreen
    spellcheck

context ' ' green
    keyword %a brightgreen
    keyword %c brightgreen
    keyword %d brightgreen
    keyword %l brightgreen
    keyword %p brightgreen
    keyword %q brightgreen
    keyword %s brightgreen
    keyword %u brightgreen
    keyword %w brightgreen
    keyword %x brightgreen
    keyword %z brightgreen
    keyword \\\\ brightgreen
    keyword \\" brightgreen
    keyword \\' brightgreen
    keyword \\\{abtnvfr\} brightgreen
    keyword \\\{0123\}\{01234567\}\{01234567\} brightgreen
    keyword \\\{01234567\}\{01234567\} brightgreen
    keyword \\\{01234567\} brightgreen
    spellcheck

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
March 21 2024 09:31:16
root / root
0755
PKGBUILD.syntax
13.276 KB
February 24 2017 20:25:57
root / root
0644
Syntax
7.259 KB
October 18 2019 20:37:56
root / root
0644
ada95.syntax
1.74 KB
February 24 2017 20:25:57
root / root
0644
as.syntax
5.582 KB
February 24 2017 20:25:57
root / root
0644
aspx.syntax
1.044 KB
February 24 2017 20:25:57
root / root
0644
assembler.syntax
11.864 KB
February 24 2017 20:25:57
root / root
0644
awk.syntax
5.633 KB
February 24 2017 20:25:57
root / root
0644
c.syntax
3.337 KB
February 24 2017 20:25:57
root / root
0644
cabal.syntax
9.529 KB
February 24 2017 20:25:57
root / root
0644
changelog.syntax
0.914 KB
February 24 2017 20:25:57
root / root
0644
cmake.syntax
32.188 KB
February 24 2017 20:25:57
root / root
0644
cs.syntax
4.435 KB
February 24 2017 20:25:57
root / root
0644
css.syntax
19.452 KB
February 24 2017 20:25:57
root / root
0644
cuda.syntax
4.596 KB
February 24 2017 20:25:57
root / root
0644
cxx.syntax
3.8 KB
February 24 2017 20:25:57
root / root
0644
cython.syntax
10.214 KB
February 24 2017 20:25:57
root / root
0644
d.syntax
18.042 KB
February 24 2017 20:25:57
root / root
0644
debian-changelog.syntax
0.657 KB
February 24 2017 20:25:57
root / root
0644
debian-control.syntax
0.9 KB
February 24 2017 20:25:57
root / root
0644
debian-description.syntax
0.462 KB
February 24 2017 20:25:57
root / root
0644
debian-sources-list.syntax
0.361 KB
February 24 2017 20:25:57
root / root
0644
diff.syntax
1.202 KB
February 24 2017 20:25:57
root / root
0644
dlink.syntax
8.055 KB
February 24 2017 20:25:57
root / root
0644
dos.syntax
2.12 KB
February 24 2017 20:25:57
root / root
0644
ebuild.syntax
11.615 KB
March 04 2017 10:07:36
root / root
0644
eiffel.syntax
2.917 KB
February 24 2017 20:25:57
root / root
0644
erlang.syntax
9.816 KB
February 24 2017 20:25:57
root / root
0644
f90.syntax
8.751 KB
February 24 2017 20:25:57
root / root
0644
filehighlight.syntax
2.305 KB
February 24 2017 20:25:57
root / root
0644
fortran.syntax
8.405 KB
February 24 2017 20:25:57
root / root
0644
glsl.syntax
15.252 KB
February 24 2017 20:25:57
root / root
0644
go.syntax
5.031 KB
February 24 2017 20:25:57
root / root
0644
haskell.syntax
8.49 KB
February 24 2017 20:25:57
root / root
0644
html.syntax
35.405 KB
March 04 2017 10:07:36
root / root
0644
idl.syntax
2.998 KB
February 24 2017 20:25:57
root / root
0644
ini.syntax
0.215 KB
February 24 2017 20:25:57
root / root
0644
j.syntax
1.551 KB
February 24 2017 20:25:57
root / root
0644
jal.syntax
10.04 KB
February 24 2017 20:25:57
root / root
0644
java.syntax
3.817 KB
February 24 2017 20:25:57
root / root
0644
js.syntax
5.035 KB
February 24 2017 20:25:57
root / root
0644
latex.syntax
8.754 KB
February 24 2017 20:25:57
root / root
0644
lisp.syntax
2.184 KB
February 24 2017 20:25:57
root / root
0644
lkr.syntax
2.06 KB
February 24 2017 20:25:57
root / root
0644
lsm.syntax
1.22 KB
February 24 2017 20:25:57
root / root
0644
lua.syntax
8.343 KB
February 24 2017 20:25:57
root / root
0644
m4.syntax
3.059 KB
February 24 2017 20:25:57
root / root
0644
mail.syntax
4.017 KB
February 24 2017 20:25:57
root / root
0644
makefile.syntax
2.306 KB
February 24 2017 20:25:57
root / root
0644
ml.syntax
2.57 KB
February 24 2017 20:25:57
root / root
0644
named.syntax
6.525 KB
February 24 2017 20:25:57
root / root
0644
nemerle.syntax
5.618 KB
February 24 2017 20:25:57
root / root
0644
nroff.syntax
7.948 KB
February 24 2017 20:25:57
root / root
0644
octave.syntax
10.58 KB
February 24 2017 20:25:57
root / root
0644
opencl.syntax
5.608 KB
March 04 2017 17:26:19
root / root
0644
osl.syntax
3.972 KB
March 04 2017 17:26:19
root / root
0644
pascal.syntax
3.889 KB
February 24 2017 20:25:57
root / root
0644
perl.syntax
9.535 KB
February 24 2017 20:25:57
root / root
0644
php.syntax
108.731 KB
February 24 2017 20:25:57
root / root
0644
po.syntax
2.264 KB
February 24 2017 20:25:57
root / root
0644
povray.syntax
8.348 KB
February 24 2017 20:25:57
root / root
0644
procmail.syntax
8.104 KB
February 24 2017 20:25:57
root / root
0644
properties.syntax
1.596 KB
February 24 2017 20:25:57
root / root
0644
puppet.syntax
21.554 KB
February 24 2017 20:25:57
root / root
0644
python.syntax
9.331 KB
February 24 2017 20:25:57
root / root
0644
r.syntax
4.329 KB
March 04 2017 17:26:19
root / root
0644
ruby.syntax
5.967 KB
February 24 2017 20:25:57
root / root
0644
sh.syntax
64.367 KB
February 24 2017 20:25:57
root / root
0644
slang.syntax
3.348 KB
February 24 2017 20:25:57
root / root
0644
smalltalk.syntax
5.147 KB
February 24 2017 20:25:57
root / root
0644
spec.syntax
11.371 KB
February 24 2017 20:25:57
root / root
0644
sql.syntax
9.986 KB
February 24 2017 20:25:57
root / root
0644
strace.syntax
1.051 KB
February 24 2017 20:25:57
root / root
0644
swig.syntax
5.432 KB
February 24 2017 20:25:57
root / root
0644
syntax.syntax
2.096 KB
March 04 2017 17:26:19
root / root
0644
tcl.syntax
4.318 KB
February 24 2017 20:25:57
root / root
0644
texinfo.syntax
8.87 KB
February 24 2017 20:25:57
root / root
0644
tt.syntax
3.551 KB
February 24 2017 20:25:57
root / root
0644
unknown.syntax
0.03 KB
February 24 2017 20:25:57
root / root
0644
verilog.syntax
7.589 KB
February 24 2017 20:25:57
root / root
0644
vhdl.syntax
5.013 KB
February 24 2017 20:25:57
root / root
0644
xml.syntax
1.12 KB
February 24 2017 20:25:57
root / root
0644
yaml.syntax
1.236 KB
March 04 2017 17:26:19
root / root
0644
yum-repo.syntax
0.345 KB
February 24 2017 20:25:57
root / root
0644
yxx.syntax
6.417 KB
February 24 2017 20:25:57
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF