[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
share
/
nano
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 asm.nanorc
882 B
SET
[ EDIT ]
|
[ DEL ]
📄 autoconf.nanorc
555 B
SET
[ EDIT ]
|
[ DEL ]
📄 awk.nanorc
1,350 B
SET
[ EDIT ]
|
[ DEL ]
📄 c.nanorc
1,748 B
SET
[ EDIT ]
|
[ DEL ]
📄 changelog.nanorc
713 B
SET
[ EDIT ]
|
[ DEL ]
📄 cmake.nanorc
825 B
SET
[ EDIT ]
|
[ DEL ]
📄 css.nanorc
344 B
SET
[ EDIT ]
|
[ DEL ]
📄 debian.nanorc
757 B
SET
[ EDIT ]
|
[ DEL ]
📄 default.nanorc
419 B
SET
[ EDIT ]
|
[ DEL ]
📄 elisp.nanorc
1,109 B
SET
[ EDIT ]
|
[ DEL ]
📄 fortran.nanorc
1,967 B
SET
[ EDIT ]
|
[ DEL ]
📄 gentoo.nanorc
4,230 B
SET
[ EDIT ]
|
[ DEL ]
📄 go.nanorc
1,396 B
SET
[ EDIT ]
|
[ DEL ]
📄 groff.nanorc
711 B
SET
[ EDIT ]
|
[ DEL ]
📄 guile.nanorc
588 B
SET
[ EDIT ]
|
[ DEL ]
📄 html.nanorc
1,211 B
SET
[ EDIT ]
|
[ DEL ]
📄 java.nanorc
653 B
SET
[ EDIT ]
|
[ DEL ]
📄 javascript.nanorc
763 B
SET
[ EDIT ]
|
[ DEL ]
📄 json.nanorc
879 B
SET
[ EDIT ]
|
[ DEL ]
📄 lua.nanorc
2,363 B
SET
[ EDIT ]
|
[ DEL ]
📄 makefile.nanorc
535 B
SET
[ EDIT ]
|
[ DEL ]
📄 man.nanorc
456 B
SET
[ EDIT ]
|
[ DEL ]
📄 mgp.nanorc
229 B
SET
[ EDIT ]
|
[ DEL ]
📄 mutt.nanorc
185 B
SET
[ EDIT ]
|
[ DEL ]
📄 nanohelp.nanorc
390 B
SET
[ EDIT ]
|
[ DEL ]
📄 nanorc.nanorc
2,707 B
SET
[ EDIT ]
|
[ DEL ]
📄 nftables.nanorc
792 B
SET
[ EDIT ]
|
[ DEL ]
📄 objc.nanorc
1,800 B
SET
[ EDIT ]
|
[ DEL ]
📄 ocaml.nanorc
859 B
SET
[ EDIT ]
|
[ DEL ]
📄 patch.nanorc
590 B
SET
[ EDIT ]
|
[ DEL ]
📄 perl.nanorc
1,466 B
SET
[ EDIT ]
|
[ DEL ]
📄 php.nanorc
1,070 B
SET
[ EDIT ]
|
[ DEL ]
📄 po.nanorc
920 B
SET
[ EDIT ]
|
[ DEL ]
📄 postgresql.nanorc
3,071 B
SET
[ EDIT ]
|
[ DEL ]
📄 pov.nanorc
632 B
SET
[ EDIT ]
|
[ DEL ]
📄 python.nanorc
966 B
SET
[ EDIT ]
|
[ DEL ]
📄 ruby.nanorc
1,517 B
SET
[ EDIT ]
|
[ DEL ]
📄 rust.nanorc
1,116 B
SET
[ EDIT ]
|
[ DEL ]
📄 sh.nanorc
1,397 B
SET
[ EDIT ]
|
[ DEL ]
📄 spec.nanorc
1,925 B
SET
[ EDIT ]
|
[ DEL ]
📄 tcl.nanorc
2,181 B
SET
[ EDIT ]
|
[ DEL ]
📄 tex.nanorc
200 B
SET
[ EDIT ]
|
[ DEL ]
📄 texinfo.nanorc
465 B
SET
[ EDIT ]
|
[ DEL ]
📄 xml.nanorc
527 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: ruby.nanorc
## 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|\?\?\?)"