74 changed files with 1 additions and 25429 deletions
@ -1,576 +0,0 @@
@@ -1,576 +0,0 @@
|
||||
# Midnight Commander 3.0 extension file |
||||
# Warning: Structure of this file has changed completely with version 3.0 |
||||
# |
||||
# All lines starting with # or empty lines are thrown away. |
||||
# Lines starting in the first column should have following format: |
||||
# |
||||
# keyword/descNL, i.e. everything after keyword/ until new line is desc |
||||
# |
||||
# keyword can be: |
||||
# |
||||
# shell (desc is, when starting with a dot, any extension (no wildcars), |
||||
# i.e. matches all the files *desc . Example: .tar matches *.tar; |
||||
# if it doesn't start with a dot, it matches only a file of that name) |
||||
# |
||||
# regex (desc is an extended regular expression) |
||||
# Please note that we are using the GNU regex library and thus |
||||
# \| matches the literal | and | has special meaning (or) and |
||||
# () have special meaning and \( \) stand for literal ( ). |
||||
# |
||||
# type (file matches this if `file %f` matches regular expression desc |
||||
# (the filename: part from `file %f` is removed)) |
||||
# |
||||
# directory (matches any directory matching regular expression desc) |
||||
# |
||||
# include (matches an include directive) |
||||
# |
||||
# default (matches any file no matter what desc is) |
||||
# |
||||
# Other lines should start with a space or tab and should be in the format: |
||||
# |
||||
# keyword=commandNL (with no spaces around =), where keyword should be: |
||||
# |
||||
# Open (if the user presses Enter or doubleclicks it), |
||||
# |
||||
# View (F3), Edit (F4) |
||||
# |
||||
# Include is the keyword used to add any further entries from an include/ |
||||
# section |
||||
# |
||||
# command is any one-line shell command, with the following substitutions: |
||||
# |
||||
# %% -> % character |
||||
# %p -> name of the current file (without path, but pwd is its path) |
||||
# %f -> name of the current file. Unlike %p, if file is located on a |
||||
# non-local virtual filesystem, i.e. either tarfs, mcfs or ftpfs, |
||||
# then the file will be temporarily copied into a local directory |
||||
# and %f will be the full path to this local temporal file. |
||||
# If you don't want to get a local copy and want to get the |
||||
# virtual fs path (like /#ftp:ftp.cvut.cz/pub/hungry/xword), then |
||||
# use %d/%p instead of %f. |
||||
# %d -> name of the current directory (pwd, without trailing slash) |
||||
# %s -> "selected files", i.e. space separated list of tagged files if any |
||||
# or name of the current file |
||||
# %t -> list of tagged files |
||||
# %u -> list of tagged files (they'll be untaged after the command) |
||||
# |
||||
# (If these 6 letters are in uppercase, they refer to the other panel. |
||||
# But you shouldn't have to use it in this file.) |
||||
# |
||||
# |
||||
# %cd -> the rest is a path mc should change into (cd won't work, since it's |
||||
# a child process). %cd handles even vfs names. |
||||
# |
||||
# %view -> the command you type will be piped into mc's internal file viewer |
||||
# if you type only the %view and no command, viewer will load %f file |
||||
# instead (i.e. no piping, so it is different to %view cat %f) |
||||
# %view may be directly followed by {} with a list of any of |
||||
# ascii (Ascii mode), hex (Hex mode), nroff (color highlighting for |
||||
# text using backspace for bold and underscore) and unform |
||||
# (no highlighting for nroff sequences) separated by commas. |
||||
# |
||||
# %var -> You use it like this: %var{VAR:default}. This macro will expand |
||||
# to the value of the VAR variable in the environment if it's set |
||||
# otherwise the value in default will be used. This is similar to |
||||
# the Bourne shell ${VAR-default} construct. |
||||
# |
||||
# Rules are applied from top to bottom, thus the order is important. |
||||
# If some actions are missing, search continues as if this target didn't |
||||
# match (i.e. if a file matches the first and second entry and View action |
||||
# is missing in the first one, then on pressing F3 the View action from |
||||
# the second entry will be used. default should catch all the actions. |
||||
# |
||||
# Any new entries you develop for you are always welcome if they are |
||||
# useful on more than one system. You can send your modifications |
||||
# by e-mail to mc-devel@gnome.org |
||||
|
||||
|
||||
### Changes ### |
||||
# |
||||
# Reorganization: 2000-05-01 Michal Svec <rebel@penguin.cz> |
||||
|
||||
|
||||
### TODO ### |
||||
# |
||||
# Postscript Open: ps2svga [gs -DEVICE=jpeg|zgv or something] |
||||
# Images asciiview |
||||
# |
||||
# All X Apps [Nothing/Warning] if no DISPLAY |
||||
# Not found [Default/Warning] |
||||
# Empty Output [Default/Warning] |
||||
# Edit: CopyOut+EDIT+CopyIn |
||||
# Security Check gzip/bzip EDIT (mktemp) |
||||
# |
||||
# Maybe: Open/XOpen/GOpen/KOpen/... for Console/X/GNOME/KDE/etc. |
||||
|
||||
|
||||
### Archives ### |
||||
|
||||
# .tgz, .tpz, .tar.gz, .tar.z, .tar.Z, .ipk |
||||
regex/\.t([gp]?z|ar\.g?[zZ])$|\.ipk$ |
||||
Open=%cd %p#utar |
||||
View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf - |
||||
|
||||
regex/\.tar\.bz$ |
||||
# Open=%cd %p#utar |
||||
View=%view{ascii} bzip -dc %f 2>/dev/null | tar tvvf - |
||||
|
||||
regex/\.t(ar\.bz2|bz|b2|bz2)$ |
||||
Open=%cd %p#utar |
||||
View=%view{ascii} bzip2 -dc %f 2>/dev/null | tar tvvf - |
||||
|
||||
# .tar.lzma, .tlz |
||||
regex/\.t(ar\.lzma|lz)$ |
||||
Open=%cd %p#utar |
||||
View=%view{ascii} lzma -dc %f 2>/dev/null | tar tvvf - |
||||
|
||||
# .tar.F - used in QNX |
||||
regex/\.tar\.F$ |
||||
# Open=%cd %p#utar |
||||
View=%view{ascii} freeze -dc %f 2>/dev/null | tar tvvf - |
||||
|
||||
# .qpr/.qpk - QNX Neutrino package installer files |
||||
regex/\.(qp[rk])$ |
||||
Open=%cd %p#utar |
||||
View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf - |
||||
|
||||
# tar |
||||
regex/\.(tar|TAR)$ |
||||
Open=%cd %p#utar |
||||
View=%view{ascii} tar tvvf %f |
||||
|
||||
# lha |
||||
type/^LHa\ .*archive |
||||
Open=%cd %p#ulha |
||||
View=%view{ascii} lha l %f |
||||
|
||||
# arj |
||||
regex/\.a(rj|[0-9][0-9])$ |
||||
Open=%cd %p#uarj |
||||
View=%view{ascii} unarj l %f |
||||
|
||||
# ha |
||||
regex/\.([Hh][Aa])$ |
||||
Open=%cd %p#uha |
||||
View=%view{ascii} ha lf %f |
||||
|
||||
# rar |
||||
regex/\.[rR]([aA][rR]|[0-9][0-9])$ |
||||
Open=%cd %p#urar |
||||
View=%view{ascii} rar v -c- %f |
||||
|
||||
# ALZip |
||||
regex/\.(alz|ALZ)$ |
||||
Open=%cd %p#ualz |
||||
View=%view{ascii} unalz -l %f |
||||
|
||||
# cpio |
||||
shell/.cpio.Z |
||||
Open=%cd %p#ucpio |
||||
View=%view{ascii} gzip -dc '%f' | cpio -itv 2>/dev/null |
||||
|
||||
shell/.cpio.gz |
||||
Open=%cd %p#ucpio |
||||
View=%view{ascii} gzip -dc '%f' | cpio -itv 2>/dev/null |
||||
|
||||
shell/.cpio |
||||
Open=%cd %p#ucpio |
||||
View=%view{ascii} cpio -itv <'%f' 2>/dev/null |
||||
|
||||
# ls-lR |
||||
regex/(^|\.)ls-?lR(\.(bz2|gz|Z))?$ |
||||
Open=%cd %p#lslR |
||||
|
||||
# patch |
||||
regex/\.(diff|patch)(\.(bz2|gz|Z))?$ |
||||
Open=%cd %p#patchfs |
||||
|
||||
# ar library |
||||
regex/\.s?a$ |
||||
Open=%cd %p#uar |
||||
#Open=%view{ascii} ar tv %f |
||||
View=%view{ascii} file %f && nm %f |
||||
|
||||
# trpm |
||||
regex/\.trpm$ |
||||
Open=%cd %p#trpm |
||||
View=%view{ascii} rpm -qivl --scripts `basename %p .trpm` |
||||
|
||||
# RPM packages (SuSE uses *.spm for source packages) |
||||
regex/\.(rpm|spm)$ |
||||
Open=%cd %p#rpm |
||||
View=%view{ascii} if rpm --nosignature --version >/dev/null 2>&1; then RPM="rpm --nosignature" ; else RPM="rpm" ; fi ; $RPM -qivlp --scripts %f |
||||
|
||||
# deb |
||||
regex/\.u?deb$ |
||||
Open=%cd %p#deb |
||||
View=%view{ascii} dpkg-deb -I %f && echo && dpkg-deb -c %f |
||||
|
||||
# ISO9660 |
||||
regex/\.iso$ |
||||
Open=%cd %p#iso9660 |
||||
View=%view{ascii} isoinfo -l -i %f |
||||
|
||||
# 7zip archives (they are not man pages) |
||||
shell/.7z |
||||
Open=%cd %p#u7z |
||||
View=%view{ascii} 7za l %f 2>/dev/null |
||||
|
||||
# Mailboxes |
||||
type/^ASCII\ mail\ text |
||||
Open=%cd %p#mailfs |
||||
|
||||
|
||||
### Sources ### |
||||
|
||||
# C |
||||
shell/.c |
||||
Open=%var{EDITOR:vi} %f |
||||
|
||||
# Fortran |
||||
shell/.f |
||||
Open=%var{EDITOR:vi} %f |
||||
|
||||
# Header |
||||
regex/\.(h|hpp)$ |
||||
Open=%var{EDITOR:vi} %f |
||||
|
||||
# Object |
||||
type/^ELF |
||||
#Open=%var{PAGER:more} %f |
||||
View=%view{ascii} file %f && nm %f |
||||
|
||||
# Asm |
||||
shell/.s |
||||
Open=%var{EDITOR:vi} %f |
||||
|
||||
# C++ |
||||
regex/\.(C|cc|cpp)$ |
||||
Open=%var{EDITOR:vi} %f |
||||
|
||||
|
||||
### Documentation ### |
||||
|
||||
# Texinfo |
||||
regex/\.(te?xi|texinfo)$ |
||||
|
||||
# GNU Info page |
||||
type/^Info\ text |
||||
Open=info -f %f |
||||
|
||||
shell/.info |
||||
Open=info -f %f |
||||
|
||||
# Manual page |
||||
# Exception - .so libraries are not manual pages |
||||
regex/\.(so|so\.[0-9\.]*)$ |
||||
View=%view{ascii} file %f && nm %f |
||||
|
||||
regex/(([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])|\.man)$ |
||||
Open=case %d/%f in */log/*|*/logs/*) cat %f ;; *) nroff -c -Tlatin1 -mandoc %f ;; esac | %var{PAGER:more} |
||||
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) cat %f ;; *) nroff -c -Tlatin1 -mandoc %f ;; esac |
||||
|
||||
# Perl pod page |
||||
shell/.pod |
||||
Open=pod2man %f | nroff -c -Tlatin1 -mandoc | %var{PAGER:more} |
||||
View=%view{ascii,nroff} pod2man %f | nroff -c -Tlatin1 -mandoc |
||||
|
||||
# Troff with me macros. |
||||
# Exception - "read.me" is not a nroff file. |
||||
shell/read.me |
||||
Open= |
||||
View= |
||||
|
||||
shell/.me |
||||
Open=nroff -c -Tlatin1 -me %f | %var{PAGER:more} |
||||
View=%view{ascii,nroff} nroff -c -Tlatin1 -me %f |
||||
|
||||
# Troff with ms macros. |
||||
shell/.ms |
||||
Open=nroff -c -Tlatin1 -ms %f | %var{PAGER:more} |
||||
View=%view{ascii,nroff} nroff -c -Tlatin1 -ms %f |
||||
|
||||
# Manual page - compressed |
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.g?[Zz]$ |
||||
Open=case %d/%f in */log/*|*/logs/*) gzip -dc %f ;; *) gzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more} |
||||
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) gzip -dc %f ;; *) gzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz$ |
||||
Open=case %d/%f in */log/*|*/logs/*) bzip -dc %f ;; *) bzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more} |
||||
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) bzip -dc %f ;; *) bzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz2$ |
||||
Open=case %d/%f in */log/*|*/logs/*) bzip2 -dc %f ;; *) bzip2 -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more} |
||||
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) bzip2 -dc %f ;; *) bzip2 -dc %f | nroff -c -Tlatin1 -mandoc ;; esac |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.lzma$ |
||||
Open=case %d/%f in */log/*|*/logs/*) lzma -dc %f ;; *) lzma -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more} |
||||
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) lzma -dc %f ;; *) lzma -dc %f | nroff -c -Tlatin1 -mandoc ;; esac |
||||
|
||||
|
||||
### Images ### |
||||
|
||||
type/^GIF |
||||
Include=image |
||||
|
||||
type/^JPEG |
||||
Include=image |
||||
|
||||
type/^PC\ bitmap |
||||
Include=image |
||||
|
||||
type/^PNG |
||||
Include=image |
||||
|
||||
type/^TIFF |
||||
Include=image |
||||
|
||||
type/^PBM |
||||
Include=image |
||||
|
||||
type/^PGM |
||||
Include=image |
||||
|
||||
type/^PPM |
||||
Include=image |
||||
|
||||
type/^Netpbm |
||||
Include=image |
||||
|
||||
shell/.xcf |
||||
Open=(gimp %f &) |
||||
|
||||
shell/.xbm |
||||
Open=bitmap %f |
||||
|
||||
shell/.xpm |
||||
Include=image |
||||
View=sxpm %f |
||||
|
||||
include/image |
||||
Open=if [ "$DISPLAY" = "" ]; then asciiview %f; else (display %f >/dev/null 2>&1 &); fi |
||||
View=%view{ascii} identify %f |
||||
#View=%view{ascii} asciiview %f |
||||
|
||||
|
||||
### Sound files ### |
||||
|
||||
regex/\.([wW][aA][vV]|[sS][nN][dD]|[vV][oO][cC]|[aA][uU]|[sS][mM][pP]|[aA][iI][fF][fF]|[sS][nN][dD])$ |
||||
Open=if [ "$DISPLAY" = "" ]; then play %f; else (xmms %f >/dev/null 2>&1 &); fi |
||||
|
||||
regex/\.([mM][oO][dD]|[sS]3[mM]|[xX][mM]|[iI][tT]|[mM][tT][mM]|669|[sS][tT][mM]|[uU][lL][tT]|[fF][aA][rR])$ |
||||
Open=mikmod %f |
||||
#Open=tracker %f |
||||
|
||||
regex/\.([wW][aA][wW]22)$ |
||||
Open=vplay -s 22 %f |
||||
|
||||
regex/\.([mM][pP]3)$ |
||||
Open=if [ "$DISPLAY" = "" ]; then mpg123 %f; else if [ -z "`which realplay`" ]; then (xmms -e %f 1>/dev/null 2>&1 &); else (realplay %f >/dev/null 2>&1 &); fi; fi |
||||
View=%view{ascii} mpg123 -vtn1 %f 2>&1 | sed -n '/^Title/,/^Comment/p;/^MPEG/,/^Audio/p' |
||||
|
||||
regex/\.([oO][gG][gG])$ |
||||
Open=if [ "$DISPLAY" = "" ]; then ogg123 %f; else (xmms -e %f >/dev/null 2>&1 &); fi |
||||
View=%view{ascii} ogginfo %s |
||||
|
||||
regex/\.([mM][iI][dD][iI]?|[rR][mM][iI][dD]?)$ |
||||
Open=timidity %f |
||||
|
||||
regex/\.([wW][mM][aA])$ |
||||
Open=mplayer -vo null %f |
||||
View=%view{ascii} mplayer -quiet -slave -frames 0 -vo null -ao null -identify %f 2>/dev/null | tail +13 || file %f |
||||
|
||||
|
||||
### Play lists ### |
||||
|
||||
regex/\.([mM]3[uU]|[pP][lL][sS])$ |
||||
Open=if [ -z "$DISPLAY" ]; then mplayer -vo null -playlist %f; else (xmms -p %f >/dev/null 2>&1 &); fi |
||||
|
||||
|
||||
### Video ### |
||||
|
||||
regex/\.([aA][vV][iI])$ |
||||
Include=video |
||||
|
||||
regex/\.([aA][sS][fFxX])$ |
||||
Include=video |
||||
|
||||
regex/\.([dD][iI][vV][xX])$ |
||||
Include=video |
||||
|
||||
regex/\.([mM][oO][vV]|[qQ][tT])$ |
||||
Include=video |
||||
|
||||
regex/\.([mM][pP]4|[mM][pP][eE]?[gG])$ |
||||
Include=video |
||||
|
||||
regex/\.([vV][oO][bB])$ |
||||
Include=video |
||||
|
||||
regex/\.([wW][mM][vV])$ |
||||
Include=video |
||||
|
||||
regex/\.([oO][gG][mM])$ |
||||
Include=video |
||||
|
||||
regex/\.([rR][aA]?[mM])$ |
||||
Open=(realplay %f >/dev/null 2>&1 &) |
||||
|
||||
regex/\.flv |
||||
Open=(mplayer %f >/dev/null 2>&1 &) |
||||
|
||||
include/video |
||||
Open=(mplayer %f >/dev/null 2>&1 &) |
||||
#Open=(gtv %f >/dev/null 2>&1 &) |
||||
#Open=(xanim %f >/dev/null 2>&1 &) |
||||
|
||||
|
||||
### Documents ### |
||||
|
||||
# Postscript |
||||
type/^PostScript |
||||
Open=(gv %f >/dev/null 2>&1 &) |
||||
View=%view{ascii} ps2ascii %f |
||||
|
||||
|
||||
# PDF |
||||
type/^PDF |
||||
Open=(zathura %f >/dev/null 2>&1 &) |
||||
#Open=(acroread %f &) |
||||
#Open=(ghostview %f &) |
||||
View=%view{ascii} pdftotext %f - |
||||
|
||||
# The following code very ugly and should not be taken as example. |
||||
# It should be cleaned up when the new format of mc.ext is developed. |
||||
|
||||
# html |
||||
regex/\.([hH][tT][mM][lL]?)$ |
||||
Open=(if test -n "konqueror" && test -n "$DISPLAY"; then (konqueror file://%d/%p &) 1>&2; else links %f || lynx -force_html %f || ${PAGER:-more} %f; fi) 2>/dev/null |
||||
View=%view{ascii} lynx -dump -force_html %f |
||||
|
||||
# StarOffice 5.2 |
||||
shell/.sdw |
||||
Open=(ooffice %f >/dev/null 2>&1 &) |
||||
|
||||
# StarOffice 6 and OpenOffice.org formats |
||||
regex/\.(odb|odc|odf|odg|odi|odm|odp|ods|odt|otg|oth|otp|ots|ott|sda|sdc|sdd|sdp|sds|sdw|sgl|smf|stc|std|sti|stw|sxc|sxd|sxg|sxi|sxm|sxw|vor)$ |
||||
Open=(ooffice %f >/dev/null 2>&1 &) |
||||
View=%view{ascii} unzip -p %f content.xml | o3totxt |
||||
|
||||
# AbiWord |
||||
shell/.abw |
||||
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||
|
||||
# Microsoft Word Document |
||||
type/^Microsoft\ Office\ Document |
||||
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||
View=%view{ascii} wvText %f - || strings %f |
||||
|
||||
type/^Microsoft\ Word |
||||
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||
View=%view{ascii} wvText %f - || strings %f |
||||
|
||||
regex/\.([Dd]ot|DOT|[Ww]ri|WRI)$ |
||||
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (OOo %f >/dev/null 2>&1 &); fi >/dev/null |
||||
View=%view{ascii} wvText %f - || strings %f |
||||
|
||||
# RTF document |
||||
regex/\.([rR][tT][fF])$ |
||||
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||
|
||||
# Microsoft Excel Worksheet |
||||
regex/\.([xX][lL][sSwW])$ |
||||
Open=if which gnumeric ; then (gnumeric %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||
View=%view{ascii} xls2csv %f || strings %f |
||||
type/^Microsoft\ Excel |
||||
Open=if which gnumeric ; then (gnumeric %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||
View=%view{ascii} xls2csv %f || strings %f |
||||
|
||||
# Framemaker |
||||
type/^FrameMaker |
||||
Open=fmclient -f %f |
||||
|
||||
# DVI |
||||
regex/\.([dD][vV][iI])$ |
||||
Open=if [ x$DISPLAY = x ]; then dvisvga %f; else (xdvi %f >/dev/null 2>&1 &); fi |
||||
View=%view{ascii} dvi2tty %f |
||||
|
||||
# TeX |
||||
regex/\.([Tt][Ee][Xx])$ |
||||
Open=%var{EDITOR:vi} %f |
||||
|
||||
# DJVU |
||||
regex/\.(djvu|DJVU)$ |
||||
Open=djview %f >/dev/null 2>&1 & |
||||
|
||||
### Miscellaneous ### |
||||
|
||||
# Makefile |
||||
regex/[Mm]akefile$ |
||||
Open=make -f %f %{Enter parameters} |
||||
|
||||
# Imakefile |
||||
shell/Imakefile |
||||
Open=xmkmf -a |
||||
|
||||
# Makefile.PL (MakeMaker) |
||||
regex/^Makefile.(PL|pl)$ |
||||
Open=%var{PERL:perl} %f |
||||
|
||||
# dbf |
||||
regex/\.([dD][bB][fF])$ |
||||
Open=%view{ascii} dbview %f |
||||
View=%view{ascii} dbview -b %f |
||||
|
||||
# REXX script |
||||
regex/\.(rexx?|cmd)$ |
||||
Open=rexx %f %{Enter parameters};echo "Press ENTER";read y |
||||
|
||||
|
||||
### Plain compressed files ### |
||||
|
||||
# zip |
||||
type/^([Zz][Ii][Pp])\ archive |
||||
Open=%cd %p#uzip |
||||
View=%view{ascii} unzip -v %f |
||||
|
||||
# zoo |
||||
regex/\.([Zz][Oo][Oo])$ |
||||
Open=%cd %p#uzoo |
||||
View=%view{ascii} zoo l %f |
||||
|
||||
# gzip |
||||
type/^gzip |
||||
Open=gzip -dc %f | %var{PAGER:more} |
||||
View=%view{ascii} gzip -dc %f 2>/dev/null |
||||
|
||||
# bzip2 |
||||
type/^bzip2 |
||||
Open=bzip2 -dc %f | %var{PAGER:more} |
||||
View=%view{ascii} bzip2 -dc %f 2>/dev/null |
||||
|
||||
# bzip |
||||
type/^bzip |
||||
Open=bzip -dc %f | %var{PAGER:more} |
||||
View=%view{ascii} bzip -dc %f 2>/dev/null |
||||
|
||||
# compress |
||||
type/^compress |
||||
Open=gzip -dc %f | %var{PAGER:more} |
||||
View=%view{ascii} gzip -dc %f 2>/dev/null |
||||
|
||||
# lzma |
||||
regex/\.lzma$ |
||||
Open=lzma -dc %f | %var{PAGER:more} |
||||
View=%view{ascii} lzma -dc %f 2>/dev/null |
||||
|
||||
|
||||
### Default ### |
||||
|
||||
# Default target for anything not described above |
||||
default/* |
||||
Open= |
||||
View= |
||||
|
||||
|
||||
### EOF ### |
@ -1,3 +0,0 @@
@@ -1,3 +0,0 @@
|
||||
echo -n "Установка настроек Х......." |
||||
ln -s $DIR/X/Xdefaults $1/.Xdefaults |
||||
[ $? == 0 ] && echo "OK" |
@ -1,31 +0,0 @@
@@ -1,31 +0,0 @@
|
||||
#! /bin/sh |
||||
# *** External Formatter (Indenter) for GNU Midnight Commander. |
||||
# arguments: |
||||
# $1 - Name of the file being edited |
||||
# $2 - Name of the file to be processed |
||||
|
||||
exec >/dev/null |
||||
|
||||
case `echo $1 |sed 's/^.*\.//'` in |
||||
c|h) |
||||
# ftp://ftp.gnu.org/pub/gnu/indent/ |
||||
# Please add options to your ~/.indent.pro, not here. |
||||
indent "$2" |
||||
;; |
||||
C|cc|CC|cxx|CXX|cpp|CPP) |
||||
# http://astyle.sourceforge.net/ |
||||
astyle "$2" |
||||
;; |
||||
java|JAVA) |
||||
# http://astyle.sourceforge.net/ |
||||
astyle --style=java --mode=java "$2" |
||||
;; |
||||
htm|html|HTM|HTML) |
||||
# http://tidy.sourceforge.net/ |
||||
tidy -q -m -ascii -wrap 80 "$2" |
||||
;; |
||||
*) |
||||
# http://www.gnu.org/software/coreutils/ |
||||
fmt "$2" >"$2.tmp" && rm -f "$2" && mv -f "$2.tmp" "$2" |
||||
;; |
||||
esac |
@ -1,11 +0,0 @@
@@ -1,11 +0,0 @@
|
||||
#! /bin/sh |
||||
# *** External Spell Checker for GNU Midnight Commander. |
||||
# arguments: |
||||
# $1 - Name of the file being edited |
||||
# $2 - Name of the file to be processed |
||||
|
||||
if aspell </dev/null >/dev/null 2>&1; then |
||||
aspell -c "$2" |
||||
else |
||||
ispell "$2" |
||||
fi |
@ -1,44 +0,0 @@
@@ -1,44 +0,0 @@
|
||||
[executable] |
||||
type=FILE_EXE |
||||
|
||||
[directory] |
||||
type=DIR |
||||
|
||||
[device] |
||||
type=DEVICE |
||||
|
||||
[special] |
||||
type=SPECIAL |
||||
|
||||
[stalelink] |
||||
type=STALE_LINK |
||||
|
||||
[symlink] |
||||
type=SYMLINK |
||||
|
||||
[core] |
||||
regexp=^core\\.*\\d*$ |
||||
|
||||
[temp] |
||||
extensions=tmp;$$$;~;bak;o;elc;toc;out;rej;aux; |
||||
extensions_case=false |
||||
regexp=(^#.*|.*~$) |
||||
|
||||
[archive] |
||||
extensions=gz;bz2;tar;tgz;rpm;rar;zip;arj;cab;lzma;xz;tbz2;iso;mdf; |
||||
|
||||
[doc] |
||||
extensions=txt;srt;ass;ssa;doc;ps;pdf;xml;html;htm;tex;css;chm;dvi;djvu;log;odt;cue; |
||||
|
||||
[source] |
||||
extensions=c;h;cc;hh;cpp;cxx;hpp;asm;py;pl;pm;inc;cgi;php;phps;js;java;jav;jasm;sh;bash;diff;patch;pas;tcl;tk;awk;m4;st;mak;sl;ada;caml;ml;mli;mly;mll;mlp;sas;prg;hs;hi;erl;lisp;el;ebuild; |
||||
|
||||
[media] |
||||
extensions=mov;mpg;mpeg;mkv;ogm;mp4;m2v;m4v;wmv;rmvb;rm;asf;avi;flv;vob;flac;mka;mp3;ogg;wav;ape;m3u; |
||||
|
||||
[graph] |
||||
extensions=jpg;jpeg;gif;bmp;tga;xpm;tif;tiff;png;svgz;svg;pcx;xpm;eps;wmf;ico; |
||||
|
||||
[database] |
||||
extensions=db;mdb;dat;sql;xls |
||||
|
@ -1,304 +0,0 @@
@@ -1,304 +0,0 @@
|
||||
/home/maks/.wine/drive_c/Program Files/Bethesda Softworks/Morrowind/Morrowind.ini 1;3;3 |
||||
/tmp/TclKits/YandexTV_WINDOWS.vfs/tv.tcl 1;20;20 |
||||
/home/maks/Programs/Разработка/Tcl/src/YandexTV/ddd 237;0;7989 |
||||
/home/maks/.vim/template/c.vim 4;11;40 |
||||
/home/maks/.vim/template/rebol.vim 3;1;23 |
||||
/home/maks/.vim/template/haskell.vim 1;12;18 |
||||
/home/maks/.vimrc 448;0;17041 |
||||
/home/maks/.shellrc/config/soft/vim/vim/template/perl.vim 1;19;19 |
||||
/home/maks/.shellrc/config/soft/calcurse/todo 2;22;96 |
||||
/home/maks/.xmonad/xmonad.hs 201;25;10256 |
||||
/home/maks/.shellrc/config/soft/vim/vim/template/prolog.vim 1;1 |
||||
/home/maks/.shellrc/config/soft/vim/vim/template/cpp.vim 4;20 |
||||
/home/maks/.shellrc/config/soft/vim/vim/template/sh.vim 3;9 |
||||
/home/maks/.shellrc/config/soft/vim/vim/template/tcl.vim 3;9 |
||||
/home/maks/.shellrc/config/soft/vim/vim/template/scheme.vim 4;21 |
||||
/home/maks/.shellrc/config/soft/vim/vim/template/sh 1;21 |
||||
/home/maks/.shellrc/config/soft/mc/ini 2;0 |
||||
/home/maks/.shellrc/install.sh 14;6 |
||||
/home/maks/.shellrc/config/shell/bash/bashrc 97;95 |
||||
/home/maks/.shellrc/config/shell/bash/aliases 91;0 |
||||
/home/maks/.shellrc/config/shell/bash/bash_profile 9;0 |
||||
/home/maks/.shellrc/config/shell/bash/inputrc 69;0 |
||||
/home/maks/.shellrc/config/shell/bash/completion_addons 101;0 |
||||
/home/maks/.shellrc/config/other/htop/htoprc 12;0 |
||||
/home/maks/.shellrc/config/apps 15;6 |
||||
/home/maks/Programs/Разработка/Tcl/src/Uingen/uingen.tcl 133;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Slacklog/slacklog.tcl 40;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Other/Алгоритмы_2x2/sort.tcl 2;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Music/1.tcl 871;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Morrowind/functions_gui.tcl 124;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Morrowind/functions.tcl 70;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Morrowind/options_tile.tcl 2;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Guitar/guitar.tcl 221;0 |
||||
/home/maks/Programs/Разработка/Scheme/tmp/factorial.ss 7;8 |
||||
/home/maks/Programs/Разработка/Qt4/MorrINI/main.cpp 2;0 |
||||
/home/maks/Programs/Разработка/Qt4/MorrINI/mainwindow.cpp 3;0 |
||||
/home/maks/Programs/Разработка/Perl/SlackLog/slacklog.pl 36;0 |
||||
/home/maks/Programs/Разработка/Pascal/ППИ/1-1/2/split.pas 50;0 |
||||
/home/maks/Programs/Разработка/HTML/l1/css/style.css 83;0 |
||||
/home/maks/Programs/Разработка/C++/+Tcl/main.cpp 11;16 |
||||
/home/maks/Programs/Разработка/Bash/weather.pl 2;0 |
||||
/home/maks/Programs/Разработка/Bash/uingen/uingen.sh 67;0 |
||||
/home/maks/Programs/Разработка/Bash/spamtools/spamtools.sh 342;0 |
||||
/home/maks/Programs/Разработка/Bash/nikto-1.35/nikto.sh 185;0 |
||||
/home/maks/Programs/Разработка/Bash/hash/gui.sh 14;0 |
||||
/home/maks/Programs/Разработка/Bash/SED_tetris/sedtris.sed 16;0 |
||||
/home/maks/.shellrc/config/vim/vimrc 295;0 |
||||
/home/maks/.shellrc/config/tcl/tclshrc 69;0 |
||||
/home/maks/.shellrc/config/tcl/tclsh-history 2464;0 |
||||
/home/maks/.shellrc/config/rc/usr/libexec/dhcpcd-hooks/newip2sms 7;52 |
||||
/home/maks/.shellrc/config/net/rtorrent/rtorrent.rc 22;0 |
||||
/home/maks/.shellrc/config/net/mcabber/mcabberrc 148;0 |
||||
/home/maks/.shellrc/config/memory/mem 49;0 |
||||
/home/maks/.shellrc/config/media/ncmpcpp/config 21;0 |
||||
/home/maks/.shellrc/config/media/mpd/mpd.conf 42;0 |
||||
/home/maks/.shellrc/config/mail/fetchmail/fetchmailrc 27;0 |
||||
/home/maks/.shellrc/config/mail/mutt/sidebar.mutt 14;0 |
||||
/home/maks/.shellrc/config/mail/mutt/colors.mutt 20;0 |
||||
/home/maks/.shellrc/config/mail/mutt/header.mutt 24;0 |
||||
/home/maks/.shellrc/config/mail/mutt/keys.mutt 17;0 |
||||
/home/maks/.shellrc/config/mail/mutt/muttrc 4;1 |
||||
/home/maks/.shellrc/config/mail/mailcap/mailcap 3;8 |
||||
/home/maks/.shellrc/config/htop/htoprc 23;0 |
||||
/home/maks/.shellrc/config/guile/guile 8;0 |
||||
/home/maks/.shellrc/bin/color_cmake.sh 22;0 |
||||
/home/maks/.shellrc/bin/checkmail 5;0 |
||||
/home/maks/.shellrc/bin/books 37;0 |
||||
/home/maks/.shellrc/autostart/autostart 5;0 |
||||
/home/maks/.shellrc/install.sh.13-01-2010.15:08:44.bak 66;0 |
||||
/home/maks/.snownews/colors 18;9 |
||||
/home/maks/.snownews/keybindings 2;0 |
||||
/home/maks/.shellrc/config/net/snownews/scripts/atom2rss 71;0 |
||||
/home/maks/.shellrc/bin/ip2sms 3;17 |
||||
/home/maks/.shellrc/bin/hv3 3;44 |
||||
/home/maks/.shellrc/bin/color_conf.sh 4;0 |
||||
/home/maks/.shellrc/bin/allcolors 65;0 |
||||
/home/maks/.shellrc/config/X/Xdefaults 30;0 |
||||
/home/maks/.shellrc/config/mail/sendemail 563;0 |
||||
/home/maks/.snownews/browser 1;8 |
||||
/home/maks/Programs/Разработка/C++/Стивен Прата/Глава 8/8-6.cpp 52;0 |
||||
/home/maks/Programs/Разработка/C++/morse/morse.cpp 2;0 |
||||
/home/maks/Programs/Разработка/C++/UIN_PASS/uin_pass.cpp 39;0 |
||||
/home/maks/Programs/Разработка/HTML/l1/index.html 4;0 |
||||
/home/maks/Programs/Разработка/C++/MD5gen/md5gen.cpp 17;0 |
||||
/etc/exports 6;12 |
||||
/etc/rc.d/rc.inet1 154;0 |
||||
/etc/rc.d/rc.inet1.conf 91;0 |
||||
/etc/rc.d/rc.inetd 2;0 |
||||
/etc/rc.d/rc.rpc 20;0 |
||||
/etc/rc.d/init.d/README.functions 11;8 |
||||
/etc/rc.d/init.d/functions 1;8 |
||||
/etc/rc.d/rc.inet2 138;0 |
||||
/etc/rc.d/rc.nfsd 99;0 |
||||
/media/MEDIA/TMP/LaTeX/Шаблоны/title.tex 62;0 |
||||
/home/maks/.shellrc/templates/main.tex 12;0 |
||||
/usr/share/autostart/wicd-tray.desktop 5;0 |
||||
/usr/share/autostart/restore_kmix_volumes.desktop 9;0 |
||||
/usr/share/autostart/korgac.desktop 44;0 |
||||
/usr/share/autostart/kabcdistlistupdater.desktop 69;0 |
||||
/usr/share/autostart/guidance-power-manager.desktop 66;0 |
||||
/etc/inittab 72;0 |
||||
/etc/rc.d/rc.wicd 53;0 |
||||
/etc/rc.d/rc.local 24;0 |
||||
/etc/rc.d/rc.keymap 1;8 |
||||
/etc/rc.d/rc.font.new 1;8 |
||||
/etc/rc.d/rc.font 10;0 |
||||
/etc/rc.d/rc.M 260;1 |
||||
/home/maks/.ezdit/ezdit.conf 68;0 |
||||
/home/maks/logs/irc.rusnet.org.ru.log 58;0 |
||||
/etc/profile 29;24 |
||||
/home/maks/.xsession-errors 846;0 |
||||
/home/maks/hello.hs 1;9 |
||||
/home/maks/ion/ion.SlackBuild 6;3 |
||||
/home/maks/ion/README 2;0 |
||||
/home/maks/ghc-6.10.4/Makefile 4;0 |
||||
/home/maks/ghc-6.10.4/ANNOUNCE 109;0 |
||||
/home/maks/ghc-6.10.4/utils/Makefile 121;0 |
||||
/home/maks/ghc-6.10.4/INSTALL 41;0 |
||||
/home/maks/ghc-6.10.4/README 2;0 |
||||
/var/slapt-get/packages/gcc-4.4.2/install/doinst.sh 30;9 |
||||
/home/maks/ghc-6.10.4/mk/install.mk 90;0 |
||||
/boot/README.initrd 2;0 |
||||
/var/slapt-get/slackware/l/install/doinst.sh 192;6 |
||||
/home/maks/constructor/locale.dir 88;0 |
||||
/home/maks/constructor/locale.alias 51;0 |
||||
/home/maks/constructor/l_alias.glibc 74;0 |
||||
/home/maks/constructor/fstab.cdrw 4;0 |
||||
/home/maks/constructor/fonts.conf 67;0 |
||||
/home/maks/constructor/doinst.sh 4;6 |
||||
/etc/X11/xorg.conf 67;25 |
||||
/var/slapt-get/slackware/a/install/doinst.sh 31;0 |
||||
/etc/rc.d/rc.modules-2.6.32.2-smp 67;0 |
||||
/var/slapt-get/slackware/d/install/doinst.sh 2;6 |
||||
/home/maks/edcucumber-read-only/cucumber.tcl 16;0 |
||||
/home/maks/DeskCal/DeskCal.tcl 72;0 |
||||
/home/maks/tcltext2.3/tcltext.tcl 1;9 |
||||
/home/maks/tdict-1.1/README.tdict.1.1 50;0 |
||||
/home/maks/tcltext2.3/README 5;0 |
||||
/home/maks/tcltext2.3/nonguiinstall.sh 2;0 |
||||
/home/maks/htmlwidget/tclconfig/tcl.m4 81;0 |
||||
/home/maks/htmlwidget/hv/hv3_file.tcl 131;0 |
||||
/home/maks/.tclshrc 2;30 |
||||
/var/slapt-get/slackware/xap/install/doinst.sh 4;6 |
||||
/home/maks/.vim/after/syntax/css.vim 112;0 |
||||
/var/slapt-get/slackware/tcl/install/doinst.sh 416;9 |
||||
/home/maks/Downloads/TORRENTS/_СКАЧАНО_/simpsons/01-й сезон/MULTINFO.TXT 1;1 |
||||
/home/maks/.wicd/WHEREAREMYFILES 22;0 |
||||
/home/maks/Programs/Media/tuxguitar-1.0-jet/tuxguitar 28;0 |
||||
/home/maks/.cache/guile/ccache/1.9-0.D-LE-4/usr/share/guile/1.9/ice-9/readline.scm.go 123;32 |
||||
/home/maks/.vim/template/scheme.vim 4;0 |
||||
/home/maks/.vim/template/ss.vim 1;20 |
||||
/home/maks/.vim/ftdetect/detect.vim 7;0 |
||||
/home/maks/.vim/template/scm.vim 3;0 |
||||
/home/maks/.vim/template/tcl.vim 3;0 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-42.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-41.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-31.ss 2;2 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-27.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-23.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-22.ss 2;2 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-17.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-16.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-12.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-11.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-08.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-07.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-03.ss 1;20 |
||||
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-02.ss 1;19 |
||||
/home/maks/.vim/ftplugin/scheme/scheme.vim 2;12 |
||||
/home/maks/.vim/syntax/scheme.vim 34;0 |
||||
/home/maks/plt-4.2.2/src/build/foreign/Makefile 30;13 |
||||
/home/maks/plt-4.2.2/src/build/mred/Makefile 376;13 |
||||
/home/maks/plt-4.2.2/src/build/mzscheme/Makefile 359;13 |
||||
/home/maks/plt-4.2.2/src/build/Makefile 178;34 |
||||
/home/maks/plt-4.2.2/src/README 132;0 |
||||
/home/maks/guile-1.9.4/NEWS 7139;13 |
||||
/home/maks/guile-1.9.4/HACKING 345;0 |
||||
/home/maks/guile-1.9.4/GUILE-VERSION 2;0 |
||||
/home/maks/guile-1.9.4/ChangeLog 110;0 |
||||
/usr/include/limits.h 123;0 |
||||
/home/maks/Programs/Разработка/Scripts/index.html 87;0 |
||||
/home/maks/Programs/Разработка/Scripts/shells/DxShell.php 2032;0 |
||||
/home/maks/Programs/Разработка/Scripts/myscripts/flood.sh 53;0 |
||||
/home/maks/Programs/Разработка/Scripts/brut/passwd_to_file.pl 5;0 |
||||
/home/maks/Programs/Разработка/Scripts/SMS/index.html 2;0 |
||||
/home/maks/Programs/Разработка/Scheme/tmp/clock.ss 18;15 |
||||
/home/maks/Programs/Разработка/Qt4/GUI/form1.cpp 898;0 |
||||
/home/maks/Programs/Разработка/Bash/hash/table.sh 43;0 |
||||
/etc/slackpkg/slackpkg.conf 80;0 |
||||
/etc/skel/.screenrc 2;0 |
||||
/etc/mutt/mime.types 84;0 |
||||
/etc/mutt/Muttrc 197;0 |
||||
/etc/hp/hplip.conf 38;0 |
||||
/etc/rpc 70;0 |
||||
/etc/sensors3.conf 352;0 |
||||
/etc/shadow 26;0 |
||||
/etc/sudoers 19;1 |
||||
/etc/termcap 41;0 |
||||
/etc/wgetrc 100;0 |
||||
/etc/inetd.conf 110;0 |
||||
/etc/lynx.cfg 131;0 |
||||
/etc/fstab 8;0 |
||||
/home/maks/Programs/Разработка/Perl/proxycheck.pl 4;0 |
||||
/home/maks/Programs/Разработка/Perl/proxycheck.pl~ 12;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Music/1_old.tcl 610;0 |
||||
/home/maks/.recently-used 23;14 |
||||
/home/maks/.2mandvd/logfile.txt 10;0 |
||||
/home/maks/imagination-2.1/src/support.c 23;27 |
||||
/home/maks/imagination-2.1.tar.gz#utar/imagination-2.1/src/support.c 24;0 |
||||
/home/maks/imagination.SlackBuild 115;0 |
||||
/var/slapt-get/multimedia/imagination/2.1/install/doinst.sh 6;0 |
||||
/home/maks/imagination-2.1/icons/Makefile 49;0 |
||||
/home/maks/imagination-2.1/Makefile 17;0 |
||||
/home/maks/imagination-2.1/INSTALL 2;0 |
||||
/home/maks/imagination-2.1/README 11;0 |
||||
/home/maks/imagination-2.1/transitions/Makefile.in 48;0 |
||||
/home/maks/imagination-2.1/transitions/Makefile.am 5;0 |
||||
/home/maks/oleaut32.zip#uzip/readme.txt 43;0 |
||||
/media/MEDIA/Видео/Сериалы/CSI. Майами/3 Сезон/done.txt 10;24 |
||||
/home/maks/.shellrc/config/cw/def/g++ 2;12 |
||||
/usr/lib/gcc/i486-slackware-linux/4.4.2/specs 21;0 |
||||
/home/maks/Programs/Разработка/Tcl/Soft/Разное/tcl2html.tcl 137;0 |
||||
/home/maks/Programs/Разработка/Tcl/Soft/Настройки/Prompt/prompt.tcl 62;0 |
||||
/home/maks/Programs/Разработка/Tcl/Soft/Пакеты/Snack/snack.pdf 122;0 |
||||
/home/maks/Programs/Разработка/Tcl/src/Music/Backup/1.tcl.06-06-2009.bak 328;0 |
||||
/home/maks/Programs/Разработка/Scheme/tmp/test.ss 1;40 |
||||
/home/maks/test.ss 9;0 |
||||
/home/maks/laptopconf/01-touchpad.rules 1;8 |
||||
/etc/rc.d/rc.modules 316;9 |
||||
/etc/rc.d/rc.acpid 8;29 |
||||
/etc/rc.d/rc.S 366;8 |
||||
/etc/rc.d/rc.udev 1;8 |
||||
/etc/rc.d/rc.slapt-update-notifier 15;8 |
||||
/etc/rc.d/rc.modules-2.6.29.6-smp 44;8 |
||||
/etc/rc.d/rc.messagebus 1;8 |
||||
/etc/bluetooth/network.conf 38;8 |
||||
/etc/rc.d/rc.bluetooth 115;8 |
||||
/etc/rc.d/rc.sysvinit 2;9 |
||||
/home/maks/gtk-qt-engine-0.8-i486-2.tgz#utar/usr/share/themes/Qt/gtk-2.0/gtkrc 1;8 |
||||
/install/data.xml 1;8 |
||||
/home/maks/man-1.6f-i486-2.tgz#utar/install/doinst.sh 1;8 |
||||
/home/maks/man-1.6f-i486-2.tgz#utar/install/slack-required 1;8 |
||||
/home/maks/man-1.6f-i486-2.tgz#utar/usr/share/locale/ru/man 49;8 |
||||
/home/maks/man-pages-3.15-noarch-1.tgz#utar/install/doinst.sh 8;16 |
||||
/usr/man/README 1;8 |
||||
/usr/man/whatis 10;8 |
||||
/home/maks/man-pages-ru-4.2-noarch-1.tgz#utar/install/slack-desc 1;24 |
||||
/home/maks/man-pages-ru-4.2-noarch-1.tgz#utar/install/slack-required 1;11 |
||||
/etc/lilo.conf 64;28 |
||||
/home/maks/gtk-qt-engine-0.8-i486-2.tgz#utar/install/slack-required 38;8 |
||||
/home/maks/gtk-qt-engine-0.8-i486-2.tgz#utar/install/slack-desc 1;8 |
||||
/home/maks/man-pages-ru-4.2-noarch-1.tgz#utar/install/data.xml 3;8 |
||||
/home/maks/.shellrc/config/cw/def/figlet 2;19 |
||||
/home/maks/.shellrc/config/cw/def/df 2;0 |
||||
/home/maks/.shellrc/config/cw/def/date 4;0 |
||||
/home/maks/.shellrc/config/cw/def/arp 8;2 |
||||
/home/maks/.shellrc/config/cw/def/arping 11;0 |
||||
/home/maks/.shellrc/config/cw/def/cal 8;0 |
||||
/home/maks/.procmailrc 24;0 |
||||
/home/maks/TMP/printable.aspx.tar.bz2#utar/printable.aspx 57;0 |
||||
/home/maks/.shellrc/config/media/mpd/mpd.log 49;0 |
||||
/home/maks/.shellrc/config/mail/mutt/boxes.mutt 23;0 |
||||
/home/maks/.shellrc/config/bash/inputrc 70;0 |
||||
/home/maks/.shellrc/config/bash/completion_addons 101;0 |
||||
/home/maks/.shellrc/config/bash/bashrc 158;0 |
||||
/home/maks/.shellrc/config/bash/aliases 1;46 |
||||
/home/maks/.shellrc/config/bash/DIR_COLORS 167;0 |
||||
/home/maks/.shellrc/config/net/hv3/hv3 16;0 |
||||
/home/maks/.shellrc/config/mc/history 350;0 |
||||
/home/maks/.shellrc/config/mcabber/mcabberrc 482;54 |
||||
/home/maks/.shellrc/config/mcabber/eventcmd 13;1 |
||||
/home/maks/.shellrc/config/mcabber/mcabber-notify.sh 13;70 |
||||
/home/maks/.xsession 8;0 |
||||
/home/maks/.xine/catalog.cache 1371;0 |
||||
/home/maks/.purple/blist.xml 55;0 |
||||
/home/maks/.ncftp/firewall 109;0 |
||||
/home/maks/.msf3/modcache 972;0 |
||||
/home/maks/.hplip/hplip.conf 2;0 |
||||
/home/maks/.bogofilter/wordlist.db 3;0 |
||||
/home/maks/.shellrc/mail/zone-x.ru 78529;0 |
||||
/home/maks/.shellrc/mail/spam-learn 70;0 |
||||
/home/maks/.shellrc/config/rc/etc/rc.d/rc.firewall 31;30 |
||||
/home/maks/.shellrc/mail/sms 118;0 |
||||
/home/maks/.shellrc/mail/new 1;1 |
||||
/home/maks/.shellrc/books/books.tc~ 2;0 |
||||
/home/maks/.shellrc/config/rc/40-newip 1;1 |
||||
/home/maks/.kde/Autostart/start.sh 5;0 |
||||
/home/maks/.shellrc/config/vim/vim/ftdetect/detect.vim 4;0 |
||||
/home/maks/.newsbeuter/urls 3;0 |
||||
/home/maks/.shellrc/config/rss/raggle/feeds.yaml 30;12 |
||||
/home/maks/Книги.tc#uzip/tellico.xml 147;0 |
||||
/home/maks/Книги.tc 3;0 |
||||
/home/maks/.spamassassin/user_prefs 5;25 |
||||
/home/maks/.kde/Autostart/Xmodmap 3;0 |
||||
/home/maks/.shellrc/autostart/Xmodmap 5;0 |
||||
/home/maks/.emacs 44;0 |
||||
/home/maks/muttrc-20020703_mike/.mutt-mike/folder 5;0 |
||||
/home/maks/muttrc-20020703_mike/.mutt-mike/alias 4;0 |
||||
/home/maks/muttrc-20020703_mike/.mutt-mike/set 18;0 |
||||
/home/maks/muttrc-20020703_mike/.procmailrc-mike 123;0 |
||||
/home/maks/.fetchmailrc 42;0 |
||||
/home/maks/.shellrc/config/firewall/rc.firewall 48;0 |
||||
/home/maks/Mail/.inbox.directory/Makslih@mail.ru/..mbox 1158;0 |
||||
/home/maks/.shellrc/mail/inbox 10090;12 |
@ -1,152 +0,0 @@
@@ -1,152 +0,0 @@
|
||||
[Midnight-Commander] |
||||
verbose=1 |
||||
pause_after_run=1 |
||||
shell_patterns=1 |
||||
auto_save_setup=1 |
||||
preallocate_space=0 |
||||
auto_menu=0 |
||||
use_internal_view=1 |
||||
use_internal_edit=0 |
||||
clear_before_exec=1 |
||||
confirm_delete=1 |
||||
confirm_overwrite=1 |
||||
confirm_execute=0 |
||||
confirm_history_cleanup=1 |
||||
confirm_exit=1 |
||||
confirm_directory_hotlist_delete=1 |
||||
safe_delete=0 |
||||
mouse_repeat_rate=100 |
||||
double_click_speed=250 |
||||
use_8th_bit_as_meta=0 |
||||
confirm_view_dir=0 |
||||
mouse_move_pages_viewer=1 |
||||
mouse_close_dialog=0 |
||||
fast_refresh=0 |
||||
drop_menus=0 |
||||
wrap_mode=1 |
||||
old_esc_mode=0 |
||||
old_esc_mode_timeout=1000000 |
||||
cd_symlinks=1 |
||||
show_all_if_ambiguous=0 |
||||
max_dirt_limit=10 |
||||
use_file_to_guess_type=1 |
||||
alternate_plus_minus=0 |
||||
only_leading_plus_minus=1 |
||||
show_output_starts_shell=0 |
||||
xtree_mode=0 |
||||
num_history_items_recorded=60 |
||||
file_op_compute_totals=1 |
||||
classic_progressbar=1 |
||||
vfs_timeout=60 |
||||
ftpfs_directory_timeout=900 |
||||
use_netrc=1 |
||||
ftpfs_retry_seconds=30 |
||||
ftpfs_always_use_proxy=0 |
||||
ftpfs_use_passive_connections=1 |
||||
ftpfs_use_passive_connections_over_proxy=0 |
||||
ftpfs_use_unix_list_options=1 |
||||
ftpfs_first_cd_then_ls=1 |
||||
fish_directory_timeout=900 |
||||
editor_tab_spacing=8 |
||||
editor_word_wrap_line_length=72 |
||||
editor_fill_tabs_with_spaces=0 |
||||
editor_return_does_auto_indent=1 |
||||
editor_backspace_through_tabs=0 |
||||
editor_fake_half_tabs=1 |
||||
editor_option_save_mode=0 |
||||
editor_option_save_position=1 |
||||
editor_option_auto_para_formatting=0 |
||||
editor_option_typewriter_wrap=0 |
||||
editor_edit_confirm_save=1 |
||||
editor_syntax_highlighting=1 |
||||
editor_persistent_selections=1 |
||||
editor_cursor_beyond_eol=0 |
||||
editor_cursor_after_inserted_block=0 |
||||
editor_visible_tabs=1 |
||||
editor_visible_spaces=1 |
||||
editor_line_state=0 |
||||
editor_simple_statusbar=0 |
||||
editor_check_new_line=0 |
||||
editor_show_right_margin=0 |
||||
editor_group_undo=0 |
||||
editor_ask_filename_before_edit=0 |
||||
nice_rotating_dash=1 |
||||
mcview_remember_file_position=0 |
||||
auto_fill_mkdir_name=1 |
||||
copymove_persistent_attr=1 |
||||
select_flags=6 |
||||
editor_backup_extension=~ |
||||
editor_filesize_threshold=64M |
||||
mcview_eof= |
||||
ignore_ftp_chattr_errors=true |
||||
skin=default |
||||
|
||||
editor_drop_selection_on_copy=1 |
||||
editor_stop_format_chars=-+*\\,.;:&> |
||||
|
||||
[Layout] |
||||
message_visible=0 |
||||
keybar_visible=0 |
||||
xterm_title=0 |
||||
output_lines=0 |
||||
command_prompt=1 |
||||
menubar_visible=0 |
||||
free_space=1 |
||||
horizontal_split=0 |
||||
vertical_equal=1 |
||||
left_panel_size=61 |
||||
horizontal_equal=1 |
||||
top_panel_size=1 |
||||
|
||||
[Misc] |
||||
timeformat_recent=%b %e %H:%M |
||||
timeformat_old=%b %e %Y |
||||
ftp_proxy_host=gate |
||||
ftpfs_password=anonymous@ |
||||
display_codepage=UTF-8 |
||||
source_codepage=Other_8_bit |
||||
autodetect_codeset= |
||||
spell_language=en |
||||
clipboard_store= |
||||
clipboard_paste= |
||||
|
||||
[Colors] |
||||
base_color= |
||||
linux= |
||||
color_terminals= |
||||
|
||||
xterm-256color= |
||||
|
||||
xterm= |
||||
|
||||
[Panels] |
||||
show_mini_info=true |
||||
kilobyte_si=false |
||||
mix_all_files=false |
||||
show_backups=true |
||||
show_dot_files=true |
||||
fast_reload=false |
||||
fast_reload_msg_shown=false |
||||
mark_moves_down=true |
||||
reverse_files_only=true |
||||
auto_save_setup_panels=false |
||||
navigate_with_arrows=true |
||||
panel_scroll_pages=true |
||||
mouse_move_pages=true |
||||
filetype_mode=true |
||||
permission_mode=false |
||||
torben_fj_mode=false |
||||
quick_search_mode=2 |
||||
|
||||
simple_swap=false |
||||
|
||||
select_flags=6 |
||||
|
||||
[HotlistConfig] |
||||
expanded_view_of_groups=0 |
||||
|
||||
[Panelize] |
||||
Изменённые файлы под контролем git=git ls-files --modified |
||||
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print |
||||
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print |
||||
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm /011 \\) -o \\( -perm -02000 -a -perm /01 \\) \\) -print |
@ -1,110 +0,0 @@
@@ -1,110 +0,0 @@
|
||||
|
||||
[Midnight-Commander] |
||||
show_backups=1 |
||||
show_dot_files=1 |
||||
verbose=1 |
||||
mark_moves_down=1 |
||||
pause_after_run=1 |
||||
shell_patterns=1 |
||||
auto_save_setup=1 |
||||
auto_menu=0 |
||||
use_internal_view=1 |
||||
use_internal_edit=0 |
||||
clear_before_exec=1 |
||||
mix_all_files=0 |
||||
fast_reload=0 |
||||
fast_reload_msg_shown=0 |
||||
confirm_delete=1 |
||||
confirm_overwrite=1 |
||||
confirm_execute=0 |
||||
confirm_exit=1 |
||||
confirm_directory_hotlist_delete=1 |
||||
safe_delete=0 |
||||
mouse_repeat_rate=100 |
||||
double_click_speed=250 |
||||
use_8th_bit_as_meta=0 |
||||
confirm_view_dir=0 |
||||
mouse_move_pages=1 |
||||
mouse_move_pages_viewer=1 |
||||
mouse_close_dialog=0 |
||||
fast_refresh=0 |
||||
navigate_with_arrows=1 |
||||
drop_menus=0 |
||||
wrap_mode=1 |
||||
old_esc_mode=0 |
||||
cd_symlinks=1 |
||||
show_all_if_ambiguous=0 |
||||
max_dirt_limit=10 |
||||
torben_fj_mode=0 |
||||
use_file_to_guess_type=1 |
||||
alternate_plus_minus=0 |
||||
only_leading_plus_minus=1 |
||||
show_output_starts_shell=0 |
||||
panel_scroll_pages=1 |
||||
xtree_mode=0 |
||||
num_history_items_recorded=60 |
||||
file_op_compute_totals=1 |
||||
skip_check_codeset=0 |
||||
vfs_timeout=60 |
||||
ftpfs_directory_timeout=900 |
||||
use_netrc=1 |
||||
ftpfs_retry_seconds=30 |
||||
ftpfs_always_use_proxy=0 |
||||
ftpfs_use_passive_connections=1 |
||||
ftpfs_use_unix_list_options=1 |
||||
ftpfs_first_cd_then_ls=1 |
||||
fish_directory_timeout=900 |
||||
editor_word_wrap_line_length=72 |
||||
editor_key_emulation=0 |
||||
editor_tab_spacing=8 |
||||
editor_fill_tabs_with_spaces=0 |
||||
editor_return_does_auto_indent=1 |
||||
editor_backspace_through_tabs=0 |
||||
editor_fake_half_tabs=1 |
||||
editor_option_save_mode=0 |
||||
editor_option_save_position=1 |
||||
editor_option_auto_para_formatting=0 |
||||
editor_option_typewriter_wrap=0 |
||||
editor_edit_confirm_save=1 |
||||
editor_syntax_highlighting=1 |
||||
editor_persistent_selections=1 |
||||
editor_visible_tabs=1 |
||||
editor_visible_spaces=1 |
||||
editor_line_state=0 |
||||
editor_simple_statusbar=0 |
||||
nice_rotating_dash=1 |
||||
horizontal_split=0 |
||||
mcview_remember_file_position=0 |
||||
auto_fill_mkdir_name=0 |
||||
editor_backup_extension=~ |
||||
|
||||
[Layout] |
||||
equal_split=1 |
||||
first_panel_size=78 |
||||
message_visible=0 |
||||
keybar_visible=0 |
||||
xterm_title=1 |
||||
output_lines=0 |
||||
command_prompt=1 |
||||
menubar_visible=0 |
||||
show_mini_info=1 |
||||
permission_mode=1 |
||||
filetype_mode=1 |
||||
free_space=1 |
||||
|
||||
[Misc] |
||||
ftp_proxy_host=gate |
||||
find_ignore_dirs= |
||||
ftpfs_password=anonymous@ |
||||
display_codepage=UTF-8 |
||||
source_codepage=UTF-8 |
||||
|
||||
[Colors] |
||||
base_color= |
||||
xterm= |
||||
color_terminals= |
||||
|
||||
[Panelize] |
||||
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print |
||||
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print |
||||
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm +011 \\) -o \\( -perm -02000 -a -perm +01 \\) \\) -print |
@ -1,143 +0,0 @@
@@ -1,143 +0,0 @@
|
||||
|
||||
[Midnight-Commander] |
||||
show_backups=1 |
||||
show_dot_files=1 |
||||
verbose=1 |
||||
mark_moves_down=1 |
||||
pause_after_run=1 |
||||
shell_patterns=1 |
||||
auto_save_setup=1 |
||||
auto_menu=0 |
||||
use_internal_view=1 |
||||
use_internal_edit=0 |
||||
clear_before_exec=1 |
||||
mix_all_files=0 |
||||
fast_reload=0 |
||||
fast_reload_msg_shown=0 |
||||
confirm_delete=1 |
||||
confirm_overwrite=1 |
||||
confirm_execute=0 |
||||
confirm_exit=1 |
||||
confirm_directory_hotlist_delete=1 |
||||
safe_delete=0 |
||||
mouse_repeat_rate=100 |
||||
double_click_speed=250 |
||||
use_8th_bit_as_meta=0 |
||||
confirm_view_dir=0 |
||||
mouse_move_pages=1 |
||||
mouse_move_pages_viewer=1 |
||||
mouse_close_dialog=0 |
||||
fast_refresh=0 |
||||
navigate_with_arrows=1 |
||||
drop_menus=0 |
||||
wrap_mode=1 |
||||
old_esc_mode=0 |
||||
cd_symlinks=1 |
||||
show_all_if_ambiguous=0 |
||||
max_dirt_limit=10 |
||||
torben_fj_mode=0 |
||||
use_file_to_guess_type=1 |
||||
alternate_plus_minus=0 |
||||
only_leading_plus_minus=1 |
||||
show_output_starts_shell=0 |
||||
panel_scroll_pages=1 |
||||
xtree_mode=0 |
||||
num_history_items_recorded=60 |
||||
file_op_compute_totals=1 |
||||
skip_check_codeset=0 |
||||
vfs_timeout=60 |
||||
ftpfs_directory_timeout=900 |
||||
use_netrc=1 |
||||
ftpfs_retry_seconds=30 |
||||
ftpfs_always_use_proxy=0 |
||||
ftpfs_use_passive_connections=1 |
||||
ftpfs_use_unix_list_options=1 |
||||
ftpfs_first_cd_then_ls=1 |
||||
fish_directory_timeout=900 |
||||
editor_word_wrap_line_length=72 |
||||
editor_key_emulation=0 |
||||
editor_tab_spacing=8 |
||||
editor_fill_tabs_with_spaces=0 |
||||
editor_return_does_auto_indent=1 |
||||
editor_backspace_through_tabs=0 |
||||
editor_fake_half_tabs=1 |
||||
editor_option_save_mode=0 |
||||
editor_option_save_position=1 |
||||
editor_option_auto_para_formatting=0 |
||||
editor_option_typewriter_wrap=0 |
||||
editor_edit_confirm_save=1 |
||||
editor_syntax_highlighting=1 |
||||
editor_persistent_selections=1 |
||||
editor_visible_tabs=1 |
||||
editor_visible_spaces=1 |
||||
editor_line_state=0 |
||||
editor_simple_statusbar=0 |
||||
nice_rotating_dash=1 |
||||
horizontal_split=0 |
||||
mcview_remember_file_position=0 |
||||
auto_fill_mkdir_name=0 |
||||
editor_backup_extension=~ |
||||
|
||||
[Layout] |
||||
equal_split=1 |
||||
first_panel_size=78 |
||||
message_visible=0 |
||||
keybar_visible=0 |
||||
xterm_title=1 |
||||
output_lines=0 |
||||
command_prompt=1 |
||||
menubar_visible=0 |
||||
show_mini_info=1 |
||||
permission_mode=1 |
||||
filetype_mode=1 |
||||
free_space=1 |
||||
|
||||
[Misc] |
||||
ftp_proxy_host=gate |
||||
find_ignore_dirs= |
||||
ftpfs_password=anonymous@ |
||||
display_codepage=UTF-8 |
||||
source_codepage=UTF-8 |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
xterm= |
||||
color_terminals= |
||||
|
||||
[Colors] |
||||
base_color=,black:normal=,black:selected=black,cyan:marked=,black:markselect=yellow,cyan:errors=white,red:menu=white,cyan:reverse=black,lightgray:dnormal=black,lightgray:dfocus=black,cyan:dhotnormal=blue,lightgray:dhotfocus=blue,cyan:viewunderline=,black:menuhot=yellow,cyan:menusel=white,black:menuhotsel=yellow,black:helpnormal=black,lightgray:helpitalic=red,lightgray:helpbold=blue,lightgray:helplink=black,cyan:helpslink=yellow,blue:gauge=white,black:input=black,cyan:directory=white,black:executable=brightgreen,black:link=cyan,black:stalelink=brightred,blue:device=,black:core=red,blue:special=red,black:editnormal=lightgray,black:editbold=yellow,blue:editmarked=black,cyan:errdhotnormal=yellow,red:errdhotfocus=yellow,lightgray |
||||
xterm= |
||||
color_terminals= |
||||
|
||||
[Panelize] |
||||
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print |
||||
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print |
||||
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm +011 \\) -o \\( -perm -02000 -a -perm +01 \\) \\) -print |
@ -1,747 +0,0 @@
@@ -1,747 +0,0 @@
|
||||
# Midnight Commander 3.0 extension file |
||||
# Warning: Structure of this file has changed completely with version 3.0 |
||||
# |
||||
# All lines starting with # or empty lines are thrown away. |
||||
# Lines starting in the first column should have following format: |
||||
# |
||||
# keyword/descNL, i.e. everything after keyword/ until new line is desc |
||||
# |
||||
# keyword can be: |
||||
# |
||||
# shell (desc is, when starting with a dot, any extension (no wildcars), |
||||
# i.e. matches all the files *desc . Example: .tar matches *.tar; |
||||
# if it doesn't start with a dot, it matches only a file of that name) |
||||
# |
||||
# shell/i (desc is, when starting with a dot, any extension (no wildcars), |
||||
# The same as shell but with case insensitive. |
||||
# |
||||
# regex (desc is an extended regular expression) |
||||
# Please note that we are using the GNU regex library and thus |
||||
# \| matches the literal | and | has special meaning (or) and |
||||
# () have special meaning and \( \) stand for literal ( ). |
||||
# |
||||
# regex/i (desc is an extended regular expression) |
||||
# The same as regex but with case insensitive. |
||||
# |
||||
# type (file matches this if `file %f` matches regular expression desc |
||||
# (the filename: part from `file %f` is removed)) |
||||
# |
||||
# type/i (file matches this if `file %f` matches regular expression desc) |
||||
# The same as type but with case insensitive. |
||||
# |
||||
# directory (matches any directory matching regular expression desc) |
||||
# |
||||
# include (matches an include directive) |
||||
# |
||||
# default (matches any file no matter what desc is) |
||||
# |
||||
# Other lines should start with a space or tab and should be in the format: |
||||
# |
||||
# keyword=commandNL (with no spaces around =), where keyword should be: |
||||
# |
||||
# Open (if the user presses Enter or doubleclicks it), |
||||
# |
||||
# View (F3), Edit (F4) |
||||
# |
||||
# Include is the keyword used to add any further entries from an include/ |
||||
# section |
||||
# |
||||
# command is any one-line shell command, with the following substitutions: |
||||
# |
||||
# %% -> % character |
||||
# %p -> name of the current file (without path, but pwd is its path). |
||||
# Also provided to external application as MC_EXT_BASENAME |
||||
# global variable |
||||
# %f -> name of the current file. Unlike %p, if file is located on a |
||||
# non-local virtual filesystem, i.e. either tarfs or ftpfs, |
||||
# then the file will be temporarily copied into a local directory |
||||
# and %f will be the full path to this local temporal file. |
||||
# If you don't want to get a local copy and want to get the |
||||
# virtual fs path (like /#ftp:ftp.cvut.cz/pub/hungry/xword), then |
||||
# use %d/%p instead of %f. |
||||
# Also provided to external application as MC_EXT_FILENAME |
||||
# global variable |
||||
# %d -> name of the current directory (pwd, without trailing slash) |
||||
# Also provided to external application as MC_EXT_CURRENTDIR |
||||
# global variable |
||||
# %s -> "selected files", i.e. space separated list of tagged files if any |
||||
# or name of the current file. |
||||
# Also provided to external application as MC_EXT_SELECTED |
||||
# global variable |
||||
# %t -> list of tagged files |
||||
# Also provided to external application as MC_EXT_ONLYTAGGED |
||||
# global variable |
||||
# %u -> list of tagged files (they'll be untaged after the command) |
||||
# |
||||
# (If these 6 letters are in uppercase, they refer to the other panel. |
||||
# But you shouldn't have to use it in this file.) |
||||
# |
||||
# |
||||
# %cd -> the rest is a path mc should change into (cd won't work, since it's |
||||
# a child process). %cd handles even vfs names. |
||||
# |
||||
# %view -> the command you type will be piped into mc's internal file viewer |
||||
# if you type only the %view and no command, viewer will load %f file |
||||
# instead (i.e. no piping, so it is different to %view cat %f) |
||||
# %view may be directly followed by {} with a list of any of |
||||
# ascii (Ascii mode), hex (Hex mode), nroff (color highlighting for |
||||
# text using backspace for bold and underscore) and unform |
||||
# (no highlighting for nroff sequences) separated by commas. |
||||
# |
||||
# %var -> You use it like this: %var{VAR:default}. This macro will expand |
||||
# to the value of the VAR variable in the environment if it's set |
||||
# otherwise the value in default will be used. This is similar to |
||||
# the Bourne shell ${VAR-default} construct. |
||||
# |
||||
# Rules are applied from top to bottom, thus the order is important. |
||||
# If some actions are missing, search continues as if this target didn't |
||||
# match (i.e. if a file matches the first and second entry and View action |
||||
# is missing in the first one, then on pressing F3 the View action from |
||||
# the second entry will be used. default should catch all the actions. |
||||
# |
||||
# Any new entries you develop for you are always welcome if they are |
||||
# useful on more than one system. You can post your modifications |
||||
# as tickets at www.midnight-commander.org |
||||
|
||||
|
||||
### Changes ### |
||||
# |
||||
# Reorganization: 2012-03-07 Slava Zanko <slavazanko@gmail.com> |
||||
|
||||
|
||||
### GIT Repo ### |
||||
# gitfs changeset |
||||
regex/^\[git\] |
||||
Open=%cd %p/changesetfs:// |
||||
View=%cd %p/patchsetfs:// |
||||
|
||||
### Archives ### |
||||
|
||||
# .tgz, .tpz, .tar.gz, .tar.z, .tar.Z, .ipk, .gem |
||||
regex/\.t([gp]?z|ar\.g?[zZ])$|\.ipk$|\.gem$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.gz |
||||
|
||||
shell/.tar.bz |
||||
# Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.bzip |
||||
|
||||
regex/\.t(ar\.bz2|bz2?|b2)$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.bzip2 |
||||
|
||||
# .tar.lzma, .tlz |
||||
regex/\.t(ar\.lzma|lz)$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.lzma |
||||
|
||||
# .tar.xz, .txz |
||||
regex/\.t(ar\.xz|xz)$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.xz |
||||
|
||||
# .tar.F - used in QNX |
||||
shell/.tar.F |
||||
# Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.F |
||||
|
||||
# .qpr/.qpk - QNX Neutrino package installer files |
||||
regex/\.qp[rk]$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.qpr |
||||
|
||||
# tar |
||||
shell/i/.tar |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar |
||||
|
||||
# lha |
||||
type/^LHa\ .*archive |
||||
Open=%cd %p/ulha:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view lha |
||||
|
||||
# arj |
||||
regex/i/\.a(rj|[0-9][0-9])$ |
||||
Open=%cd %p/uarj:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view arj |
||||
|
||||
# cab |
||||
shell/i/.cab |
||||
Open=%cd %p/ucab:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cab |
||||
|
||||
# ha |
||||
shell/i/.ha |
||||
Open=%cd %p/uha:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view ha |
||||
|
||||
# rar |
||||
regex/i/\.r(ar|[0-9][0-9])$ |
||||
Open=%cd %p/urar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view rar |
||||
|
||||
# ALZip |
||||
shell/i/.alz |
||||
Open=%cd %p/ualz:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view alz |
||||
|
||||
# cpio |
||||
shell/.cpio.Z |
||||
Open=%cd %p/ucpio:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.z |
||||
|
||||
shell/.cpio.xz |
||||
Open=%cd %p/ucpio:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.xz |
||||
|
||||
shell/.cpio.gz |
||||
Open=%cd %p/ucpio:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.gz |
||||
|
||||
shell/i/.cpio |
||||
Open=%cd %p/ucpio:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio |
||||
|
||||
# 7zip archives (they are not man pages) |
||||
shell/i/.7z |
||||
Open=%cd %p/u7z:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view 7z |
||||
|
||||
# patch |
||||
regex/\.(diff|patch)(\.bz2)$ |
||||
Open=%cd %p/patchfs:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||
|
||||
regex/\.(diff|patch)(\.(gz|Z))$ |
||||
Open=%cd %p/patchfs:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||
|
||||
# ls-lR |
||||
regex/(^|\.)ls-?lR(\.gz|Z|bz2)$ |
||||
Open=%cd %p/lslR:// |
||||
|
||||
# trpm |
||||
shell/.trpm |
||||
Open=%cd %p/trpm:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view trpm |
||||
|
||||
# RPM packages (SuSE uses *.spm for source packages) |
||||
regex/\.(src\.rpm|spm)$ |
||||
Open=%cd %p/rpm:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view src.rpm |
||||
|
||||
shell/.rpm |
||||
Open=%cd %p/rpm:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view rpm |
||||
|
||||
# deb |
||||
regex/\.u?deb$ |
||||
Open=%cd %p/deb:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view deb |
||||
|
||||
# dpkg |
||||
shell/.debd |
||||
Open=%cd %p/debd:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view debd |
||||
|
||||
# apt |
||||
shell/.deba |
||||
Open=%cd %p/deba:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view deba |
||||
|
||||
# ISO9660 |
||||
shell/i/.iso |
||||
Open=%cd %p/iso9660:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view iso9660 |
||||
|
||||
|
||||
regex/\.(diff|patch)$ |
||||
Open=%cd %p/patchfs:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view cat |
||||
|
||||
# ar library |
||||
regex/\.s?a$ |
||||
Open=%cd %p/uar:// |
||||
#Open=%view{ascii} ar tv %f |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view ar |
||||
|
||||
# gplib |
||||
shell/i/.lib |
||||
Open=%cd %p/ulib:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view lib |
||||
|
||||
|
||||
# Mailboxes |
||||
type/^ASCII\ mail\ text |
||||
Open=%cd %p/mailfs:// |
||||
|
||||
|
||||
### Sources ### |
||||
|
||||
# C/C++ |
||||
regex/i/\.(c|cc|cpp)$ |
||||
Include=editor |
||||
|
||||
# C/C++ header |
||||
regex/i/\.(h|hh|hpp)$ |
||||
Include=editor |
||||
|
||||
# Fortran |
||||
shell/i/.f |
||||
Include=editor |
||||
|
||||
# Assembler |
||||
regex/i/\.(s|asm)$ |
||||
Include=editor |
||||
|
||||
include/editor |
||||
Open=%var{EDITOR:vi} %f |
||||
|
||||
# .so libraries |
||||
regex/\.(so|so\.[0-9\.]*)$ |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view so |
||||
|
||||
# Object |
||||
type/^ELF |
||||
#Open=%var{PAGER:more} %f |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view elf |
||||
|
||||
### Documentation ### |
||||
|
||||
# Texinfo |
||||
#regex/\.(te?xi|texinfo)$ |
||||
|
||||
# GNU Info page |
||||
type/^Info\ text |
||||
Open=/usr/libexec/mc/ext.d/text.sh open info |
||||
|
||||
shell/.info |
||||
Open=/usr/libexec/mc/ext.d/text.sh open info |
||||
|
||||
# Exception: .3gp are video files not manual pages |
||||
shell/i/.3gp |
||||
Include=video |
||||
|
||||
# Manual page |
||||
regex/(([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])|\.man)$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man %var{PAGER:more} |
||||
|
||||
# Perl pod page |
||||
shell/.pod |
||||
Open=/usr/libexec/mc/ext.d/text.sh open pod %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view pod %var{PAGER:more} |
||||
|
||||
# Troff with me macros. |
||||
# Exception - "read.me" is not a nroff file. |
||||
shell/read.me |
||||
Open= |
||||
View= |
||||
|
||||
shell/.me |
||||
Open=/usr/libexec/mc/ext.d/text.sh open nroff.me %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view nroff.me %var{PAGER:more} |
||||
|
||||
# Troff with ms macros. |
||||
shell/.ms |
||||
Open=/usr/libexec/mc/ext.d/text.sh open nroff.ms %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view nroff.ms %var{PAGER:more} |
||||
|
||||
# Manual page - compressed |
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.g?[Zz]$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.gz %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.gz %var{PAGER:more} |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.bz %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.bz %var{PAGER:more} |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz2$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.bz2 %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.bz2 %var{PAGER:more} |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.lzma$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.lzma %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.lzma %var{PAGER:more} |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.xz$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.xz %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.xz %var{PAGER:more} |
||||
|
||||
# CHM |
||||
shell/i/.chm |
||||
Open=/usr/libexec/mc/ext.d/text.sh open chm |
||||
|
||||
### Images ### |
||||
|
||||
type/^GIF |
||||
Include=image |
||||
|
||||
type/^JPEG |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view jpeg |
||||
Include=image |
||||
|
||||
type/^PC\ bitmap |
||||
Include=image |
||||
|
||||
type/^PNG |
||||
Include=image |
||||
|
||||
type/^JNG |
||||
Include=image |
||||
|
||||
type/^MNG |
||||
Include=image |
||||
|
||||
type/^TIFF |
||||
Include=image |
||||
|
||||
type/^PBM |
||||
Include=image |
||||
|
||||
type/^PGM |
||||
Include=image |
||||
|
||||
type/^PPM |
||||
Include=image |
||||
|
||||
type/^Netpbm |
||||
Include=image |
||||
|
||||
shell/.xcf |
||||
Open=/usr/libexec/mc/ext.d/image.sh open xcf |
||||
|
||||
shell/.xbm |
||||
Open=/usr/libexec/mc/ext.d/image.sh open xbm |
||||
|
||||
shell/.xpm |
||||
Include=image |
||||
View=/usr/libexec/mc/ext.d/image.sh view xpm %f |
||||
|
||||
shell/.ico |
||||
Include=image |
||||
|
||||
shell/i/.svg |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view svg |
||||
Open=/usr/libexec/mc/ext.d/image.sh open svg |
||||
|
||||
include/image |
||||
Open=/usr/libexec/mc/ext.d/image.sh open ALL_FORMATS |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view ALL_FORMATS |
||||
|
||||
|
||||
### Sound files ### |
||||
|
||||
regex/i/\.(wav|snd|voc|au|smp|aiff|snd|m4a|ape|aac|wv)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open common |
||||
|
||||
regex/i/\.(mod|s3m|xm|it|mtm|669|stm|ult|far)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open mod |
||||
|
||||
shell/i/.waw22 |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open wav22 |
||||
|
||||
shell/i/.mp3 |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open mp3 |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view mp3 |
||||
|
||||
regex/i/\.og[gax]$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open ogg |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view ogg |
||||
|
||||
regex/i/\.(spx|flac)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open common |
||||
|
||||
regex/i/\.(midi?|rmid?)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open midi |
||||
|
||||
shell/i/.wma |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open wma |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view wma |
||||
|
||||
|
||||
### Play lists ### |
||||
|
||||
regex/i/\.(m3u|pls)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open playlist |
||||
|
||||
|
||||
### Video ### |
||||
|
||||
shell/i/.avi |
||||
Include=video |
||||
|
||||
regex/i/\.as[fx]$ |
||||
Include=video |
||||
|
||||
shell/i/.divx |
||||
Include=video |
||||
|
||||
shell/i/.mkv |
||||
Include=video |
||||
|
||||
regex/i/\.(mov|qt)$ |
||||
Include=video |
||||
|
||||
regex/i/\.(mp4|m4v|mpe?g)$ |
||||
Include=video |
||||
|
||||
# MPEG-2 TS container + H.264 codec |
||||
shell/i/.mts |
||||
Include=video |
||||
|
||||
shell/i/.ts |
||||
Include=video |
||||
|
||||
shell/i/.vob |
||||
Include=video |
||||
|
||||
shell/i/.wmv |
||||
Include=video |
||||
|
||||
regex/i/\.fl[icv]$ |
||||
Include=video |
||||
|
||||
shell/i/.ogv |
||||
Include=video |
||||
|
||||
regex/i/\.ra?m$ |
||||
Open=/usr/libexec/mc/ext.d/video.sh open ram |
||||
|
||||
# WebM |
||||
shell/i/.webm |
||||
Include=video |
||||
|
||||
type/WebM |
||||
Include=video |
||||
|
||||
include/video |
||||
Open=/usr/libexec/mc/ext.d/video.sh open ALL_FORMATS |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/video.sh view ALL_FORMATS |
||||
|
||||
|
||||
### Documents ### |
||||
|
||||
# Postscript |
||||
type/^PostScript |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open ps |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view ps |
||||
|
||||
# PDF |
||||
type/^PDF |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open pdf |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view pdf |
||||
|
||||
# html |
||||
regex/i/\.html?$ |
||||
Open=/usr/libexec/mc/ext.d/web.sh open html |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/web.sh view html |
||||
|
||||
# StarOffice 5.2 |
||||
shell/.sdw |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||
|
||||
# StarOffice 6 and OpenOffice.org formats |
||||
regex/i/\.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg)$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view odt |
||||
|
||||
# AbiWord |
||||
shell/.abw |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open abw |
||||
|
||||
# Gnumeric |
||||
shell/i/.gnumeric |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open gnumeric |
||||
|
||||
# Microsoft Word Document |
||||
regex/i/\.(do[ct]|wri)$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msdoc |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msdoc |
||||
type/^Microsoft\ Word |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msdoc |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msdoc |
||||
|
||||
# RTF document |
||||
shell/i/.rtf |
||||
Open=catdoc |
||||
View=%view{ascii} catdoc |
||||
|
||||
# Microsoft Excel Worksheet |
||||
regex/i/\.xl[sw]$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msxls |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msxls |
||||
type/^Microsoft\ Excel |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msxls |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msxls |
||||
|
||||
regex/i/\.(ppt|pps)$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msppt |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msppt |
||||
|
||||
# Use OpenOffice.org to open any MS Office documents |
||||
type/^Microsoft\ Office\ Document |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||
|
||||
# Framemaker |
||||
type/^FrameMaker |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open framemaker |
||||
|
||||
# DVI |
||||
shell/i/.dvi |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open dvi |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view dvi |
||||
|
||||
# TeX |
||||
shell/i/.tex |
||||
Include=editor |
||||
|
||||
# DjVu |
||||
regex/i/\.djvu?$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open djvu |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view djvu |
||||
|
||||
# Comic Books |
||||
regex/i/\.cb[zr]$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open comic |
||||
|
||||
# Epub |
||||
shell/i/.epub |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open epub |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view epub |
||||
|
||||
|
||||
### Miscellaneous ### |
||||
|
||||
# Compiled Java classes |
||||
shell/.class |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view javaclass |
||||
|
||||
# Makefile |
||||
regex/[Mm]akefile$ |
||||
Open=make -f %f %{Enter parameters} |
||||
|
||||
# Imakefile |
||||
shell/Imakefile |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open imakefile |
||||
|
||||
# Makefile.PL (MakeMaker) |
||||
regex/^Makefile.(PL|pl)$ |
||||
Open=%var{PERL:perl} %f |
||||
|
||||
# sqlite3.db |
||||
type/^SQLite 3.x database |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open sqlite |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view sqlite |
||||
|
||||
# dbf |
||||
shell/i/.dbf |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open dbf |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view dbf |
||||
|
||||
# REXX script |
||||
regex/\.(rexx?|cmd)$ |
||||
Open=rexx %f %{Enter parameters};echo "Press ENTER";read y |
||||
|
||||
# Disk images for Commodore computers (VIC20, C64, C128) |
||||
shell/i/.d64 |
||||
Open=%cd %p/uc1541:// |
||||
View=%view{ascii} c1541 %f -list |
||||
Extract=c1541 %f -extract |
||||
|
||||
# Glade, a user interface designer for GTK+ and GNOME |
||||
shell/i/.glade |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open glade |
||||
|
||||
# Gettext Catalogs |
||||
shell/.mo |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view mo |
||||
|
||||
# lyx |
||||
shell/i/.lyx |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open lyx |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view lyx |
||||
|
||||
# torrent |
||||
shell/i/.torrent |
||||
View=%view{ascii} ctorrent -x %f |
||||
|
||||
### Plain compressed files ### |
||||
|
||||
# ace |
||||
shell/i/.ace |
||||
Open=%cd %p/uace:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view ace |
||||
Extract=unace x %f |
||||
|
||||
# arc |
||||
shell/i/.arc |
||||
Open=%cd %p/uarc:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view arc |
||||
Extract=arc x %f '*' |
||||
Extract (with flags)=I=%{Enter any Arc flags:}; if test -n "$I"; then arc x $I %f; fi |
||||
|
||||
# zip |
||||
type/i/^zip\ archive |
||||
Open=%cd %p/uzip:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view zip |
||||
|
||||
# jar(zip) |
||||
type/i/^Java\ Jar\ file\ data\ \(zip\) |
||||
Open=%cd %p/uzip:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view zip |
||||
|
||||
# zoo |
||||
shell/i/.zoo |
||||
Open=%cd %p/uzoo:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view zoo |
||||
|
||||
# gzip |
||||
type/^gzip |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view gz %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||
|
||||
regex/\.(gz|Z)$ |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||
|
||||
# bzip2 |
||||
type/^bzip2 |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view bzip2 %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||
|
||||
regex/\.bz2?$ |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||
|
||||
# bzip |
||||
type/^bzip |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view bzip %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bzip |
||||
|
||||
# compress |
||||
type/^compress |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view gz %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||
|
||||
# lzma |
||||
regex/\.lzma$ |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view lzma %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view lzma |
||||
|
||||
# xz |
||||
regex/\.xz$ |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view xz %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view xz |
||||
|
||||
# Parity Archive |
||||
type/^Parity\ Archive\ Volume\ Set |
||||
Open=/usr/libexec/mc/ext.d/archive.sh open par2 |
||||
|
||||
### Default ### |
||||
|
||||
# Default target for anything not described above |
||||
default/* |
||||
Open= |
||||
View= |
||||
|
||||
|
||||
### EOF ### |
@ -1,151 +0,0 @@
@@ -1,151 +0,0 @@
|
||||
[skin] |
||||
description=Dark skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;black |
||||
selected=black;cyan |
||||
marked=yellow;black |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;blue |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;black |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=brightcyan;blue |
||||
dfocus=blue;cyan |
||||
dhotnormal=white; |
||||
dhotfocus=white;cyan |
||||
dtitle=white; |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightmagenta; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=brightblue; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightgreen; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=lightgray;blue |
||||
menuhot=white;blue |
||||
menusel=black;cyan |
||||
menuhotsel=white;cyan |
||||
menuinactive=black;white |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;black |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;white |
||||
editwhitespace=brightblue;black |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=white;blue |
||||
# editbg= |
||||
editframe=gray; |
||||
editframeactive=lightgray; |
||||
editframedrag=red; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewbold=yellow;black |
||||
viewunderline=brightred;black |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[buttonbar] |
||||
hotkey=red;white |
||||
button=black;white |
||||
|
||||
[statusbar] |
||||
_default_=black;white |
||||
|
||||
[popupmenu] |
||||
_default_=lightgray;blue |
||||
menusel=black;cyan |
||||
menutitle=lightgray;blue |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↑ |
||||
sort-sign-down=↓ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = ← |
||||
history-next-item-sign = → |
||||
history-show-list-sign = ↓ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
||||
|
@ -1,150 +0,0 @@
@@ -1,150 +0,0 @@
|
||||
[skin] |
||||
description=Dark Far skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=lightgray;black |
||||
selected=black;cyan |
||||
marked=yellow;black |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;blue |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;black |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=brightcyan;blue |
||||
dfocus=blue;cyan |
||||
dhotnormal=white; |
||||
dhotfocus=white;cyan |
||||
dtitle=white; |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightmagenta; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=brightblue; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightgreen; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=lightgray;blue |
||||
menuhot=white;blue |
||||
menusel=black;cyan |
||||
menuhotsel=white;cyan |
||||
menuinactive=black;white |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;black |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;white |
||||
editwhitespace=brightblue;black |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=white;blue |
||||
# editbg= |
||||
editframe=gray; |
||||
editframeactive=lightgray; |
||||
editframedrag=white; |
||||
window-state-char = ↕ |
||||
window-close-char = × |
||||
|
||||
[viewer] |
||||
viewbold=yellow;black |
||||
viewunderline=brightred;black |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[buttonbar] |
||||
hotkey=red;white |
||||
button=black;white |
||||
|
||||
[statusbar] |
||||
_default_=black;white |
||||
|
||||
[popupmenu] |
||||
_default_=lightgray;blue |
||||
menusel=black;cyan |
||||
menutitle=lightgray;blue |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↑ |
||||
sort-sign-down=↓ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = ← |
||||
history-next-item-sign = → |
||||
history-show-list-sign = ↓ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,138 +0,0 @@
@@ -1,138 +0,0 @@
|
||||
[skin] |
||||
description=Standard skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;blue |
||||
selected=black;cyan |
||||
marked=yellow;blue |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;lightgray |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;blue |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=black;lightgray |
||||
dfocus=black;cyan |
||||
dhotnormal=blue;lightgray |
||||
dhotfocus=blue;cyan |
||||
dtitle=blue;lightgray |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdtitle=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightgreen; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=black; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightmagenta; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=white;cyan |
||||
menuhot=yellow;cyan |
||||
menusel=white;black |
||||
menuhotsel=yellow;black |
||||
menuinactive=black;cyan |
||||
|
||||
[buttonbar] |
||||
hotkey=white;black |
||||
button=black;cyan |
||||
|
||||
[statusbar] |
||||
_default_=black;cyan |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;blue |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg=lightgray; |
||||
# editframe=lightgray; |
||||
editframeactive=white; |
||||
editframedrag=green; |
||||
window-state-char = * |
||||
window-close-char = X |
||||
|
||||
[viewer] |
||||
viewbold=yellow;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=white;cyan |
||||
menusel=yellow;black |
||||
menutitle=yellow;cyan |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ' |
||||
sort-sign-down = , |
||||
|
||||
[widget-panel] |
||||
filename-scroll-left-char = { |
||||
filename-scroll-right-char = } |
@ -1,137 +0,0 @@
@@ -1,137 +0,0 @@
|
||||
[skin] |
||||
description=Far-like skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=lightgray;blue |
||||
selected=black;cyan |
||||
marked=yellow;blue |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
commandlinemark=black;lightgray |
||||
disabled=gray;lightgray |
||||
reverse=black;lightgray |
||||
header=yellow;blue |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=black;lightgray |
||||
dfocus=black;cyan |
||||
dhotnormal=blue;lightgray |
||||
dhotfocus=blue;cyan |
||||
dtitle=blue;lightgray |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightgreen; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=black; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightmagenta; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=white;cyan |
||||
menuhot=yellow;cyan |
||||
menusel=white;black |
||||
menuhotsel=yellow;black |
||||
menuinactive=lightgray;blue |
||||
|
||||
[buttonbar] |
||||
hotkey=lightgray;blue |
||||
button=lightgray;blue |
||||
|
||||
[statusbar] |
||||
_default_=black;cyan |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;blue |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg= |
||||
# editframe= |
||||
editframeactive=white; |
||||
editframedrag=green; |
||||
window-state-char = * |
||||
window-close-char = X |
||||
|
||||
[viewer] |
||||
viewbold=yellow;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=white;cyan |
||||
menusel=white;black |
||||
menutitle=white;cyan |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ' |
||||
sort-sign-down = , |
||||
|
||||
[widget-panel] |
||||
filename-scroll-left-char = { |
||||
filename-scroll-right-char = } |
@ -1,156 +0,0 @@
@@ -1,156 +0,0 @@
|
||||
# Please, use this skin in UTF-8 system codepage only. |
||||
|
||||
[skin] |
||||
description=Enhanced standart skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=lightgray;blue |
||||
selected=black;cyan |
||||
marked=yellow;blue |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;lightgray |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;blue |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=black;lightgray |
||||
dfocus=black;cyan |
||||
dhotnormal=blue;lightgray |
||||
dhotfocus=blue;cyan |
||||
dtitle=blue;lightgray |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightgreen; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=black; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightmagenta; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=white;cyan |
||||
menuhot=yellow;cyan |
||||
menusel=white;black |
||||
menuhotsel=yellow;black |
||||
menuinactive=black;cyan |
||||
|
||||
[buttonbar] |
||||
hotkey=white;black |
||||
button=black;cyan |
||||
|
||||
[statusbar] |
||||
_default_=black;cyan |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;blue |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg= |
||||
# editframe= |
||||
editframeactive=lightgray; |
||||
editframedrag=cyan; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewbold=yellow;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=white;cyan |
||||
menusel=white;black |
||||
menutitle=white;cyan |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ↓ |
||||
sort-sign-down = ↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = ⋅ |
||||
hiddenfiles-sign-hide = • |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
|
@ -1,131 +0,0 @@
@@ -1,131 +0,0 @@
|
||||
[skin] |
||||
description=GoTaR @PLD Linux |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;black |
||||
selected=white;blue |
||||
marked=brightred; |
||||
markselect=yellow; |
||||
gauge=;yellow |
||||
input=brightgreen; |
||||
disabled=gray;blue |
||||
reverse=brightgreen;blue |
||||
header=brightred; |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=brightcyan;blue |
||||
dfocus=brightred;black |
||||
dhotnormal=brightred; |
||||
dhotfocus=yellow;black |
||||
dtitle=brightred; |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=brightgreen;blue |
||||
errdhotnormal=yellow; |
||||
errdhotfocus=yellow;blue |
||||
errdtitle=yellow; |
||||
|
||||
[filehighlight] |
||||
directory=brightcyan; |
||||
executable=brightgreen; |
||||
symlink=red; |
||||
hardlink= |
||||
stalelink=yellow;blue |
||||
device=green; |
||||
special=brightblue; |
||||
core=red; |
||||
temp=gray; |
||||
archive=cyan; |
||||
doc=brown; |
||||
source=green; |
||||
media=white; |
||||
graph=magenta; |
||||
database=; |
||||
|
||||
[menu] |
||||
_default_=brightgreen;black |
||||
menuhot=brightred; |
||||
menusel=brightcyan;blue |
||||
menuhotsel=yellow; |
||||
menuinactive=lightgray; |
||||
|
||||
[buttonbar] |
||||
hotkey=lightgray;black |
||||
button=white;blue |
||||
|
||||
[statusbar] |
||||
_default_=white;blue |
||||
|
||||
[help] |
||||
_default_=brightred;black |
||||
helpitalic=brightcyan; |
||||
helpbold=brightgreen; |
||||
helplink=white; |
||||
helpslink=yellow;blue |
||||
helptitle=brightgreen; |
||||
|
||||
[editor] |
||||
_default_=lightgray;black |
||||
editbold=yellow;blue |
||||
editmarked=brightgreen;red |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=brightgreen |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;blue |
||||
# editbg= |
||||
# editframe= |
||||
editframeactive=white; |
||||
editframedrag=green; |
||||
window-state-char = * |
||||
window-close-char = X |
||||
|
||||
[viewer] |
||||
viewbold=brightred;black |
||||
viewunderline=brightgreen;black |
||||
viewselected=yellow;black |
||||
|
||||
[diffviewer] |
||||
_default_=lightgray;black |
||||
added=brightgreen; |
||||
changedline=cyan; |
||||
changednew=yellow; |
||||
changed=;brown |
||||
removed=;blue |
||||
folder=brightblue; |
||||
error=white;red |
||||
|
||||
[popupmenu] |
||||
_default_=brightgreen;black |
||||
menusel=brightcyan;blue |
||||
menutitle=brightcyan;black |
||||
|
||||
[widget-panel] |
||||
filename-scroll-left-char = { |
||||
filename-scroll-right-char = } |
@ -1,129 +0,0 @@
@@ -1,129 +0,0 @@
|
||||
[skin] |
||||
description=mc-4.6 skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;blue |
||||
selected=black;cyan |
||||
marked=yellow;blue |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=black;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;lightgray |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;blue |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=black;lightgray |
||||
dfocus=black;cyan |
||||
dhotnormal=blue;lightgray |
||||
dhotfocus=blue;cyan |
||||
dtitle=blue;lightgray |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdtitle=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightgreen; |
||||
symlink=lightgray; |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=black; |
||||
|
||||
[menu] |
||||
_default_=black;cyan |
||||
menuhot=yellow;cyan |
||||
menusel=white;black |
||||
menuhotsel=yellow;black |
||||
menuinactive=gray;cyan |
||||
|
||||
[buttonbar] |
||||
hotkey=lightgray;black |
||||
button=black;cyan |
||||
|
||||
[statusbar] |
||||
_default_=black;cyan |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;blue |
||||
editbold=yellow; |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg= |
||||
# editframe= |
||||
editframeactive=lightgray; |
||||
editframedrag=cyan; |
||||
window-state-char = * |
||||
window-close-char = X |
||||
|
||||
[viewer] |
||||
viewbold=yellow;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=white;cyan |
||||
menusel=yellow;black |
||||
menutitle=yellow;cyan |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ' |
||||
sort-sign-down = , |
||||
|
||||
[widget-panel] |
||||
filename-scroll-left-char = { |
||||
filename-scroll-right-char = } |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarCon16-DefaultBG (user) |
||||
256colors=false |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color7;default |
||||
selected=color15;color2 |
||||
marked=color11;;bold |
||||
markselect=color11;color2;bold |
||||
gauge=color15;color2 |
||||
input=color15;color0 |
||||
inputmark=color11;color2;bold |
||||
inputunchanged=;color0 |
||||
commandlinemark=color11;color2;bold |
||||
reverse=color0;color10 |
||||
header=color3 |
||||
disabled=color8;color7 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color0;color7 |
||||
dhotnormal=color3 |
||||
dfocus=color11;color2;bold |
||||
dhotfocus=color3;color2 |
||||
dtitle=color11;;bold |
||||
|
||||
[error] |
||||
_default_=color15;color1 |
||||
errdfocus=color11;color2;bold |
||||
errdhotnormal=color13 |
||||
errdhotfocus=color13;color2 |
||||
errdtitle=color11;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color15;;bold |
||||
executable=color10 |
||||
symlink=color12 |
||||
hardlink= |
||||
stalelink=color9 |
||||
device=color13 |
||||
special=color3 |
||||
core=color1 |
||||
temp=color8 |
||||
archive=color3 |
||||
doc=color14 |
||||
source=color6 |
||||
media=color5 |
||||
graph=color13 |
||||
database=color2 |
||||
|
||||
[menu] |
||||
_default_=color7;default |
||||
menuhot=color3 |
||||
menusel=color11;color2;bold |
||||
menuhotsel=color3;color2 |
||||
menuinactive=color8 |
||||
|
||||
[popupmenu] |
||||
_default_=color7;default |
||||
menusel=color11;color2;bold |
||||
menutitle=color11;;bold |
||||
|
||||
[buttonbar] |
||||
button=color7 |
||||
hotkey=color15;color3 |
||||
|
||||
[statusbar] |
||||
_default_=color15;color2 |
||||
|
||||
[help] |
||||
_default_=color0;color7 |
||||
helpitalic=color10;;bold |
||||
helpbold=color5 |
||||
helplink=color14 |
||||
helpslink=color11;color2;bold |
||||
|
||||
[editor] |
||||
_default_=color7;default |
||||
editbold=color15;;bold |
||||
editmarked=color11;color2;bold |
||||
editwhitespace=color12;color4 |
||||
editlinestate=color2;color0 |
||||
bookmark=color0;color7 |
||||
bookmarkfound=color0;color7 |
||||
editrightmargin=color0;color7 |
||||
|
||||
[viewer] |
||||
_default_=color7;default |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color15;color4 |
||||
changednew=color15;color2 |
||||
changed=color15;color6 |
||||
added=color0;color7 |
||||
removed=color8;color0 |
||||
folder=color11;color0;bold |
||||
error=color15;color1 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarCon16 (user) |
||||
256colors=false |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color7;color0 |
||||
selected=color15;color2 |
||||
marked=color11;;bold |
||||
markselect=color11;color2;bold |
||||
gauge=color15;color2 |
||||
input=color15 |
||||
inputmark=color11;color2;bold |
||||
inputunchanged= |
||||
commandlinemark=color11;color2;bold |
||||
reverse=color0;color10 |
||||
header=color3 |
||||
disabled=color8;color7 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color0;color7 |
||||
dhotnormal=color3 |
||||
dfocus=color11;color2;bold |
||||
dhotfocus=color3;color2 |
||||
dtitle=color11;;bold |
||||
|
||||
[error] |
||||
_default_=color15;color1 |
||||
errdfocus=color11;color2;bold |
||||
errdhotnormal=color13 |
||||
errdhotfocus=color13;color2 |
||||
errdtitle=color11;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color15;;bold |
||||
executable=color10 |
||||
symlink=color12 |
||||
hardlink= |
||||
stalelink=color9 |
||||
device=color13 |
||||
special=color3 |
||||
core=color1 |
||||
temp=color8 |
||||
archive=color3 |
||||
doc=color14 |
||||
source=color6 |
||||
media=color5 |
||||
graph=color13 |
||||
database=color2 |
||||
|
||||
[menu] |
||||
_default_=color0;color7 |
||||
menuhot=color3 |
||||
menusel=color11;color2;bold |
||||
menuhotsel=color3;color2 |
||||
menuinactive=color8 |
||||
|
||||
[popupmenu] |
||||
_default_=color0;color7 |
||||
menusel=color11;color2;bold |
||||
menutitle=color11;;bold |
||||
|
||||
[buttonbar] |
||||
button=color7 |
||||
hotkey=color15;color3 |
||||
|
||||
[statusbar] |
||||
_default_=color15;color2 |
||||
|
||||
[help] |
||||
_default_=color0;color7 |
||||
helpitalic=color10;;bold |
||||
helpbold=color5 |
||||
helplink=color14 |
||||
helpslink=color11;color2;bold |
||||
|
||||
[editor] |
||||
_default_=color7;color0 |
||||
editbold=color15;;bold |
||||
editmarked=color11;color2;bold |
||||
editwhitespace=color12;color4 |
||||
editlinestate=color2;color0 |
||||
bookmark=color0;color7 |
||||
bookmarkfound=color0;color7 |
||||
editrightmargin=color0;color7 |
||||
|
||||
[viewer] |
||||
_default_=color7;color0 |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color15;color4 |
||||
changednew=color15;color2 |
||||
changed=color15;color6 |
||||
added=color0;color7 |
||||
removed=color8;color0 |
||||
folder=color11;color0;bold |
||||
error=color15;color1 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarCon16root-DefaultBG (root) |
||||
256colors=false |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color7;default |
||||
selected=color15;color1 |
||||
marked=color11;;bold |
||||
markselect=color11;color1;bold |
||||
gauge=color15;color1 |
||||
input=color15;color0 |
||||
inputmark=color11;color1;bold |
||||
inputunchanged=;color0 |
||||
commandlinemark=color11;color1;bold |
||||
reverse=color0;color9 |
||||
header=color3 |
||||
disabled=color8;color7 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color0;color7 |
||||
dhotnormal=color3 |
||||
dfocus=color11;color1;bold |
||||
dhotfocus=color5;color1;bold |
||||
dtitle=color11;;bold |
||||
|
||||
[error] |
||||
_default_=color15;color1 |
||||
errdfocus=color11;color3;bold |
||||
errdhotnormal=color13 |
||||
errdhotfocus=color13;color3 |
||||
errdtitle=color11;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color15;;bold |
||||
executable=color10 |
||||
symlink=color12 |
||||
hardlink= |
||||
stalelink=color9 |
||||
device=color13 |
||||
special=color3 |
||||
core=color1 |
||||
temp=color8 |
||||
archive=color3 |
||||
doc=color14 |
||||
source=color6 |
||||
media=color5 |
||||
graph=color13 |
||||
database=color2 |
||||
|
||||
[menu] |
||||
_default_=color7;default |
||||
menuhot=color3 |
||||
menusel=color11;color1;bold |
||||
menuhotsel=color5;color1;bold |
||||
menuinactive=color8 |
||||
|
||||
[popupmenu] |
||||
_default_=color7;default |
||||
menusel=color11;color1;bold |
||||
menutitle=color11;;bold |
||||
|
||||
[buttonbar] |
||||
button=color7 |
||||
hotkey=color15;color3 |
||||
|
||||
[statusbar] |
||||
_default_=color15;color1 |
||||
|
||||
[help] |
||||
_default_=color0;color7 |
||||
helpitalic=color10;;bold |
||||
helpbold=color5 |
||||
helplink=color14 |
||||
helpslink=color11;color1;bold |
||||
|
||||
[editor] |
||||
_default_=color7;default |
||||
editbold=color15;;bold |
||||
editmarked=color11;color1;bold |
||||
editwhitespace=color12;color4 |
||||
editlinestate=color1;color0 |
||||
bookmark=color0;color7 |
||||
bookmarkfound=color0;color7 |
||||
editrightmargin=color0;color7 |
||||
|
||||
[viewer] |
||||
_default_=color7;default |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color15;color4 |
||||
changednew=color15;color5 |
||||
changed=color15;color3 |
||||
added=color0;color7 |
||||
removed=color8;color0 |
||||
folder=color11;color0;bold |
||||
error=color15;color1 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarCon16root (root) |
||||
256colors=false |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color7;color0 |
||||
selected=color15;color1 |
||||
marked=color11;;bold |
||||
markselect=color11;color1;bold |
||||
gauge=color15;color1 |
||||
input=color15 |
||||
inputmark=color11;color1;bold |
||||
inputunchanged= |
||||
commandlinemark=color11;color1;bold |
||||
reverse=color0;color9 |
||||
header=color3 |
||||
disabled=color8;color7 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color0;color7 |
||||
dhotnormal=color3 |
||||
dfocus=color11;color1;bold |
||||
dhotfocus=color5;color1;bold |
||||
dtitle=color11;;bold |
||||
|
||||
[error] |
||||
_default_=color15;color1 |
||||
errdfocus=color11;color3;bold |
||||
errdhotnormal=color13 |
||||
errdhotfocus=color13;color3 |
||||
errdtitle=color11;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color15;;bold |
||||
executable=color10 |
||||
symlink=color12 |
||||
hardlink= |
||||
stalelink=color9 |
||||
device=color13 |
||||
special=color3 |
||||
core=color1 |
||||
temp=color8 |
||||
archive=color3 |
||||
doc=color14 |
||||
source=color6 |
||||
media=color5 |
||||
graph=color13 |
||||
database=color2 |
||||
|
||||
[menu] |
||||
_default_=color0;color7 |
||||
menuhot=color3 |
||||
menusel=color11;color1;bold |
||||
menuhotsel=color5;color1;bold |
||||
menuinactive=color8 |
||||
|
||||
[popupmenu] |
||||
_default_=color0;color7 |
||||
menusel=color11;color1;bold |
||||
menutitle=color11;;bold |
||||
|
||||
[buttonbar] |
||||
button=color7 |
||||
hotkey=color15;color3 |
||||
|
||||
[statusbar] |
||||
_default_=color15;color1 |
||||
|
||||
[help] |
||||
_default_=color0;color7 |
||||
helpitalic=color10;;bold |
||||
helpbold=color5 |
||||
helplink=color14 |
||||
helpslink=color11;color1;bold |
||||
|
||||
[editor] |
||||
_default_=color7;color0 |
||||
editbold=color15;;bold |
||||
editmarked=color11;color1;bold |
||||
editwhitespace=color12;color4 |
||||
editlinestate=color1;color0 |
||||
bookmark=color0;color7 |
||||
bookmarkfound=color0;color7 |
||||
editrightmargin=color0;color7 |
||||
|
||||
[viewer] |
||||
_default_=color7;color0 |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color15;color4 |
||||
changednew=color15;color5 |
||||
changed=color15;color3 |
||||
added=color0;color7 |
||||
removed=color8;color0 |
||||
folder=color11;color0;bold |
||||
error=color15;color1 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarIn256-DefaultBG (user) |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color250;default |
||||
selected=color253;color23 |
||||
marked=color228;;bold |
||||
markselect=color228;color23;bold |
||||
gauge=color250;color66 |
||||
input=color187;color235;bold |
||||
inputmark=color228;color23;bold |
||||
inputunchanged=color144;color235;bold |
||||
commandlinemark=color228;color23;bold |
||||
reverse=color254;color66 |
||||
header=color180;;bold |
||||
disabled=color246;color239 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color252;color239 |
||||
dhotnormal=color214 |
||||
dfocus=color228;color23;bold |
||||
dhotfocus=color214;color23 |
||||
dtitle=color180;;bold |
||||
|
||||
[error] |
||||
_default_=color230;color52 |
||||
errdfocus=color254;color23;bold |
||||
errdhotnormal=color203;color52 |
||||
errdhotfocus=color203;color23;bold |
||||
errdtitle=color227;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color144;;bold |
||||
executable=color114 |
||||
symlink=color45 |
||||
hardlink= |
||||
stalelink=color203 |
||||
device=color170 |
||||
special=color142 |
||||
core=color197 |
||||
temp=color245 |
||||
archive=color172 |
||||
doc=color153 |
||||
source=color109 |
||||
media=color141 |
||||
graph=color216 |
||||
database=color103 |
||||
|
||||
[menu] |
||||
_default_=color250;default |
||||
menuhot=color214 |
||||
menusel=color253;color23 |
||||
menuhotsel=color214;color23 |
||||
menuinactive=color245 |
||||
|
||||
[popupmenu] |
||||
_default_=color250;default |
||||
menusel=color253;color23 |
||||
menutitle=color180;;bold |
||||
|
||||
[buttonbar] |
||||
button=color253;color236 |
||||
hotkey=color214;color238;bold |
||||
|
||||
[statusbar] |
||||
_default_=color253;color66 |
||||
|
||||
[help] |
||||
_default_=color252;color239 |
||||
helpitalic=color114;;bold |
||||
helpbold=color180;;bold |
||||
helplink=color45 |
||||
helpslink=color228;color23;bold |
||||
|
||||
[editor] |
||||
_default_=color250;default |
||||
editbold=color228;;bold |
||||
editmarked=color228;color23;bold |
||||
editwhitespace=color56;color234 |
||||
editlinestate=color66;color235 |
||||
bookmark=;color239 |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=;color235;bold |
||||
|
||||
[viewer] |
||||
_default_=color250;default |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color231;color29 |
||||
changednew=color232;color78 |
||||
changed=color231;color39 |
||||
added=color232;color81 |
||||
removed=;color234 |
||||
folder=color232;color185 |
||||
error=color231;color160 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarIn256 (user) |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color252;color237 |
||||
selected=color253;color23 |
||||
marked=color228;;bold |
||||
markselect=color228;color23;bold |
||||
gauge=color250;color66 |
||||
input=color187;color235;bold |
||||
inputmark=color228;color23;bold |
||||
inputunchanged=color144;color235;bold |
||||
commandlinemark=color228;color23;bold |
||||
reverse=color254;color66 |
||||
header=color180;;bold |
||||
disabled=color246;color239 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color252;color239 |
||||
dhotnormal=color214 |
||||
dfocus=color228;color23;bold |
||||
dhotfocus=color214;color23 |
||||
dtitle=color180;;bold |
||||
|
||||
[error] |
||||
_default_=color230;color52 |
||||
errdfocus=color254;color23;bold |
||||
errdhotnormal=color203;color52 |
||||
errdhotfocus=color203;color23;bold |
||||
errdtitle=color227;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color144;;bold |
||||
executable=color114 |
||||
symlink=color45 |
||||
hardlink= |
||||
stalelink=color203 |
||||
device=color170 |
||||
special=color142 |
||||
core=color197 |
||||
temp=color245 |
||||
archive=color172 |
||||
doc=color153 |
||||
source=color109 |
||||
media=color141 |
||||
graph=color216 |
||||
database=color103 |
||||
|
||||
[menu] |
||||
_default_=color252;color239 |
||||
menuhot=color214 |
||||
menusel=color253;color23 |
||||
menuhotsel=color214;color23 |
||||
menuinactive=color246 |
||||
|
||||
[popupmenu] |
||||
_default_=color252;color239 |
||||
menusel=color253;color23 |
||||
menutitle=color180;;bold |
||||
|
||||
[buttonbar] |
||||
button=color253;color236 |
||||
hotkey=color214;color238;bold |
||||
|
||||
[statusbar] |
||||
_default_=color253;color66 |
||||
|
||||
[help] |
||||
_default_=color252;color239 |
||||
helpitalic=color114;;bold |
||||
helpbold=color180;;bold |
||||
helplink=color45 |
||||
helpslink=color228;color23;bold |
||||
|
||||
[editor] |
||||
_default_=color252;color237 |
||||
editbold=color228;;bold |
||||
editmarked=color228;color23;bold |
||||
editwhitespace=color56;color234 |
||||
editlinestate=color66;color235 |
||||
bookmark=;color239 |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=;color235;bold |
||||
|
||||
[viewer] |
||||
_default_=color252;color237 |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color231;color29 |
||||
changednew=color232;color78 |
||||
changed=color231;color39 |
||||
added=color232;color81 |
||||
removed=;color235 |
||||
folder=color232;color185 |
||||
error=color231;color160 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarIn256root-DefaultBG (root) |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color250;default |
||||
selected=color253;color88 |
||||
marked=color228;;bold |
||||
markselect=color228;color88;bold |
||||
gauge=color250;color95 |
||||
input=color187;color235;bold |
||||
inputmark=color228;color88;bold |
||||
inputunchanged=color144;color235;bold |
||||
commandlinemark=color228;color88;bold |
||||
reverse=color254;color95 |
||||
header=color180;;bold |
||||
disabled=color246;color239 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color252;color239 |
||||
dhotnormal=color214 |
||||
dfocus=color228;color88;bold |
||||
dhotfocus=color214;color88;bold |
||||
dtitle=color180;;bold |
||||
|
||||
[error] |
||||
_default_=color230;color52 |
||||
errdfocus=color254;color95;bold |
||||
errdhotnormal=color203;color52 |
||||
errdhotfocus=color203;color95;bold |
||||
errdtitle=color227;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color144;;bold |
||||
executable=color114 |
||||
symlink=color45 |
||||
hardlink= |
||||
stalelink=color203 |
||||
device=color170 |
||||
special=color142 |
||||
core=color197 |
||||
temp=color245 |
||||
archive=color172 |
||||
doc=color153 |
||||
source=color109 |
||||
media=color141 |
||||
graph=color216 |
||||
database=color103 |
||||
|
||||
[menu] |
||||
_default_=color250;default |
||||
menuhot=color214 |
||||
menusel=color253;color88 |
||||
menuhotsel=color214;color88 |
||||
menuinactive=color245 |
||||
|
||||
[popupmenu] |
||||
_default_=color250;default |
||||
menusel=color253;color88 |
||||
menutitle=color180;;bold |
||||
|
||||
[buttonbar] |
||||
button=color253;color236 |
||||
hotkey=color214;color238;bold |
||||
|
||||
[statusbar] |
||||
_default_=color254;color95 |
||||
|
||||
[help] |
||||
_default_=color252;color239 |
||||
helpitalic=color114;;bold |
||||
helpbold=color180;;bold |
||||
helplink=color45 |
||||
helpslink=color228;color88;bold |
||||
|
||||
[editor] |
||||
_default_=color250;default |
||||
editbold=color228;;bold |
||||
editmarked=color228;color88;bold |
||||
editwhitespace=color56;color234 |
||||
editlinestate=color95;color235 |
||||
bookmark=;color239 |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=;color235;bold |
||||
|
||||
[viewer] |
||||
_default_=color250;default |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color231;color130 |
||||
changednew=color232;color208 |
||||
changed=color231;color96 |
||||
added=color232;color218 |
||||
removed=;color234 |
||||
folder=color232;color185 |
||||
error=color231;color160 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarIn256root (root) |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color252;color237 |
||||
selected=color253;color88 |
||||
marked=color228;;bold |
||||
markselect=color228;color88;bold |
||||
gauge=color250;color95 |
||||
input=color187;color235;bold |
||||
inputmark=color228;color88;bold |
||||
inputunchanged=color144;color235;bold |
||||
commandlinemark=color228;color88;bold |
||||
reverse=color254;color95 |
||||
header=color180;;bold |
||||
disabled=color246;color239 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color252;color239 |
||||
dhotnormal=color214 |
||||
dfocus=color228;color88;bold |
||||
dhotfocus=color214;color88;bold |
||||
dtitle=color180;;bold |
||||
|
||||
[error] |
||||
_default_=color230;color52 |
||||
errdfocus=color254;color95;bold |
||||
errdhotnormal=color203;color52 |
||||
errdhotfocus=color203;color95;bold |
||||
errdtitle=color227;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color144;;bold |
||||
executable=color114 |
||||
symlink=color45 |
||||
hardlink= |
||||
stalelink=color203 |
||||
device=color170 |
||||
special=color142 |
||||
core=color197 |
||||
temp=color245 |
||||
archive=color172 |
||||
doc=color153 |
||||
source=color109 |
||||
media=color141 |
||||
graph=color216 |
||||
database=color103 |
||||
|
||||
[menu] |
||||
_default_=color252;color239 |
||||
menuhot=color214 |
||||
menusel=color253;color88 |
||||
menuhotsel=color214;color88 |
||||
menuinactive=color246 |
||||
|
||||
[popupmenu] |
||||
_default_=color252;color239 |
||||
menusel=color253;color88 |
||||
menutitle=color180;;bold |
||||
|
||||
[buttonbar] |
||||
button=color253;color236 |
||||
hotkey=color214;color238;bold |
||||
|
||||
[statusbar] |
||||
_default_=color254;color95 |
||||
|
||||
[help] |
||||
_default_=color252;color239 |
||||
helpitalic=color114;;bold |
||||
helpbold=color180;;bold |
||||
helplink=color45 |
||||
helpslink=color228;color88;bold |
||||
|
||||
[editor] |
||||
_default_=color252;color237 |
||||
editbold=color228;;bold |
||||
editmarked=color228;color88;bold |
||||
editwhitespace=color56;color234 |
||||
editlinestate=color95;color235 |
||||
bookmark=;color239 |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=;color235;bold |
||||
|
||||
[viewer] |
||||
_default_=color252;color237 |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color231;color130 |
||||
changednew=color232;color208 |
||||
changed=color231;color96 |
||||
added=color232;color218 |
||||
removed=;color235 |
||||
folder=color232;color185 |
||||
error=color231;color160 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,143 +0,0 @@
@@ -1,143 +0,0 @@
|
||||
[skin] |
||||
description=Nice and Dark |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;black |
||||
selected=lightgray;blue |
||||
marked=brown;black |
||||
markselect=brown;blue |
||||
gauge=black;lightgray |
||||
input=lightgray;black |
||||
inputunchanged=gray;black |
||||
inputmark=black;lightgray |
||||
disabled=gray;darkgray |
||||
reverse=brown;black |
||||
commandlinemark=black;lightgray |
||||
header=lightgray;black |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=lightgray;darkgray |
||||
dfocus=lightgray;blue |
||||
dhotnormal=brown;darkgray |
||||
dhotfocus=brown;blue |
||||
dtitle=brown;darkgray |
||||
|
||||
[error] |
||||
_default_=red;black |
||||
errdfocus=black;red |
||||
errdhotnormal=brightred;black |
||||
errdhotfocus=brown;red |
||||
errdtitle=brown;black |
||||
|
||||
[filehighlight] |
||||
directory=blue; |
||||
executable=brightgreen; |
||||
symlink=gray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=gray; |
||||
core=red; |
||||
temp=gray; |
||||
archive=magenta; |
||||
doc=lightgray; |
||||
source=brightcyan; |
||||
media=green; |
||||
graph=cyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=lightgray;black |
||||
menuhot=brown;black |
||||
menusel=lightgray;blue |
||||
menuhotsel=brown;blue |
||||
menuinactive=gray;black |
||||
|
||||
[buttonbar] |
||||
hotkey=lightgray;blue |
||||
button=lightgray;black |
||||
|
||||
[statusbar] |
||||
_default_=lightgray;black |
||||
|
||||
[help] |
||||
_default_=lightgray;darkgray |
||||
helpitalic=red;darkgray |
||||
helpbold=brown;darkgray |
||||
helplink=blue;darkgray |
||||
helpslink=lightgray;blue |
||||
helptitle=brown;darkgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;darkgray |
||||
editbold=brown;blue |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg= |
||||
editframe=gray; |
||||
editframeactive=lightgray; |
||||
editframedrag=brightblue; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewbold=brown;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=brown;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;brown |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=lightgray;black |
||||
menusel=lightgray;blue |
||||
menutitle=lightgray;black |
||||
|
||||
[widget-common] |
||||
sort-sign-down=↑ |
||||
sort-sign-up=↓ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
@ -1,201 +0,0 @@
@@ -1,201 +0,0 @@
|
||||
# This skin demonstrates how to use 256 colors in mc. |
||||
# |
||||
# As a prerequisite, you will need to: |
||||
# 1) Have a terminal emulator that supports 256 colors (a few examples: |
||||
# xterm, Gnome terminal and other VTE derivatives, KDE's Konsole; |
||||
# iTerm for Mac OS X, PuTTY for Windows). |
||||
# 2) Adjust your TERM variable accordingly, e.g.: export TERM=xterm-256color |
||||
# Verify by running tput colors |
||||
# |
||||
# Each of the 256 colors has two names, you can use whichever you prefer. |
||||
# |
||||
# One possibility is to use the names "color0" to "color255" to access every |
||||
# color directly based on their number. |
||||
# |
||||
# The first 16 colors ("color0" to "color15") can also be specified by their |
||||
# names (these names are already being used by mc for 8/16 color terminals): |
||||
# black gray |
||||
# red brightred |
||||
# green brightgreen |
||||
# brown yellow |
||||
# blue brightblue |
||||
# magenta brightmagenta |
||||
# cyan brightcyan |
||||
# lightgray white |
||||
# Note that with 8/16 color terminal settings (such as TERM=xterm), colors |
||||
# of the second column can only be used for the foreground, and their actual |
||||
# interpretation varies across terminals. Some terminals show the colors |
||||
# from the first column instead (that is, you only have 8 colors), but make |
||||
# them bold. Others show the brighter version (16 foreground colors). Yet |
||||
# others make them bold and bright at the same time. Switching to 256 colors |
||||
# should end this ambiguity: you should have 16 separate colors according to |
||||
# their names, none of them are bold by default but any of them can be |
||||
# switched to bold, and all of them are available for background, too. This |
||||
# is the intended behavior, the actual behavior might vary across terminals. |
||||
# |
||||
# Colors of the 6x6x6 cube ("color16" to "color231") can alternatively be |
||||
# referred to as "rgb000" to "rgb555", all three digits ranging from 0 to 5, |
||||
# corresponding to the R, G and B color components. |
||||
# |
||||
# The 24 grayscale colors ("color232" to "color255") have the aliases "gray0" |
||||
# to "gray23". |
||||
# |
||||
# In addition to the 256 colors, the special word "default" means the |
||||
# default foreground or background color of your terminal, while "base" means |
||||
# mc's main colors. A missing value means falling back to the _default_ of the |
||||
# given section. |
||||
# |
||||
# Following the foreground and background colors, the third (optional) value |
||||
# can specify special attributes to enable. Valid values are bold, underline, |
||||
# reverse and blink. Append more with a plus sign, e.g. "underline+bold". |
||||
# Leaving the field empty makes it fall back to the attributes of _default_. |
||||
# Use any other word (e.g. "none") to prevent fallback and disable all flags. |
||||
|
||||
[skin] |
||||
description=Sand skin using 256 colors |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=black;rgb554 |
||||
selected=;rgb452 |
||||
marked=rgb400 |
||||
markselect=rgb400;rgb452 |
||||
gauge=;rgb452 |
||||
input=;rgb452 |
||||
inputunchanged=gray;rgb452 |
||||
inputmark=rgb452;gray |
||||
disabled=gray;rgb553 |
||||
reverse=;rgb452 |
||||
commandlinemark=white;gray |
||||
header=red |
||||
|
||||
[dialog] |
||||
_default_=black;rgb553 |
||||
dfocus=;rgb452 |
||||
dhotnormal=;;underline |
||||
dhotfocus=;rgb452;underline |
||||
dtitle=;;underline |
||||
|
||||
[error] |
||||
_default_=rgb554;rgb320;bold |
||||
errdfocus=black;rgb452;bold |
||||
errdhotnormal=;;bold+underline |
||||
errdhotfocus=black;rgb452;bold+underline |
||||
errdtitle=;;bold+underline |
||||
|
||||
[filehighlight] |
||||
directory= |
||||
executable=rgb030 |
||||
symlink=rgb202 |
||||
hardlink= |
||||
# 404 Not Found :) |
||||
stalelink=rgb404 |
||||
device=rgb231 |
||||
special=rgb331 |
||||
core=rgb430 |
||||
temp=gray15 |
||||
archive=rgb012 |
||||
doc=rgb103 |
||||
source=rgb310 |
||||
media=rgb024 |
||||
graph=rgb033 |
||||
database=rgb421 |
||||
|
||||
[menu] |
||||
_default_=black;rgb452 |
||||
menuhot=;;underline |
||||
menusel=;rgb551 |
||||
menuhotsel=;rgb551;underline |
||||
menuinactive= |
||||
|
||||
[popupmenu] |
||||
_default_=black;rgb553 |
||||
menusel=;rgb452;underline |
||||
menutitle=;;underline |
||||
|
||||
[buttonbar] |
||||
hotkey=black;rgb554 |
||||
button=black;rgb452 |
||||
|
||||
[statusbar] |
||||
_default_=black;rgb452 |
||||
|
||||
[help] |
||||
_default_=black;rgb553 |
||||
helpitalic=green |
||||
helpbold=red |
||||
helplink=blue;;underline |
||||
helpslink=blue;;reverse |
||||
|
||||
[editor] |
||||
_default_=black;rgb554 |
||||
editbold=rgb400 |
||||
editmarked=;rgb452 |
||||
editwhitespace=rgb400;rgb553 |
||||
editlinestate=;rgb553 |
||||
bookmark=;rgb551 |
||||
bookmarkfound=;rgb530 |
||||
editrightmargin=rgb400;rgb553 |
||||
# editbg= |
||||
editframe=rgb530; |
||||
editframeactive=black; |
||||
editframedrag=rgb400; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
added=;rgb450 |
||||
changedline=blue;rgb553 |
||||
changednew=rgb400;rgb553 |
||||
changed=;rgb553 |
||||
removed=;rgb511 |
||||
folder=;rgb530 |
||||
error=rgb554;rgb320 |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ↓ |
||||
sort-sign-down = ↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
||||
|
@ -1,192 +0,0 @@
@@ -1,192 +0,0 @@
|
||||
# This is a 256 colors MidnightCommander color scheme |
||||
# based on the Xoria256 color scheme for the Vim editor |
||||
# (http://www.vim.org/scripts/script.php?script_id=2140) |
||||
|
||||
# Note you'll need mc > 4.7.5 for this scheme to work (256 colors support) |
||||
# Hint: compile from the git repository |
||||
|
||||
# Author : Alexander Glyzov (isee@inbox.ru) |
||||
# Last Change : Jan 11, 2011 |
||||
|
||||
# Special Thanks to Dmitriy Zotikov -- author of the Vim Xoria256 color scheme. |
||||
|
||||
|
||||
|
||||
[skin] |
||||
description=Xoria256 |
||||
256colors=true |
||||
|
||||
# [Lines] |
||||
# horiz=─ |
||||
# vert=│ |
||||
# lefttop=┌ |
||||
# righttop=┐ |
||||
# leftbottom=└ |
||||
# rightbottom=┘ |
||||
# topmiddle=─ |
||||
# bottommiddle=─ |
||||
# leftmiddle=├ |
||||
# rightmiddle=┤ |
||||
# cross=┼ |
||||
# dhoriz=─ |
||||
# dvert=│ |
||||
# dlefttop=┌ |
||||
# drighttop=┐ |
||||
# dleftbottom=└ |
||||
# drightbottom=┘ |
||||
# dtopmiddle=─ |
||||
# dbottommiddle=─ |
||||
# dleftmiddle=├ |
||||
# drightmiddle=┤ |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color250;color234 |
||||
selected=;color60 |
||||
marked=color228 |
||||
markselect=color228;color60 |
||||
reverse=color234;color250; |
||||
header=color180;;bold |
||||
|
||||
gauge=white;black |
||||
|
||||
input=color252;color60;bold |
||||
inputunchanged=color250;color60;bold |
||||
inputmark=color228;color236;bold |
||||
|
||||
disabled=color244;color250 |
||||
|
||||
#inputhistory= |
||||
#commandhistory= |
||||
#commandlinemark=black;lightgray |
||||
|
||||
[dialog] |
||||
_default_=black;color250 |
||||
dhotnormal=color88;; |
||||
dfocus=black;color73; |
||||
dhotfocus=color88;color73; |
||||
dtitle=color235;;bold |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red;bold |
||||
|
||||
[filehighlight] |
||||
directory=;;bold |
||||
executable=color114 |
||||
symlink=color180 |
||||
hardlink= |
||||
stalelink=rgb404 |
||||
device=rgb231 |
||||
special=rgb331 |
||||
core=rgb430 |
||||
temp=color239 |
||||
archive=color174 |
||||
doc=rgb033 |
||||
source=color29 |
||||
media=color110 |
||||
graph=color182 |
||||
database=color31 |
||||
|
||||
[menu] |
||||
_default_=black;color250 |
||||
menuhot=color88;; |
||||
menusel=black;color73; |
||||
menuhotsel=color88;color73; |
||||
menuinactive=color244 |
||||
|
||||
[popupmenu] |
||||
_default_=black;color250 |
||||
menusel=black;color73 |
||||
menutitle=;;bold |
||||
|
||||
[buttonbar] |
||||
button=black;color250 |
||||
hotkey=color88;color181;bold |
||||
|
||||
[statusbar] |
||||
_default_=black;color250 |
||||
|
||||
[help] |
||||
_default_=black;color250 |
||||
helpitalic=color88;;bold |
||||
helpbold=color235;;bold |
||||
helplink=color19;; |
||||
helpslink=black;color73;inverse |
||||
|
||||
[editor] |
||||
_default_=color250;color234 |
||||
editbold=;;bold |
||||
editmarked=;color60 |
||||
editwhitespace=color236;color234 |
||||
editlinestate=;color235 |
||||
bookmark=;color239; |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=color180;color235;bold |
||||
# editbg= |
||||
editframe=color244; |
||||
editframeactive=color250; |
||||
editframedrag=color73; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=;color60 |
||||
changednew=black;color174 |
||||
|
||||
added=black;color181 |
||||
changed=black;color151 |
||||
removed=;color235 |
||||
|
||||
folder=;color60 |
||||
error=rgb554;rgb320 |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ↓ |
||||
sort-sign-down = ↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
||||
|
@ -1,181 +0,0 @@
@@ -1,181 +0,0 @@
|
||||
# This is a 256 colors MidnightCommander color scheme |
||||
# based on the Xoria256 color scheme for the Vim editor |
||||
# (http://http://www.vim.org/scripts/script.php?script_id=2140) |
||||
|
||||
# Note you'll need mc >= 4.7.6 for this scheme to work (256 colors support) |
||||
# Hint: compile from the git repository |
||||
|
||||
# Author : Alexander Glyzov (isee@inbox.ru) |
||||
# Last Change : Jan 11, 2011 |
||||
|
||||
# Special Thanks to Dmitriy Zotikov -- author of the Vim Xoria256 color scheme. |
||||
|
||||
|
||||
|
||||
[skin] |
||||
description=Xoria256 |
||||
|
||||
# [Lines] |
||||
# horiz=─ |
||||
# vert=│ |
||||
# lefttop=┌ |
||||
# righttop=┐ |
||||
# leftbottom=└ |
||||
# rightbottom=┘ |
||||
# topmiddle=─ |
||||
# bottommiddle=─ |
||||
# leftmiddle=├ |
||||
# rightmiddle=┤ |
||||
# cross=┼ |
||||
# dhoriz=─ |
||||
# dvert=│ |
||||
# dlefttop=┌ |
||||
# drighttop=┐ |
||||
# dleftbottom=└ |
||||
# drightbottom=┘ |
||||
# dtopmiddle=─ |
||||
# dbottommiddle=─ |
||||
# dleftmiddle=├ |
||||
# drightmiddle=┤ |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color250;color234 |
||||
selected=;color60 |
||||
marked=color228 |
||||
markselect=color228;color60 |
||||
reverse=color234;color250; |
||||
header=color180;;bold |
||||
|
||||
gauge=white;black |
||||
|
||||
input=color252;color60;bold |
||||
inputunchanged=color250;color60;bold |
||||
inputmark=color228;color236;bold |
||||
|
||||
disabled=color244;color250 |
||||
|
||||
#inputhistory= |
||||
#commandhistory= |
||||
#commandlinemark=black;lightgray |
||||
|
||||
[dialog] |
||||
_default_=black;color250 |
||||
dhotnormal=color88;; |
||||
dfocus=black;color73; |
||||
dhotfocus=color88;color73; |
||||
dtitle=color235;;bold |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red;bold |
||||
|
||||
[filehighlight] |
||||
directory=;;bold |
||||
executable=color114 |
||||
symlink=color180 |
||||
stalelink=rgb404 |
||||
device=rgb231 |
||||
special=rgb331 |
||||
core=rgb430 |
||||
temp=color239 |
||||
archive=color174 |
||||
doc=rgb033 |
||||
source=color29 |
||||
media=color110 |
||||
graph=color182 |
||||
database=color31 |
||||
|
||||
[menu] |
||||
_default_=black;color250 |
||||
menuhot=color88;; |
||||
menusel=black;color73; |
||||
menuhotsel=color88;color73; |
||||
menuinactive=color244 |
||||
|
||||
[popupmenu] |
||||
_default_=black;color250 |
||||
menusel=black;color73 |
||||
menutitle=;;bold |
||||
|
||||
[buttonbar] |
||||
button=black;color250 |
||||
hotkey=color88;color181;bold |
||||
|
||||
[statusbar] |
||||
_default_=black;color250 |
||||
|
||||
[help] |
||||
_default_=black;color250 |
||||
helpitalic=color88;;bold |
||||
helpbold=color235;;bold |
||||
helplink=color19;; |
||||
helpslink=black;color73;inverse |
||||
|
||||
[editor] |
||||
_default_=color250;color234 |
||||
editbold=;;bold |
||||
editmarked=;color60 |
||||
editwhitespace=color236;color234 |
||||
editlinestate=;color235 |
||||
bookmark=;color239; |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=color180;color235;bold |
||||
|
||||
[viewer] |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=;color60 |
||||
changednew=black;color174 |
||||
|
||||
added=black;color181 |
||||
changed=black;color151 |
||||
removed=;color235 |
||||
|
||||
folder=;color60 |
||||
error=rgb554;rgb320 |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ↓ |
||||
sort-sign-down = ↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1 +0,0 @@
@@ -1 +0,0 @@
|
||||
Midnight Commander TreeStore v 2.0 |
@ -1,44 +0,0 @@
@@ -1,44 +0,0 @@
|
||||
[executable] |
||||
type=FILE_EXE |
||||
|
||||
[directory] |
||||
type=DIR |
||||
|
||||
[device] |
||||
type=DEVICE |
||||
|
||||
[special] |
||||
type=SPECIAL |
||||
|
||||
[stalelink] |
||||
type=STALE_LINK |
||||
|
||||
[symlink] |
||||
type=SYMLINK |
||||
|
||||
[core] |
||||
regexp=^core\\.*\\d*$ |
||||
|
||||
[temp] |
||||
extensions=tmp;$$$;~;bak;o;elc;toc;out;rej;aux; |
||||
extensions_case=false |
||||
regexp=(^#.*|.*~$) |
||||
|
||||
[archive] |
||||
extensions=gz;bz2;tar;tgz;rpm;rar;zip;arj;cab;lzma;xz;tbz2;iso;mdf; |
||||
|
||||
[doc] |
||||
extensions=txt;srt;ass;ssa;doc;ps;pdf;xml;html;htm;tex;css;chm;dvi;djvu;log;odt;cue; |
||||
|
||||
[source] |
||||
extensions=c;h;cc;hh;cpp;cxx;hpp;asm;py;pl;pm;inc;cgi;php;phps;js;java;jav;jasm;sh;bash;diff;patch;pas;tcl;tk;awk;m4;st;mak;sl;ada;caml;ml;mli;mly;mll;mlp;sas;prg;hs;hi;erl;lisp;el;ebuild; |
||||
|
||||
[media] |
||||
extensions=mov;mpg;mpeg;mkv;ogm;mp4;m2v;m4v;wmv;rmvb;rm;asf;avi;flv;vob;flac;mka;mp3;ogg;wav;ape;m3u; |
||||
|
||||
[graph] |
||||
extensions=jpg;jpeg;gif;bmp;tga;xpm;tif;tiff;png;svgz;svg;pcx;xpm;eps;wmf;ico; |
||||
|
||||
[database] |
||||
extensions=db;mdb;dat;sql;xls |
||||
|
@ -1,194 +0,0 @@
@@ -1,194 +0,0 @@
|
||||
|
||||
[Midnight-Commander] |
||||
show_backups=1 |
||||
show_dot_files=1 |
||||
verbose=1 |
||||
mark_moves_down=1 |
||||
pause_after_run=1 |
||||
shell_patterns=1 |
||||
auto_save_setup=1 |
||||
auto_menu=0 |
||||
use_internal_view=1 |
||||
use_internal_edit=0 |
||||
clear_before_exec=1 |
||||
mix_all_files=0 |
||||
fast_reload=0 |
||||
fast_reload_msg_shown=0 |
||||
confirm_delete=1 |
||||
confirm_overwrite=1 |
||||
confirm_execute=0 |
||||
confirm_exit=1 |
||||
confirm_directory_hotlist_delete=1 |
||||
safe_delete=0 |
||||
mouse_repeat_rate=100 |
||||
double_click_speed=250 |
||||
use_8th_bit_as_meta=0 |
||||
confirm_view_dir=0 |
||||
mouse_move_pages=1 |
||||
mouse_move_pages_viewer=1 |
||||
mouse_close_dialog=0 |
||||
fast_refresh=0 |
||||
navigate_with_arrows=1 |
||||
drop_menus=0 |
||||
wrap_mode=1 |
||||
old_esc_mode=0 |
||||
cd_symlinks=1 |
||||
show_all_if_ambiguous=0 |
||||
max_dirt_limit=10 |
||||
torben_fj_mode=0 |
||||
use_file_to_guess_type=1 |
||||
alternate_plus_minus=0 |
||||
only_leading_plus_minus=1 |
||||
show_output_starts_shell=0 |
||||
panel_scroll_pages=1 |
||||
xtree_mode=0 |
||||
num_history_items_recorded=60 |
||||
file_op_compute_totals=1 |
||||
skip_check_codeset=0 |
||||
vfs_timeout=60 |
||||
ftpfs_directory_timeout=900 |
||||
use_netrc=1 |
||||
ftpfs_retry_seconds=30 |
||||
ftpfs_always_use_proxy=0 |
||||
ftpfs_use_passive_connections=1 |
||||
ftpfs_use_unix_list_options=1 |
||||
ftpfs_first_cd_then_ls=1 |
||||
fish_directory_timeout=900 |
||||
editor_word_wrap_line_length=72 |
||||
editor_key_emulation=0 |
||||
editor_tab_spacing=8 |
||||
editor_fill_tabs_with_spaces=0 |
||||
editor_return_does_auto_indent=1 |
||||
editor_backspace_through_tabs=0 |
||||
editor_fake_half_tabs=1 |
||||
editor_option_save_mode=0 |
||||
editor_option_save_position=1 |
||||
editor_option_auto_para_formatting=0 |
||||
editor_option_typewriter_wrap=0 |
||||
editor_edit_confirm_save=1 |
||||
editor_syntax_highlighting=1 |
||||
editor_persistent_selections=1 |
||||
editor_visible_tabs=1 |
||||
editor_visible_spaces=1 |
||||
editor_line_state=0 |
||||
editor_simple_statusbar=0 |
||||
nice_rotating_dash=1 |
||||
mcview_remember_file_position=0 |
||||
auto_fill_mkdir_name=0 |
||||
editor_backup_extension=~ |
||||
|
||||
kilobyte_si=0 |
||||
confirm_history_cleanup=1 |
||||
ftpfs_use_passive_connections_over_proxy=0 |
||||
editor_cursor_beyond_eol=0 |
||||
editor_check_new_line=0 |
||||
editor_show_right_margin=0 |
||||
reverse_files_only=1 |
||||
copymove_persistent_attr=1 |
||||
select_flags=6 |
||||
mcview_eof= |
||||
skin=gotar |
||||
keymap=mc.keymap |
||||
auto_save_setup_panels=1 |
||||
|
||||
filepos_max_saved_entries=1024 |
||||
|
||||
quick_search_case_sensitive=2 |
||||
|
||||
old_esc_mode_timeout=1000000 |
||||
classic_progressbar=1 |
||||
scroll_pages=1 |
||||
filetype_mode=1 |
||||
permission_mode=0 |
||||
ignore_ftp_chattr_errors=true |
||||
|
||||
preallocate_space=0 |
||||
editor_group_undo=0 |
||||
|
||||
editor_cursor_after_inserted_block=0 |
||||
editor_ask_filename_before_edit=0 |
||||
editor_filesize_threshold=64M |
||||
|
||||
horizontal_split=0 |
||||
|
||||
[Layout] |
||||
message_visible=0 |
||||
keybar_visible=0 |
||||
xterm_title=1 |
||||
output_lines=0 |
||||
command_prompt=1 |
||||
menubar_visible=0 |
||||
show_mini_info=1 |
||||
permission_mode=1 |
||||
filetype_mode=1 |
||||
free_space=1 |
||||
|
||||
classic_progressbar=true |
||||
|
||||
horizontal_split=0 |
||||
vertical_equal=1 |
||||
left_panel_size=85 |
||||
horizontal_equal=1 |
||||
top_panel_size=87 |
||||
|
||||
equal_split=1 |
||||
first_panel_size=87 |
||||
|
||||
[Misc] |
||||
ftp_proxy_host=gate |
||||
find_ignore_dirs= |
||||
ftpfs_password=anonymous@ |
||||
display_codepage=UTF-8 |
||||
source_codepage=UTF-8 |
||||
|
||||
timeformat_recent=%b %e %H:%M |
||||
timeformat_old=%b %e %Y |
||||
autodetect_codeset= |
||||
|
||||
clipboard_store= |
||||
clipboard_paste= |
||||
|
||||
[Colors] |
||||
;base_color=lightgray,black:normal=lightgray,black:selected=black,cyan:marked=yellow,black:markselect=yellow,cyan:errors=red,white:menu=white,cyan:reverse=black,lightgray:dnormal=black,lightgray:dfocus=black,cyan:dhotnormal=yellow,lightgray:dhotfocus=yellow,cyan:viewunderline=brightred,blue:menuhot=yellow,cyan:menusel=lightgrey,black:menuhotsel=yellow,black:helpnormal=black,lightgray:helpitalic=red,lightgray:helpbold=yellow,lightgray:helplink=black,cyan:helpslink=yellow,black:gauge=white,black:input=black,cyan:directory=white,black:executable=green,black:link=lightred,black:stalelink=brightred,black:device=brightmagenta,black:core=red,black:special=black,blue:editnormal=lightgray,black:editbold=yellow,black:editmarked=black,cyan:errdhotnormal=red,white:errdhotfocus=yellow,lightgray:archive=brightmagenta |
||||
xterm= |
||||
color_terminals= |
||||
|
||||
rxvt-256color= |
||||
|
||||
linux= |
||||
|
||||
base_color= |
||||
|
||||
rxvt-unicode= |
||||
|
||||
xterm-256color= |
||||
|
||||
[HotlistConfig] |
||||
expanded_view_of_groups=0 |
||||
|
||||
[Panels] |
||||
kilobyte_si=false |
||||
mix_all_files=false |
||||
show_backups=true |
||||
show_dot_files=true |
||||
fast_reload=false |
||||
fast_reload_msg_shown=false |
||||
mark_moves_down=true |
||||
reverse_files_only=true |
||||
auto_save_setup_panels=true |
||||
navigate_with_arrows=true |
||||
panel_scroll_pages=true |
||||
mouse_move_pages=true |
||||
filetype_mode=true |
||||
permission_mode=false |
||||
quick_search_mode=2 |
||||
|
||||
simple_swap=false |
||||
|
||||
show_mini_info=true |
||||
torben_fj_mode=false |
||||
|
||||
[Panelize] |
||||
îÁÊÔÉ ËÏÒÒÅËÔÕÒÙ, ÏÔ×ÅÒÇÎÕÔÙÅ ËÏÍÁÎÄÏÊ patch=find . -name *.rej -print |
||||
îÁÊÔÉ ÏÒÉÇÉÎÁÌÙ (*.orig) ÐÏÓÌÅ ËÏÍÁÎÄÙ patch=find . -name *.orig -print |
||||
îÁÊÔÉ ÐÒÏÇÒÁÍÍÙ Ó ÕÓÔÁÎÏ×ÌÅÎÎÙÍÉ SUID/SGID ÂÉÔÁÍÉ=find . ( ( -perm -04000 -a -perm +011 ) -o ( -perm -02000 -a -perm +01 ) ) -print |
@ -1,742 +0,0 @@
@@ -1,742 +0,0 @@
|
||||
# Midnight Commander 3.0 extension file |
||||
# Warning: Structure of this file has changed completely with version 3.0 |
||||
# |
||||
# All lines starting with # or empty lines are thrown away. |
||||
# Lines starting in the first column should have following format: |
||||
# |
||||
# keyword/descNL, i.e. everything after keyword/ until new line is desc |
||||
# |
||||
# keyword can be: |
||||
# |
||||
# shell (desc is, when starting with a dot, any extension (no wildcars), |
||||
# i.e. matches all the files *desc . Example: .tar matches *.tar; |
||||
# if it doesn't start with a dot, it matches only a file of that name) |
||||
# |
||||
# shell/i (desc is, when starting with a dot, any extension (no wildcars), |
||||
# The same as shell but with case insensitive. |
||||
# |
||||
# regex (desc is an extended regular expression) |
||||
# Please note that we are using the GNU regex library and thus |
||||
# \| matches the literal | and | has special meaning (or) and |
||||
# () have special meaning and \( \) stand for literal ( ). |
||||
# |
||||
# regex/i (desc is an extended regular expression) |
||||
# The same as regex but with case insensitive. |
||||
# |
||||
# type (file matches this if `file %f` matches regular expression desc |
||||
# (the filename: part from `file %f` is removed)) |
||||
# |
||||
# type/i (file matches this if `file %f` matches regular expression desc) |
||||
# The same as type but with case insensitive. |
||||
# |
||||
# directory (matches any directory matching regular expression desc) |
||||
# |
||||
# include (matches an include directive) |
||||
# |
||||
# default (matches any file no matter what desc is) |
||||
# |
||||
# Other lines should start with a space or tab and should be in the format: |
||||
# |
||||
# keyword=commandNL (with no spaces around =), where keyword should be: |
||||
# |
||||
# Open (if the user presses Enter or doubleclicks it), |
||||
# |
||||
# View (F3), Edit (F4) |
||||
# |
||||
# Include is the keyword used to add any further entries from an include/ |
||||
# section |
||||
# |
||||
# command is any one-line shell command, with the following substitutions: |
||||
# |
||||
# %% -> % character |
||||
# %p -> name of the current file (without path, but pwd is its path). |
||||
# Also provided to external application as MC_EXT_BASENAME |
||||
# global variable |
||||
# %f -> name of the current file. Unlike %p, if file is located on a |
||||
# non-local virtual filesystem, i.e. either tarfs or ftpfs, |
||||
# then the file will be temporarily copied into a local directory |
||||
# and %f will be the full path to this local temporal file. |
||||
# If you don't want to get a local copy and want to get the |
||||
# virtual fs path (like /#ftp:ftp.cvut.cz/pub/hungry/xword), then |
||||
# use %d/%p instead of %f. |
||||
# Also provided to external application as MC_EXT_FILENAME |
||||
# global variable |
||||
# %d -> name of the current directory (pwd, without trailing slash) |
||||
# Also provided to external application as MC_EXT_CURRENTDIR |
||||
# global variable |
||||
# %s -> "selected files", i.e. space separated list of tagged files if any |
||||
# or name of the current file. |
||||
# Also provided to external application as MC_EXT_SELECTED |
||||
# global variable |
||||
# %t -> list of tagged files |
||||
# Also provided to external application as MC_EXT_ONLYTAGGED |
||||
# global variable |
||||
# %u -> list of tagged files (they'll be untaged after the command) |
||||
# |
||||
# (If these 6 letters are in uppercase, they refer to the other panel. |
||||
# But you shouldn't have to use it in this file.) |
||||
# |
||||
# |
||||
# %cd -> the rest is a path mc should change into (cd won't work, since it's |
||||
# a child process). %cd handles even vfs names. |
||||
# |
||||
# %view -> the command you type will be piped into mc's internal file viewer |
||||
# if you type only the %view and no command, viewer will load %f file |
||||
# instead (i.e. no piping, so it is different to %view cat %f) |
||||
# %view may be directly followed by {} with a list of any of |
||||
# ascii (Ascii mode), hex (Hex mode), nroff (color highlighting for |
||||
# text using backspace for bold and underscore) and unform |
||||
# (no highlighting for nroff sequences) separated by commas. |
||||
# |
||||
# %var -> You use it like this: %var{VAR:default}. This macro will expand |
||||
# to the value of the VAR variable in the environment if it's set |
||||
# otherwise the value in default will be used. This is similar to |
||||
# the Bourne shell ${VAR-default} construct. |
||||
# |
||||
# Rules are applied from top to bottom, thus the order is important. |
||||
# If some actions are missing, search continues as if this target didn't |
||||
# match (i.e. if a file matches the first and second entry and View action |
||||
# is missing in the first one, then on pressing F3 the View action from |
||||
# the second entry will be used. default should catch all the actions. |
||||
# |
||||
# Any new entries you develop for you are always welcome if they are |
||||
# useful on more than one system. You can post your modifications |
||||
# as tickets at www.midnight-commander.org |
||||
|
||||
|
||||
### Changes ### |
||||
# |
||||
# Reorganization: 2012-03-07 Slava Zanko <slavazanko@gmail.com> |
||||
|
||||
|
||||
### GIT Repo ### |
||||
# gitfs changeset |
||||
regex/^\[git\] |
||||
Open=%cd %p/changesetfs:// |
||||
View=%cd %p/patchsetfs:// |
||||
|
||||
### Archives ### |
||||
|
||||
# .tgz, .tpz, .tar.gz, .tar.z, .tar.Z, .ipk, .gem |
||||
regex/\.t([gp]?z|ar\.g?[zZ])$|\.ipk$|\.gem$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.gz |
||||
|
||||
shell/.tar.bz |
||||
# Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.bzip |
||||
|
||||
regex/\.t(ar\.bz2|bz2?|b2)$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.bzip2 |
||||
|
||||
# .tar.lzma, .tlz |
||||
regex/\.t(ar\.lzma|lz)$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.lzma |
||||
|
||||
# .tar.xz, .txz |
||||
regex/\.t(ar\.xz|xz)$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.xz |
||||
|
||||
# .tar.F - used in QNX |
||||
shell/.tar.F |
||||
# Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.F |
||||
|
||||
# .qpr/.qpk - QNX Neutrino package installer files |
||||
regex/\.qp[rk]$ |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.qpr |
||||
|
||||
# tar |
||||
shell/i/.tar |
||||
Open=%cd %p/utar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar |
||||
|
||||
# lha |
||||
type/^LHa\ .*archive |
||||
Open=%cd %p/ulha:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view lha |
||||
|
||||
# arj |
||||
regex/i/\.a(rj|[0-9][0-9])$ |
||||
Open=%cd %p/uarj:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view arj |
||||
|
||||
# cab |
||||
shell/i/.cab |
||||
Open=%cd %p/ucab:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cab |
||||
|
||||
# ha |
||||
shell/i/.ha |
||||
Open=%cd %p/uha:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view ha |
||||
|
||||
# rar |
||||
regex/i/\.r(ar|[0-9][0-9])$ |
||||
Open=%cd %p/urar:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view rar |
||||
|
||||
# ALZip |
||||
shell/i/.alz |
||||
Open=%cd %p/ualz:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view alz |
||||
|
||||
# cpio |
||||
shell/.cpio.Z |
||||
Open=%cd %p/ucpio:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.z |
||||
|
||||
shell/.cpio.xz |
||||
Open=%cd %p/ucpio:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.xz |
||||
|
||||
shell/.cpio.gz |
||||
Open=%cd %p/ucpio:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.gz |
||||
|
||||
shell/i/.cpio |
||||
Open=%cd %p/ucpio:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio |
||||
|
||||
# 7zip archives (they are not man pages) |
||||
shell/i/.7z |
||||
Open=%cd %p/u7z:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view 7z |
||||
|
||||
# patch |
||||
regex/\.(diff|patch)(\.bz2)$ |
||||
Open=%cd %p/patchfs:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||
|
||||
regex/\.(diff|patch)(\.(gz|Z))$ |
||||
Open=%cd %p/patchfs:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||
|
||||
# ls-lR |
||||
regex/(^|\.)ls-?lR(\.gz|Z|bz2)$ |
||||
Open=%cd %p/lslR:// |
||||
|
||||
# trpm |
||||
shell/.trpm |
||||
Open=%cd %p/trpm:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view trpm |
||||
|
||||
# RPM packages (SuSE uses *.spm for source packages) |
||||
regex/\.(src\.rpm|spm)$ |
||||
Open=%cd %p/rpm:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view src.rpm |
||||
|
||||
shell/.rpm |
||||
Open=%cd %p/rpm:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view rpm |
||||
|
||||
# deb |
||||
regex/\.u?deb$ |
||||
Open=%cd %p/deb:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view deb |
||||
|
||||
# dpkg |
||||
shell/.debd |
||||
Open=%cd %p/debd:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view debd |
||||
|
||||
# apt |
||||
shell/.deba |
||||
Open=%cd %p/deba:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view deba |
||||
|
||||
# ISO9660 |
||||
shell/i/.iso |
||||
Open=%cd %p/iso9660:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view iso9660 |
||||
|
||||
|
||||
regex/\.(diff|patch)$ |
||||
Open=%cd %p/patchfs:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view cat |
||||
|
||||
# ar library |
||||
regex/\.s?a$ |
||||
Open=%cd %p/uar:// |
||||
#Open=%view{ascii} ar tv %f |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view ar |
||||
|
||||
# gplib |
||||
shell/i/.lib |
||||
Open=%cd %p/ulib:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view lib |
||||
|
||||
|
||||
# Mailboxes |
||||
type/^ASCII\ mail\ text |
||||
Open=%cd %p/mailfs:// |
||||
|
||||
|
||||
### Sources ### |
||||
|
||||
# C/C++ |
||||
regex/i/\.(c|cc|cpp)$ |
||||
Include=editor |
||||
|
||||
# C/C++ header |
||||
regex/i/\.(h|hh|hpp)$ |
||||
Include=editor |
||||
|
||||
# Fortran |
||||
shell/i/.f |
||||
Include=editor |
||||
|
||||
# Assembler |
||||
regex/i/\.(s|asm)$ |
||||
Include=editor |
||||
|
||||
include/editor |
||||
Open=%var{EDITOR:vi} %f |
||||
|
||||
# .so libraries |
||||
regex/\.(so|so\.[0-9\.]*)$ |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view so |
||||
|
||||
# Object |
||||
type/^ELF |
||||
#Open=%var{PAGER:more} %f |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view elf |
||||
|
||||
### Documentation ### |
||||
|
||||
# Texinfo |
||||
#regex/\.(te?xi|texinfo)$ |
||||
|
||||
# GNU Info page |
||||
type/^Info\ text |
||||
Open=/usr/libexec/mc/ext.d/text.sh open info |
||||
|
||||
shell/.info |
||||
Open=/usr/libexec/mc/ext.d/text.sh open info |
||||
|
||||
# Exception: .3gp are video files not manual pages |
||||
shell/i/.3gp |
||||
Include=video |
||||
|
||||
# Manual page |
||||
regex/(([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])|\.man)$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man %var{PAGER:more} |
||||
|
||||
# Perl pod page |
||||
shell/.pod |
||||
Open=/usr/libexec/mc/ext.d/text.sh open pod %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view pod %var{PAGER:more} |
||||
|
||||
# Troff with me macros. |
||||
# Exception - "read.me" is not a nroff file. |
||||
shell/read.me |
||||
Open= |
||||
View= |
||||
|
||||
shell/.me |
||||
Open=/usr/libexec/mc/ext.d/text.sh open nroff.me %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view nroff.me %var{PAGER:more} |
||||
|
||||
# Troff with ms macros. |
||||
shell/.ms |
||||
Open=/usr/libexec/mc/ext.d/text.sh open nroff.ms %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view nroff.ms %var{PAGER:more} |
||||
|
||||
# Manual page - compressed |
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.g?[Zz]$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.gz %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.gz %var{PAGER:more} |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.bz %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.bz %var{PAGER:more} |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz2$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.bz2 %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.bz2 %var{PAGER:more} |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.lzma$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.lzma %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.lzma %var{PAGER:more} |
||||
|
||||
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.xz$ |
||||
Open=/usr/libexec/mc/ext.d/text.sh open man.xz %var{PAGER:more} |
||||
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.xz %var{PAGER:more} |
||||
|
||||
# CHM |
||||
shell/i/.chm |
||||
Open=/usr/libexec/mc/ext.d/text.sh open chm |
||||
|
||||
### Images ### |
||||
|
||||
type/^GIF |
||||
Include=image |
||||
|
||||
type/^JPEG |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view jpeg |
||||
Include=image |
||||
|
||||
type/^PC\ bitmap |
||||
Include=image |
||||
|
||||
type/^PNG |
||||
Include=image |
||||
|
||||
type/^JNG |
||||
Include=image |
||||
|
||||
type/^MNG |
||||
Include=image |
||||
|
||||
type/^TIFF |
||||
Include=image |
||||
|
||||
type/^PBM |
||||
Include=image |
||||
|
||||
type/^PGM |
||||
Include=image |
||||
|
||||
type/^PPM |
||||
Include=image |
||||
|
||||
type/^Netpbm |
||||
Include=image |
||||
|
||||
shell/.xcf |
||||
Open=/usr/libexec/mc/ext.d/image.sh open xcf |
||||
|
||||
shell/.xbm |
||||
Open=/usr/libexec/mc/ext.d/image.sh open xbm |
||||
|
||||
shell/.xpm |
||||
Include=image |
||||
View=/usr/libexec/mc/ext.d/image.sh view xpm %f |
||||
|
||||
shell/.ico |
||||
Include=image |
||||
|
||||
shell/i/.svg |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view svg |
||||
Open=/usr/libexec/mc/ext.d/image.sh open svg |
||||
|
||||
include/image |
||||
Open=geeqie |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view ALL_FORMATS |
||||
|
||||
|
||||
### Sound files ### |
||||
|
||||
regex/i/\.(wav|snd|voc|au|smp|aiff|snd|m4a|ape|aac|wv)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open common |
||||
|
||||
regex/i/\.(mod|s3m|xm|it|mtm|669|stm|ult|far)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open mod |
||||
|
||||
shell/i/.waw22 |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open wav22 |
||||
|
||||
shell/i/.mp3 |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open mp3 |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view mp3 |
||||
|
||||
regex/i/\.og[gax]$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open ogg |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view ogg |
||||
|
||||
regex/i/\.(spx|flac)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open common |
||||
|
||||
regex/i/\.(midi?|rmid?)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open midi |
||||
|
||||
shell/i/.wma |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open wma |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view wma |
||||
|
||||
|
||||
### Play lists ### |
||||
|
||||
regex/i/\.(m3u|pls)$ |
||||
Open=/usr/libexec/mc/ext.d/sound.sh open playlist |
||||
|
||||
|
||||
### Video ### |
||||
|
||||
shell/i/.avi |
||||
Include=video |
||||
|
||||
regex/i/\.as[fx]$ |
||||
Include=video |
||||
|
||||
shell/i/.divx |
||||
Include=video |
||||
|
||||
shell/i/.mkv |
||||
Include=video |
||||
|
||||
regex/i/\.(mov|qt)$ |
||||
Include=video |
||||
|
||||
regex/i/\.(mp4|m4v|mpe?g)$ |
||||
Include=video |
||||
|
||||
# MPEG-2 TS container + H.264 codec |
||||
shell/i/.mts |
||||
Include=video |
||||
|
||||
shell/i/.ts |
||||
Include=video |
||||
|
||||
shell/i/.vob |
||||
Include=video |
||||
|
||||
shell/i/.wmv |
||||
Include=video |
||||
|
||||
regex/i/\.fl[icv]$ |
||||
Include=video |
||||
|
||||
shell/i/.ogv |
||||
Include=video |
||||
|
||||
regex/i/\.ra?m$ |
||||
Open=/usr/libexec/mc/ext.d/video.sh open ram |
||||
|
||||
# WebM |
||||
shell/i/.webm |
||||
Include=video |
||||
|
||||
type/WebM |
||||
Include=video |
||||
|
||||
include/video |
||||
Open=vlc %p |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/video.sh view ALL_FORMATS |
||||
|
||||
|
||||
### Documents ### |
||||
|
||||
# Postscript |
||||
type/^PostScript |
||||
Include=zathura |
||||
|
||||
# PDF |
||||
type/^PDF |
||||
Include=zathura |
||||
|
||||
# DjVu |
||||
regex/i/\.djvu?$ |
||||
Include=zathura |
||||
|
||||
include/zathura |
||||
Open=nohup zathura -c %var{SHELLRC:~/.shellrc}/etc/soft/zathura/ -d %var{SHELLRC:~/.shellrc}/etc/soft/zathura/ -p %var{SHELLRC:~/.shellrc}/etc/soft/zathura/plugins %p &>/dev/null & |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view djvu |
||||
|
||||
# html |
||||
regex/i/\.html?$ |
||||
Open=/usr/libexec/mc/ext.d/web.sh open html |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/web.sh view html |
||||
|
||||
# StarOffice 5.2 |
||||
shell/.sdw |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||
|
||||
# StarOffice 6 and OpenOffice.org formats |
||||
regex/i/\.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg)$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view odt |
||||
|
||||
# AbiWord |
||||
shell/.abw |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open abw |
||||
|
||||
# Gnumeric |
||||
shell/i/.gnumeric |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open gnumeric |
||||
|
||||
# Microsoft Word Document |
||||
regex/i/\.(do[ct]|wri)$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msdoc |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msdoc |
||||
type/^Microsoft\ Word |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msdoc |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msdoc |
||||
|
||||
# RTF document |
||||
shell/i/.rtf |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msdoc |
||||
|
||||
# Microsoft Excel Worksheet |
||||
regex/i/\.xl[sw]$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msxls |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msxls |
||||
type/^Microsoft\ Excel |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msxls |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msxls |
||||
|
||||
regex/i/\.(ppt|pps)$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open msppt |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msppt |
||||
|
||||
# Use OpenOffice.org to open any MS Office documents |
||||
type/^Microsoft\ Office\ Document |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||
|
||||
# Framemaker |
||||
type/^FrameMaker |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open framemaker |
||||
|
||||
# DVI |
||||
shell/i/.dvi |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open dvi |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view dvi |
||||
|
||||
# TeX |
||||
shell/i/.tex |
||||
Include=editor |
||||
|
||||
# Comic Books |
||||
regex/i/\.cb[zr]$ |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open comic |
||||
|
||||
# Epub |
||||
shell/i/.epub |
||||
Open=/usr/libexec/mc/ext.d/doc.sh open epub |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view epub |
||||
|
||||
|
||||
### Miscellaneous ### |
||||
|
||||
# Compiled Java classes |
||||
shell/.class |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view javaclass |
||||
|
||||
# Makefile |
||||
regex/[Mm]akefile$ |
||||
Open=make -f %f %{Enter parameters} |
||||
|
||||
# Imakefile |
||||
shell/Imakefile |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open imakefile |
||||
|
||||
# Makefile.PL (MakeMaker) |
||||
regex/^Makefile.(PL|pl)$ |
||||
Open=%var{PERL:perl} %f |
||||
|
||||
# sqlite3.db |
||||
type/^SQLite 3.x database |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open sqlite |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view sqlite |
||||
|
||||
# dbf |
||||
shell/i/.dbf |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open dbf |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view dbf |
||||
|
||||
# REXX script |
||||
regex/\.(rexx?|cmd)$ |
||||
Open=rexx %f %{Enter parameters};echo "Press ENTER";read y |
||||
|
||||
# Disk images for Commodore computers (VIC20, C64, C128) |
||||
shell/i/.d64 |
||||
Open=%cd %p/uc1541:// |
||||
View=%view{ascii} c1541 %f -list |
||||
Extract=c1541 %f -extract |
||||
|
||||
# Glade, a user interface designer for GTK+ and GNOME |
||||
shell/i/.glade |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open glade |
||||
|
||||
# Gettext Catalogs |
||||
shell/.mo |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view mo |
||||
|
||||
# lyx |
||||
shell/i/.lyx |
||||
Open=/usr/libexec/mc/ext.d/misc.sh open lyx |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view lyx |
||||
|
||||
# torrent |
||||
shell/i/.torrent |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view torrent |
||||
|
||||
### Plain compressed files ### |
||||
|
||||
# ace |
||||
shell/i/.ace |
||||
Open=%cd %p/uace:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view ace |
||||
Extract=unace x %f |
||||
|
||||
# arc |
||||
shell/i/.arc |
||||
Open=%cd %p/uarc:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view arc |
||||
Extract=arc x %f '*' |
||||
Extract (with flags)=I=%{Enter any Arc flags:}; if test -n "$I"; then arc x $I %f; fi |
||||
|
||||
# zip |
||||
type/i/^zip\ archive |
||||
Open=%cd %p/uzip:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view zip |
||||
|
||||
# zoo |
||||
shell/i/.zoo |
||||
Open=%cd %p/uzoo:// |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view zoo |
||||
|
||||
# gzip |
||||
type/^gzip |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view gz %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||
|
||||
regex/\.(gz|Z)$ |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||
|
||||
# bzip2 |
||||
type/^bzip2 |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view bzip2 %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||
|
||||
regex/\.bz2?$ |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||
|
||||
# bzip |
||||
type/^bzip |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view bzip %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bzip |
||||
|
||||
# compress |
||||
type/^compress |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view gz %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||
|
||||
# lzma |
||||
regex/\.lzma$ |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view lzma %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view lzma |
||||
|
||||
# xz |
||||
regex/\.xz$ |
||||
Open=/usr/libexec/mc/ext.d/archive.sh view xz %var{PAGER:more} |
||||
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view xz |
||||
|
||||
# Parity Archive |
||||
type/^Parity\ Archive\ Volume\ Set |
||||
Open=/usr/libexec/mc/ext.d/archive.sh open par2 |
||||
|
||||
### Default ### |
||||
|
||||
# Default target for anything not described above |
||||
default/* |
||||
Open= |
||||
View= |
||||
|
||||
|
||||
### EOF ### |
@ -1,151 +0,0 @@
@@ -1,151 +0,0 @@
|
||||
[skin] |
||||
description=Dark skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;black |
||||
selected=black;cyan |
||||
marked=yellow;black |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;blue |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;black |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=brightcyan;blue |
||||
dfocus=blue;cyan |
||||
dhotnormal=white; |
||||
dhotfocus=white;cyan |
||||
dtitle=white; |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightmagenta; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=brightblue; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightgreen; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=lightgray;blue |
||||
menuhot=white;blue |
||||
menusel=black;cyan |
||||
menuhotsel=white;cyan |
||||
menuinactive=black;white |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;black |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;white |
||||
editwhitespace=brightblue;black |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=white;blue |
||||
# editbg= |
||||
editframe=gray; |
||||
editframeactive=lightgray; |
||||
editframedrag=red; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewbold=yellow;black |
||||
viewunderline=brightred;black |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[buttonbar] |
||||
hotkey=red;white |
||||
button=black;white |
||||
|
||||
[statusbar] |
||||
_default_=black;white |
||||
|
||||
[popupmenu] |
||||
_default_=lightgray;blue |
||||
menusel=black;cyan |
||||
menutitle=lightgray;blue |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↑ |
||||
sort-sign-down=↓ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = ← |
||||
history-next-item-sign = → |
||||
history-show-list-sign = ↓ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
||||
|
@ -1,150 +0,0 @@
@@ -1,150 +0,0 @@
|
||||
[skin] |
||||
description=Dark Far skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=lightgray;black |
||||
selected=black;cyan |
||||
marked=yellow;black |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;blue |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;black |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=brightcyan;blue |
||||
dfocus=blue;cyan |
||||
dhotnormal=white; |
||||
dhotfocus=white;cyan |
||||
dtitle=white; |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightmagenta; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=brightblue; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightgreen; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=lightgray;blue |
||||
menuhot=white;blue |
||||
menusel=black;cyan |
||||
menuhotsel=white;cyan |
||||
menuinactive=black;white |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;black |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;white |
||||
editwhitespace=brightblue;black |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=white;blue |
||||
# editbg= |
||||
editframe=gray; |
||||
editframeactive=lightgray; |
||||
editframedrag=white; |
||||
window-state-char = ↕ |
||||
window-close-char = × |
||||
|
||||
[viewer] |
||||
viewbold=yellow;black |
||||
viewunderline=brightred;black |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[buttonbar] |
||||
hotkey=red;white |
||||
button=black;white |
||||
|
||||
[statusbar] |
||||
_default_=black;white |
||||
|
||||
[popupmenu] |
||||
_default_=lightgray;blue |
||||
menusel=black;cyan |
||||
menutitle=lightgray;blue |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↑ |
||||
sort-sign-down=↓ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = ← |
||||
history-next-item-sign = → |
||||
history-show-list-sign = ↓ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,138 +0,0 @@
@@ -1,138 +0,0 @@
|
||||
[skin] |
||||
description=Standard skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;blue |
||||
selected=black;cyan |
||||
marked=yellow;blue |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;lightgray |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;blue |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=black;lightgray |
||||
dfocus=black;cyan |
||||
dhotnormal=blue;lightgray |
||||
dhotfocus=blue;cyan |
||||
dtitle=blue;lightgray |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdtitle=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightgreen; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=black; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightmagenta; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=white;cyan |
||||
menuhot=yellow;cyan |
||||
menusel=white;black |
||||
menuhotsel=yellow;black |
||||
menuinactive=black;cyan |
||||
|
||||
[buttonbar] |
||||
hotkey=white;black |
||||
button=black;cyan |
||||
|
||||
[statusbar] |
||||
_default_=black;cyan |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;blue |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg=lightgray; |
||||
# editframe=lightgray; |
||||
editframeactive=white; |
||||
editframedrag=green; |
||||
window-state-char = * |
||||
window-close-char = X |
||||
|
||||
[viewer] |
||||
viewbold=yellow;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=white;cyan |
||||
menusel=yellow;black |
||||
menutitle=yellow;cyan |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ' |
||||
sort-sign-down = , |
||||
|
||||
[widget-panel] |
||||
filename-scroll-left-char = { |
||||
filename-scroll-right-char = } |
@ -1,137 +0,0 @@
@@ -1,137 +0,0 @@
|
||||
[skin] |
||||
description=Far-like skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=lightgray;blue |
||||
selected=black;cyan |
||||
marked=yellow;blue |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
commandlinemark=black;lightgray |
||||
disabled=gray;lightgray |
||||
reverse=black;lightgray |
||||
header=yellow;blue |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=black;lightgray |
||||
dfocus=black;cyan |
||||
dhotnormal=blue;lightgray |
||||
dhotfocus=blue;cyan |
||||
dtitle=blue;lightgray |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightgreen; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=black; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightmagenta; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=white;cyan |
||||
menuhot=yellow;cyan |
||||
menusel=white;black |
||||
menuhotsel=yellow;black |
||||
menuinactive=lightgray;blue |
||||
|
||||
[buttonbar] |
||||
hotkey=lightgray;blue |
||||
button=lightgray;blue |
||||
|
||||
[statusbar] |
||||
_default_=black;cyan |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;blue |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg= |
||||
# editframe= |
||||
editframeactive=white; |
||||
editframedrag=green; |
||||
window-state-char = * |
||||
window-close-char = X |
||||
|
||||
[viewer] |
||||
viewbold=yellow;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=white;cyan |
||||
menusel=white;black |
||||
menutitle=white;cyan |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ' |
||||
sort-sign-down = , |
||||
|
||||
[widget-panel] |
||||
filename-scroll-left-char = { |
||||
filename-scroll-right-char = } |
@ -1,156 +0,0 @@
@@ -1,156 +0,0 @@
|
||||
# Please, use this skin in UTF-8 system codepage only. |
||||
|
||||
[skin] |
||||
description=Enhanced standart skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=lightgray;blue |
||||
selected=black;cyan |
||||
marked=yellow;blue |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=gray;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;lightgray |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;blue |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=black;lightgray |
||||
dfocus=black;cyan |
||||
dhotnormal=blue;lightgray |
||||
dhotfocus=blue;cyan |
||||
dtitle=blue;lightgray |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightgreen; |
||||
symlink=lightgray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=black; |
||||
core=red; |
||||
temp=gray; |
||||
archive=brightmagenta; |
||||
doc=brown; |
||||
source=cyan; |
||||
media=green; |
||||
graph=brightcyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=white;cyan |
||||
menuhot=yellow;cyan |
||||
menusel=white;black |
||||
menuhotsel=yellow;black |
||||
menuinactive=black;cyan |
||||
|
||||
[buttonbar] |
||||
hotkey=white;black |
||||
button=black;cyan |
||||
|
||||
[statusbar] |
||||
_default_=black;cyan |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;blue |
||||
editbold=yellow;brightgreen |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg= |
||||
# editframe= |
||||
editframeactive=lightgray; |
||||
editframedrag=cyan; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewbold=yellow;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=white;cyan |
||||
menusel=white;black |
||||
menutitle=white;cyan |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ↓ |
||||
sort-sign-down = ↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = ⋅ |
||||
hiddenfiles-sign-hide = • |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
|
@ -1,131 +0,0 @@
@@ -1,131 +0,0 @@
|
||||
[skin] |
||||
description=GoTaR @PLD Linux |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;black |
||||
selected=white;blue |
||||
marked=brightred; |
||||
markselect=yellow; |
||||
gauge=;yellow |
||||
input=brightgreen; |
||||
disabled=gray;blue |
||||
reverse=brightgreen;blue |
||||
header=brightred; |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=brightcyan;blue |
||||
dfocus=brightred;black |
||||
dhotnormal=brightred; |
||||
dhotfocus=yellow;black |
||||
dtitle=brightred; |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=brightgreen;blue |
||||
errdhotnormal=yellow; |
||||
errdhotfocus=yellow;blue |
||||
errdtitle=yellow; |
||||
|
||||
[filehighlight] |
||||
directory=brightcyan; |
||||
executable=brightgreen; |
||||
symlink=red; |
||||
hardlink= |
||||
stalelink=yellow;blue |
||||
device=green; |
||||
special=brightblue; |
||||
core=red; |
||||
temp=gray; |
||||
archive=cyan; |
||||
doc=brown; |
||||
source=green; |
||||
media=white; |
||||
graph=magenta; |
||||
database=; |
||||
|
||||
[menu] |
||||
_default_=brightgreen;black |
||||
menuhot=brightred; |
||||
menusel=brightcyan;blue |
||||
menuhotsel=yellow; |
||||
menuinactive=lightgray; |
||||
|
||||
[buttonbar] |
||||
hotkey=lightgray;black |
||||
button=white;blue |
||||
|
||||
[statusbar] |
||||
_default_=white;blue |
||||
|
||||
[help] |
||||
_default_=brightred;black |
||||
helpitalic=brightcyan; |
||||
helpbold=brightgreen; |
||||
helplink=white; |
||||
helpslink=yellow;blue |
||||
helptitle=brightgreen; |
||||
|
||||
[editor] |
||||
_default_=lightgray;black |
||||
editbold=yellow;blue |
||||
editmarked=brightgreen;red |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=brightgreen |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;blue |
||||
# editbg= |
||||
# editframe= |
||||
editframeactive=white; |
||||
editframedrag=green; |
||||
window-state-char = * |
||||
window-close-char = X |
||||
|
||||
[viewer] |
||||
viewbold=brightred;black |
||||
viewunderline=brightgreen;black |
||||
viewselected=yellow;black |
||||
|
||||
[diffviewer] |
||||
_default_=lightgray;black |
||||
added=brightgreen; |
||||
changedline=cyan; |
||||
changednew=yellow; |
||||
changed=;brown |
||||
removed=;blue |
||||
folder=brightblue; |
||||
error=white;red |
||||
|
||||
[popupmenu] |
||||
_default_=brightgreen;black |
||||
menusel=brightcyan;blue |
||||
menutitle=brightcyan;black |
||||
|
||||
[widget-panel] |
||||
filename-scroll-left-char = { |
||||
filename-scroll-right-char = } |
@ -1,129 +0,0 @@
@@ -1,129 +0,0 @@
|
||||
[skin] |
||||
description=mc-4.6 skin |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;blue |
||||
selected=black;cyan |
||||
marked=yellow;blue |
||||
markselect=yellow;cyan |
||||
gauge=white;black |
||||
input=black;cyan |
||||
inputunchanged=black;cyan |
||||
inputmark=cyan;black |
||||
disabled=gray;lightgray |
||||
reverse=black;lightgray |
||||
commandlinemark=black;lightgray |
||||
header=yellow;blue |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=black;lightgray |
||||
dfocus=black;cyan |
||||
dhotnormal=blue;lightgray |
||||
dhotfocus=blue;cyan |
||||
dtitle=blue;lightgray |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdtitle=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red |
||||
|
||||
[filehighlight] |
||||
directory=white; |
||||
executable=brightgreen; |
||||
symlink=lightgray; |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=black; |
||||
|
||||
[menu] |
||||
_default_=black;cyan |
||||
menuhot=yellow;cyan |
||||
menusel=white;black |
||||
menuhotsel=yellow;black |
||||
menuinactive=gray;cyan |
||||
|
||||
[buttonbar] |
||||
hotkey=lightgray;black |
||||
button=black;cyan |
||||
|
||||
[statusbar] |
||||
_default_=black;cyan |
||||
|
||||
[help] |
||||
_default_=black;lightgray |
||||
helpitalic=red;lightgray |
||||
helpbold=blue;lightgray |
||||
helplink=black;cyan |
||||
helpslink=yellow;blue |
||||
helptitle=blue;lightgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;blue |
||||
editbold=yellow; |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg= |
||||
# editframe= |
||||
editframeactive=lightgray; |
||||
editframedrag=cyan; |
||||
window-state-char = * |
||||
window-close-char = X |
||||
|
||||
[viewer] |
||||
viewbold=yellow;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=yellow;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;green |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=white;cyan |
||||
menusel=yellow;black |
||||
menutitle=yellow;cyan |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ' |
||||
sort-sign-down = , |
||||
|
||||
[widget-panel] |
||||
filename-scroll-left-char = { |
||||
filename-scroll-right-char = } |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarCon16-DefaultBG (user) |
||||
256colors=false |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color7;default |
||||
selected=color15;color2 |
||||
marked=color11;;bold |
||||
markselect=color11;color2;bold |
||||
gauge=color15;color2 |
||||
input=color15;color0 |
||||
inputmark=color11;color2;bold |
||||
inputunchanged=;color0 |
||||
commandlinemark=color11;color2;bold |
||||
reverse=color0;color10 |
||||
header=color3 |
||||
disabled=color8;color7 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color0;color7 |
||||
dhotnormal=color3 |
||||
dfocus=color11;color2;bold |
||||
dhotfocus=color3;color2 |
||||
dtitle=color11;;bold |
||||
|
||||
[error] |
||||
_default_=color15;color1 |
||||
errdfocus=color11;color2;bold |
||||
errdhotnormal=color13 |
||||
errdhotfocus=color13;color2 |
||||
errdtitle=color11;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color15;;bold |
||||
executable=color10 |
||||
symlink=color12 |
||||
hardlink= |
||||
stalelink=color9 |
||||
device=color13 |
||||
special=color3 |
||||
core=color1 |
||||
temp=color8 |
||||
archive=color3 |
||||
doc=color14 |
||||
source=color6 |
||||
media=color5 |
||||
graph=color13 |
||||
database=color2 |
||||
|
||||
[menu] |
||||
_default_=color7;default |
||||
menuhot=color3 |
||||
menusel=color11;color2;bold |
||||
menuhotsel=color3;color2 |
||||
menuinactive=color8 |
||||
|
||||
[popupmenu] |
||||
_default_=color7;default |
||||
menusel=color11;color2;bold |
||||
menutitle=color11;;bold |
||||
|
||||
[buttonbar] |
||||
button=color7 |
||||
hotkey=color15;color3 |
||||
|
||||
[statusbar] |
||||
_default_=color15;color2 |
||||
|
||||
[help] |
||||
_default_=color0;color7 |
||||
helpitalic=color10;;bold |
||||
helpbold=color5 |
||||
helplink=color14 |
||||
helpslink=color11;color2;bold |
||||
|
||||
[editor] |
||||
_default_=color7;default |
||||
editbold=color15;;bold |
||||
editmarked=color11;color2;bold |
||||
editwhitespace=color12;color4 |
||||
editlinestate=color2;color0 |
||||
bookmark=color0;color7 |
||||
bookmarkfound=color0;color7 |
||||
editrightmargin=color0;color7 |
||||
|
||||
[viewer] |
||||
_default_=color7;default |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color15;color4 |
||||
changednew=color15;color2 |
||||
changed=color15;color6 |
||||
added=color0;color7 |
||||
removed=color8;color0 |
||||
folder=color11;color0;bold |
||||
error=color15;color1 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarCon16 (user) |
||||
256colors=false |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color7;color0 |
||||
selected=color15;color2 |
||||
marked=color11;;bold |
||||
markselect=color11;color2;bold |
||||
gauge=color15;color2 |
||||
input=color15 |
||||
inputmark=color11;color2;bold |
||||
inputunchanged= |
||||
commandlinemark=color11;color2;bold |
||||
reverse=color0;color10 |
||||
header=color3 |
||||
disabled=color8;color7 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color0;color7 |
||||
dhotnormal=color3 |
||||
dfocus=color11;color2;bold |
||||
dhotfocus=color3;color2 |
||||
dtitle=color11;;bold |
||||
|
||||
[error] |
||||
_default_=color15;color1 |
||||
errdfocus=color11;color2;bold |
||||
errdhotnormal=color13 |
||||
errdhotfocus=color13;color2 |
||||
errdtitle=color11;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color15;;bold |
||||
executable=color10 |
||||
symlink=color12 |
||||
hardlink= |
||||
stalelink=color9 |
||||
device=color13 |
||||
special=color3 |
||||
core=color1 |
||||
temp=color8 |
||||
archive=color3 |
||||
doc=color14 |
||||
source=color6 |
||||
media=color5 |
||||
graph=color13 |
||||
database=color2 |
||||
|
||||
[menu] |
||||
_default_=color0;color7 |
||||
menuhot=color3 |
||||
menusel=color11;color2;bold |
||||
menuhotsel=color3;color2 |
||||
menuinactive=color8 |
||||
|
||||
[popupmenu] |
||||
_default_=color0;color7 |
||||
menusel=color11;color2;bold |
||||
menutitle=color11;;bold |
||||
|
||||
[buttonbar] |
||||
button=color7 |
||||
hotkey=color15;color3 |
||||
|
||||
[statusbar] |
||||
_default_=color15;color2 |
||||
|
||||
[help] |
||||
_default_=color0;color7 |
||||
helpitalic=color10;;bold |
||||
helpbold=color5 |
||||
helplink=color14 |
||||
helpslink=color11;color2;bold |
||||
|
||||
[editor] |
||||
_default_=color7;color0 |
||||
editbold=color15;;bold |
||||
editmarked=color11;color2;bold |
||||
editwhitespace=color12;color4 |
||||
editlinestate=color2;color0 |
||||
bookmark=color0;color7 |
||||
bookmarkfound=color0;color7 |
||||
editrightmargin=color0;color7 |
||||
|
||||
[viewer] |
||||
_default_=color7;color0 |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color15;color4 |
||||
changednew=color15;color2 |
||||
changed=color15;color6 |
||||
added=color0;color7 |
||||
removed=color8;color0 |
||||
folder=color11;color0;bold |
||||
error=color15;color1 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarCon16root-DefaultBG (root) |
||||
256colors=false |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color7;default |
||||
selected=color15;color1 |
||||
marked=color11;;bold |
||||
markselect=color11;color1;bold |
||||
gauge=color15;color1 |
||||
input=color15;color0 |
||||
inputmark=color11;color1;bold |
||||
inputunchanged=;color0 |
||||
commandlinemark=color11;color1;bold |
||||
reverse=color0;color9 |
||||
header=color3 |
||||
disabled=color8;color7 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color0;color7 |
||||
dhotnormal=color3 |
||||
dfocus=color11;color1;bold |
||||
dhotfocus=color5;color1;bold |
||||
dtitle=color11;;bold |
||||
|
||||
[error] |
||||
_default_=color15;color1 |
||||
errdfocus=color11;color3;bold |
||||
errdhotnormal=color13 |
||||
errdhotfocus=color13;color3 |
||||
errdtitle=color11;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color15;;bold |
||||
executable=color10 |
||||
symlink=color12 |
||||
hardlink= |
||||
stalelink=color9 |
||||
device=color13 |
||||
special=color3 |
||||
core=color1 |
||||
temp=color8 |
||||
archive=color3 |
||||
doc=color14 |
||||
source=color6 |
||||
media=color5 |
||||
graph=color13 |
||||
database=color2 |
||||
|
||||
[menu] |
||||
_default_=color7;default |
||||
menuhot=color3 |
||||
menusel=color11;color1;bold |
||||
menuhotsel=color5;color1;bold |
||||
menuinactive=color8 |
||||
|
||||
[popupmenu] |
||||
_default_=color7;default |
||||
menusel=color11;color1;bold |
||||
menutitle=color11;;bold |
||||
|
||||
[buttonbar] |
||||
button=color7 |
||||
hotkey=color15;color3 |
||||
|
||||
[statusbar] |
||||
_default_=color15;color1 |
||||
|
||||
[help] |
||||
_default_=color0;color7 |
||||
helpitalic=color10;;bold |
||||
helpbold=color5 |
||||
helplink=color14 |
||||
helpslink=color11;color1;bold |
||||
|
||||
[editor] |
||||
_default_=color7;default |
||||
editbold=color15;;bold |
||||
editmarked=color11;color1;bold |
||||
editwhitespace=color12;color4 |
||||
editlinestate=color1;color0 |
||||
bookmark=color0;color7 |
||||
bookmarkfound=color0;color7 |
||||
editrightmargin=color0;color7 |
||||
|
||||
[viewer] |
||||
_default_=color7;default |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color15;color4 |
||||
changednew=color15;color5 |
||||
changed=color15;color3 |
||||
added=color0;color7 |
||||
removed=color8;color0 |
||||
folder=color11;color0;bold |
||||
error=color15;color1 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarCon16root (root) |
||||
256colors=false |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color7;color0 |
||||
selected=color15;color1 |
||||
marked=color11;;bold |
||||
markselect=color11;color1;bold |
||||
gauge=color15;color1 |
||||
input=color15 |
||||
inputmark=color11;color1;bold |
||||
inputunchanged= |
||||
commandlinemark=color11;color1;bold |
||||
reverse=color0;color9 |
||||
header=color3 |
||||
disabled=color8;color7 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color0;color7 |
||||
dhotnormal=color3 |
||||
dfocus=color11;color1;bold |
||||
dhotfocus=color5;color1;bold |
||||
dtitle=color11;;bold |
||||
|
||||
[error] |
||||
_default_=color15;color1 |
||||
errdfocus=color11;color3;bold |
||||
errdhotnormal=color13 |
||||
errdhotfocus=color13;color3 |
||||
errdtitle=color11;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color15;;bold |
||||
executable=color10 |
||||
symlink=color12 |
||||
hardlink= |
||||
stalelink=color9 |
||||
device=color13 |
||||
special=color3 |
||||
core=color1 |
||||
temp=color8 |
||||
archive=color3 |
||||
doc=color14 |
||||
source=color6 |
||||
media=color5 |
||||
graph=color13 |
||||
database=color2 |
||||
|
||||
[menu] |
||||
_default_=color0;color7 |
||||
menuhot=color3 |
||||
menusel=color11;color1;bold |
||||
menuhotsel=color5;color1;bold |
||||
menuinactive=color8 |
||||
|
||||
[popupmenu] |
||||
_default_=color0;color7 |
||||
menusel=color11;color1;bold |
||||
menutitle=color11;;bold |
||||
|
||||
[buttonbar] |
||||
button=color7 |
||||
hotkey=color15;color3 |
||||
|
||||
[statusbar] |
||||
_default_=color15;color1 |
||||
|
||||
[help] |
||||
_default_=color0;color7 |
||||
helpitalic=color10;;bold |
||||
helpbold=color5 |
||||
helplink=color14 |
||||
helpslink=color11;color1;bold |
||||
|
||||
[editor] |
||||
_default_=color7;color0 |
||||
editbold=color15;;bold |
||||
editmarked=color11;color1;bold |
||||
editwhitespace=color12;color4 |
||||
editlinestate=color1;color0 |
||||
bookmark=color0;color7 |
||||
bookmarkfound=color0;color7 |
||||
editrightmargin=color0;color7 |
||||
|
||||
[viewer] |
||||
_default_=color7;color0 |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color15;color4 |
||||
changednew=color15;color5 |
||||
changed=color15;color3 |
||||
added=color0;color7 |
||||
removed=color8;color0 |
||||
folder=color11;color0;bold |
||||
error=color15;color1 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarIn256-DefaultBG (user) |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color250;default |
||||
selected=color253;color23 |
||||
marked=color228;;bold |
||||
markselect=color228;color23;bold |
||||
gauge=color250;color66 |
||||
input=color187;color235;bold |
||||
inputmark=color228;color23;bold |
||||
inputunchanged=color144;color235;bold |
||||
commandlinemark=color228;color23;bold |
||||
reverse=color254;color66 |
||||
header=color180;;bold |
||||
disabled=color246;color239 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color252;color239 |
||||
dhotnormal=color214 |
||||
dfocus=color228;color23;bold |
||||
dhotfocus=color214;color23 |
||||
dtitle=color180;;bold |
||||
|
||||
[error] |
||||
_default_=color230;color52 |
||||
errdfocus=color254;color23;bold |
||||
errdhotnormal=color203;color52 |
||||
errdhotfocus=color203;color23;bold |
||||
errdtitle=color227;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color144;;bold |
||||
executable=color114 |
||||
symlink=color45 |
||||
hardlink= |
||||
stalelink=color203 |
||||
device=color170 |
||||
special=color142 |
||||
core=color197 |
||||
temp=color245 |
||||
archive=color172 |
||||
doc=color153 |
||||
source=color109 |
||||
media=color141 |
||||
graph=color216 |
||||
database=color103 |
||||
|
||||
[menu] |
||||
_default_=color250;default |
||||
menuhot=color214 |
||||
menusel=color253;color23 |
||||
menuhotsel=color214;color23 |
||||
menuinactive=color245 |
||||
|
||||
[popupmenu] |
||||
_default_=color250;default |
||||
menusel=color253;color23 |
||||
menutitle=color180;;bold |
||||
|
||||
[buttonbar] |
||||
button=color253;color236 |
||||
hotkey=color214;color238;bold |
||||
|
||||
[statusbar] |
||||
_default_=color253;color66 |
||||
|
||||
[help] |
||||
_default_=color252;color239 |
||||
helpitalic=color114;;bold |
||||
helpbold=color180;;bold |
||||
helplink=color45 |
||||
helpslink=color228;color23;bold |
||||
|
||||
[editor] |
||||
_default_=color250;default |
||||
editbold=color228;;bold |
||||
editmarked=color228;color23;bold |
||||
editwhitespace=color56;color234 |
||||
editlinestate=color66;color235 |
||||
bookmark=;color239 |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=;color235;bold |
||||
|
||||
[viewer] |
||||
_default_=color250;default |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color231;color29 |
||||
changednew=color232;color78 |
||||
changed=color231;color39 |
||||
added=color232;color81 |
||||
removed=;color234 |
||||
folder=color232;color185 |
||||
error=color231;color160 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarIn256 (user) |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color252;color237 |
||||
selected=color253;color23 |
||||
marked=color228;;bold |
||||
markselect=color228;color23;bold |
||||
gauge=color250;color66 |
||||
input=color187;color235;bold |
||||
inputmark=color228;color23;bold |
||||
inputunchanged=color144;color235;bold |
||||
commandlinemark=color228;color23;bold |
||||
reverse=color254;color66 |
||||
header=color180;;bold |
||||
disabled=color246;color239 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color252;color239 |
||||
dhotnormal=color214 |
||||
dfocus=color228;color23;bold |
||||
dhotfocus=color214;color23 |
||||
dtitle=color180;;bold |
||||
|
||||
[error] |
||||
_default_=color230;color52 |
||||
errdfocus=color254;color23;bold |
||||
errdhotnormal=color203;color52 |
||||
errdhotfocus=color203;color23;bold |
||||
errdtitle=color227;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color144;;bold |
||||
executable=color114 |
||||
symlink=color45 |
||||
hardlink= |
||||
stalelink=color203 |
||||
device=color170 |
||||
special=color142 |
||||
core=color197 |
||||
temp=color245 |
||||
archive=color172 |
||||
doc=color153 |
||||
source=color109 |
||||
media=color141 |
||||
graph=color216 |
||||
database=color103 |
||||
|
||||
[menu] |
||||
_default_=color252;color239 |
||||
menuhot=color214 |
||||
menusel=color253;color23 |
||||
menuhotsel=color214;color23 |
||||
menuinactive=color246 |
||||
|
||||
[popupmenu] |
||||
_default_=color252;color239 |
||||
menusel=color253;color23 |
||||
menutitle=color180;;bold |
||||
|
||||
[buttonbar] |
||||
button=color253;color236 |
||||
hotkey=color214;color238;bold |
||||
|
||||
[statusbar] |
||||
_default_=color253;color66 |
||||
|
||||
[help] |
||||
_default_=color252;color239 |
||||
helpitalic=color114;;bold |
||||
helpbold=color180;;bold |
||||
helplink=color45 |
||||
helpslink=color228;color23;bold |
||||
|
||||
[editor] |
||||
_default_=color252;color237 |
||||
editbold=color228;;bold |
||||
editmarked=color228;color23;bold |
||||
editwhitespace=color56;color234 |
||||
editlinestate=color66;color235 |
||||
bookmark=;color239 |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=;color235;bold |
||||
|
||||
[viewer] |
||||
_default_=color252;color237 |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color231;color29 |
||||
changednew=color232;color78 |
||||
changed=color231;color39 |
||||
added=color232;color81 |
||||
removed=;color235 |
||||
folder=color232;color185 |
||||
error=color231;color160 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarIn256root-DefaultBG (root) |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color250;default |
||||
selected=color253;color88 |
||||
marked=color228;;bold |
||||
markselect=color228;color88;bold |
||||
gauge=color250;color95 |
||||
input=color187;color235;bold |
||||
inputmark=color228;color88;bold |
||||
inputunchanged=color144;color235;bold |
||||
commandlinemark=color228;color88;bold |
||||
reverse=color254;color95 |
||||
header=color180;;bold |
||||
disabled=color246;color239 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color252;color239 |
||||
dhotnormal=color214 |
||||
dfocus=color228;color88;bold |
||||
dhotfocus=color214;color88;bold |
||||
dtitle=color180;;bold |
||||
|
||||
[error] |
||||
_default_=color230;color52 |
||||
errdfocus=color254;color95;bold |
||||
errdhotnormal=color203;color52 |
||||
errdhotfocus=color203;color95;bold |
||||
errdtitle=color227;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color144;;bold |
||||
executable=color114 |
||||
symlink=color45 |
||||
hardlink= |
||||
stalelink=color203 |
||||
device=color170 |
||||
special=color142 |
||||
core=color197 |
||||
temp=color245 |
||||
archive=color172 |
||||
doc=color153 |
||||
source=color109 |
||||
media=color141 |
||||
graph=color216 |
||||
database=color103 |
||||
|
||||
[menu] |
||||
_default_=color250;default |
||||
menuhot=color214 |
||||
menusel=color253;color88 |
||||
menuhotsel=color214;color88 |
||||
menuinactive=color245 |
||||
|
||||
[popupmenu] |
||||
_default_=color250;default |
||||
menusel=color253;color88 |
||||
menutitle=color180;;bold |
||||
|
||||
[buttonbar] |
||||
button=color253;color236 |
||||
hotkey=color214;color238;bold |
||||
|
||||
[statusbar] |
||||
_default_=color254;color95 |
||||
|
||||
[help] |
||||
_default_=color252;color239 |
||||
helpitalic=color114;;bold |
||||
helpbold=color180;;bold |
||||
helplink=color45 |
||||
helpslink=color228;color88;bold |
||||
|
||||
[editor] |
||||
_default_=color250;default |
||||
editbold=color228;;bold |
||||
editmarked=color228;color88;bold |
||||
editwhitespace=color56;color234 |
||||
editlinestate=color95;color235 |
||||
bookmark=;color239 |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=;color235;bold |
||||
|
||||
[viewer] |
||||
_default_=color250;default |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color231;color130 |
||||
changednew=color232;color208 |
||||
changed=color231;color96 |
||||
added=color232;color218 |
||||
removed=;color234 |
||||
folder=color232;color185 |
||||
error=color231;color160 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,182 +0,0 @@
@@ -1,182 +0,0 @@
|
||||
# |
||||
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||
# |
||||
# This skin is using colors independent from the default 16 terminal colors, |
||||
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||
# of Midnight Commander will not be affected. |
||||
# |
||||
# There are 4 variants of this skin: |
||||
# |
||||
# modarin256 |
||||
# - default skin, no standard colors used. |
||||
# |
||||
# modarin256-defbg |
||||
# - like modarin256, but using the default background color for core, editor, |
||||
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||
# background colors. |
||||
# |
||||
# modarin256root |
||||
# modarin256root-defbg |
||||
# - like the other two skins, but for the root user, with red colors used |
||||
# instead of green colors for things like select/focus/statusbar etc., |
||||
# to keep reminding the user that mc is running as root. |
||||
# |
||||
# Fallback skins for 16-color terminals (poor man's skins): |
||||
# |
||||
# modarcon16 |
||||
# modarcon16-defbg |
||||
# modarcon16root |
||||
# modarcon16root-defbg |
||||
# - like everything running in a 16-color terminal, these skins look ugly |
||||
# and are no subsitute for the 256-color versions. As some terminals don't |
||||
# support using dark gray as background color, i used a black background |
||||
# and adjusted the remaining colors accordingly. |
||||
# |
||||
# 256-color skins require mc version 4.8 or newer. |
||||
# |
||||
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||
# |
||||
# Version: 1.2 |
||||
# |
||||
|
||||
[skin] |
||||
description=MoDarIn256root (root) |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color252;color237 |
||||
selected=color253;color88 |
||||
marked=color228;;bold |
||||
markselect=color228;color88;bold |
||||
gauge=color250;color95 |
||||
input=color187;color235;bold |
||||
inputmark=color228;color88;bold |
||||
inputunchanged=color144;color235;bold |
||||
commandlinemark=color228;color88;bold |
||||
reverse=color254;color95 |
||||
header=color180;;bold |
||||
disabled=color246;color239 |
||||
#inputhistory= |
||||
#commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=color252;color239 |
||||
dhotnormal=color214 |
||||
dfocus=color228;color88;bold |
||||
dhotfocus=color214;color88;bold |
||||
dtitle=color180;;bold |
||||
|
||||
[error] |
||||
_default_=color230;color52 |
||||
errdfocus=color254;color95;bold |
||||
errdhotnormal=color203;color52 |
||||
errdhotfocus=color203;color95;bold |
||||
errdtitle=color227;;bold |
||||
|
||||
[filehighlight] |
||||
directory=color144;;bold |
||||
executable=color114 |
||||
symlink=color45 |
||||
hardlink= |
||||
stalelink=color203 |
||||
device=color170 |
||||
special=color142 |
||||
core=color197 |
||||
temp=color245 |
||||
archive=color172 |
||||
doc=color153 |
||||
source=color109 |
||||
media=color141 |
||||
graph=color216 |
||||
database=color103 |
||||
|
||||
[menu] |
||||
_default_=color252;color239 |
||||
menuhot=color214 |
||||
menusel=color253;color88 |
||||
menuhotsel=color214;color88 |
||||
menuinactive=color246 |
||||
|
||||
[popupmenu] |
||||
_default_=color252;color239 |
||||
menusel=color253;color88 |
||||
menutitle=color180;;bold |
||||
|
||||
[buttonbar] |
||||
button=color253;color236 |
||||
hotkey=color214;color238;bold |
||||
|
||||
[statusbar] |
||||
_default_=color254;color95 |
||||
|
||||
[help] |
||||
_default_=color252;color239 |
||||
helpitalic=color114;;bold |
||||
helpbold=color180;;bold |
||||
helplink=color45 |
||||
helpslink=color228;color88;bold |
||||
|
||||
[editor] |
||||
_default_=color252;color237 |
||||
editbold=color228;;bold |
||||
editmarked=color228;color88;bold |
||||
editwhitespace=color56;color234 |
||||
editlinestate=color95;color235 |
||||
bookmark=;color239 |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=;color235;bold |
||||
|
||||
[viewer] |
||||
_default_=color252;color237 |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=color231;color130 |
||||
changednew=color232;color208 |
||||
changed=color231;color96 |
||||
added=color232;color218 |
||||
removed=;color235 |
||||
folder=color232;color185 |
||||
error=color231;color160 |
||||
|
||||
[widget-common] |
||||
sort-sign-up=↓ |
||||
sort-sign-down=↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show=• |
||||
hiddenfiles-sign-hide=○ |
||||
history-prev-item-sign=« |
||||
history-next-item-sign=» |
||||
history-show-list-sign=^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1,143 +0,0 @@
@@ -1,143 +0,0 @@
|
||||
[skin] |
||||
description=Nice and Dark |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=lightgray;black |
||||
selected=lightgray;blue |
||||
marked=brown;black |
||||
markselect=brown;blue |
||||
gauge=black;lightgray |
||||
input=lightgray;black |
||||
inputunchanged=gray;black |
||||
inputmark=black;lightgray |
||||
disabled=gray;darkgray |
||||
reverse=brown;black |
||||
commandlinemark=black;lightgray |
||||
header=lightgray;black |
||||
inputhistory= |
||||
commandhistory= |
||||
|
||||
[dialog] |
||||
_default_=lightgray;darkgray |
||||
dfocus=lightgray;blue |
||||
dhotnormal=brown;darkgray |
||||
dhotfocus=brown;blue |
||||
dtitle=brown;darkgray |
||||
|
||||
[error] |
||||
_default_=red;black |
||||
errdfocus=black;red |
||||
errdhotnormal=brightred;black |
||||
errdhotfocus=brown;red |
||||
errdtitle=brown;black |
||||
|
||||
[filehighlight] |
||||
directory=blue; |
||||
executable=brightgreen; |
||||
symlink=gray; |
||||
hardlink= |
||||
stalelink=brightred; |
||||
device=brightmagenta; |
||||
special=gray; |
||||
core=red; |
||||
temp=gray; |
||||
archive=magenta; |
||||
doc=lightgray; |
||||
source=brightcyan; |
||||
media=green; |
||||
graph=cyan; |
||||
database=brightred; |
||||
|
||||
[menu] |
||||
_default_=lightgray;black |
||||
menuhot=brown;black |
||||
menusel=lightgray;blue |
||||
menuhotsel=brown;blue |
||||
menuinactive=gray;black |
||||
|
||||
[buttonbar] |
||||
hotkey=lightgray;blue |
||||
button=lightgray;black |
||||
|
||||
[statusbar] |
||||
_default_=lightgray;black |
||||
|
||||
[help] |
||||
_default_=lightgray;darkgray |
||||
helpitalic=red;darkgray |
||||
helpbold=brown;darkgray |
||||
helplink=blue;darkgray |
||||
helpslink=lightgray;blue |
||||
helptitle=brown;darkgray |
||||
|
||||
[editor] |
||||
_default_=lightgray;darkgray |
||||
editbold=brown;blue |
||||
editmarked=black;cyan |
||||
editwhitespace=brightblue;blue |
||||
editlinestate=white;cyan |
||||
bookmark=white;red |
||||
bookmarkfound=black;green |
||||
editrightmargin=brightblue;black |
||||
# editbg= |
||||
editframe=gray; |
||||
editframeactive=lightgray; |
||||
editframedrag=brightblue; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewbold=brown;blue |
||||
viewunderline=brightred;blue |
||||
viewselected=brown;cyan |
||||
|
||||
[diffviewer] |
||||
added=white;brown |
||||
changedline=blue;cyan |
||||
changednew=red;cyan |
||||
changed=white;cyan |
||||
removed=white;red |
||||
folder=blue;black |
||||
error=red;white |
||||
|
||||
[popupmenu] |
||||
_default_=lightgray;black |
||||
menusel=lightgray;blue |
||||
menutitle=lightgray;black |
||||
|
||||
[widget-common] |
||||
sort-sign-down=↑ |
||||
sort-sign-up=↓ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
@ -1,201 +0,0 @@
@@ -1,201 +0,0 @@
|
||||
# This skin demonstrates how to use 256 colors in mc. |
||||
# |
||||
# As a prerequisite, you will need to: |
||||
# 1) Have a terminal emulator that supports 256 colors (a few examples: |
||||
# xterm, Gnome terminal and other VTE derivatives, KDE's Konsole; |
||||
# iTerm for Mac OS X, PuTTY for Windows). |
||||
# 2) Adjust your TERM variable accordingly, e.g.: export TERM=xterm-256color |
||||
# Verify by running tput colors |
||||
# |
||||
# Each of the 256 colors has two names, you can use whichever you prefer. |
||||
# |
||||
# One possibility is to use the names "color0" to "color255" to access every |
||||
# color directly based on their number. |
||||
# |
||||
# The first 16 colors ("color0" to "color15") can also be specified by their |
||||
# names (these names are already being used by mc for 8/16 color terminals): |
||||
# black gray |
||||
# red brightred |
||||
# green brightgreen |
||||
# brown yellow |
||||
# blue brightblue |
||||
# magenta brightmagenta |
||||
# cyan brightcyan |
||||
# lightgray white |
||||
# Note that with 8/16 color terminal settings (such as TERM=xterm), colors |
||||
# of the second column can only be used for the foreground, and their actual |
||||
# interpretation varies across terminals. Some terminals show the colors |
||||
# from the first column instead (that is, you only have 8 colors), but make |
||||
# them bold. Others show the brighter version (16 foreground colors). Yet |
||||
# others make them bold and bright at the same time. Switching to 256 colors |
||||
# should end this ambiguity: you should have 16 separate colors according to |
||||
# their names, none of them are bold by default but any of them can be |
||||
# switched to bold, and all of them are available for background, too. This |
||||
# is the intended behavior, the actual behavior might vary across terminals. |
||||
# |
||||
# Colors of the 6x6x6 cube ("color16" to "color231") can alternatively be |
||||
# referred to as "rgb000" to "rgb555", all three digits ranging from 0 to 5, |
||||
# corresponding to the R, G and B color components. |
||||
# |
||||
# The 24 grayscale colors ("color232" to "color255") have the aliases "gray0" |
||||
# to "gray23". |
||||
# |
||||
# In addition to the 256 colors, the special word "default" means the |
||||
# default foreground or background color of your terminal, while "base" means |
||||
# mc's main colors. A missing value means falling back to the _default_ of the |
||||
# given section. |
||||
# |
||||
# Following the foreground and background colors, the third (optional) value |
||||
# can specify special attributes to enable. Valid values are bold, underline, |
||||
# reverse and blink. Append more with a plus sign, e.g. "underline+bold". |
||||
# Leaving the field empty makes it fall back to the attributes of _default_. |
||||
# Use any other word (e.g. "none") to prevent fallback and disable all flags. |
||||
|
||||
[skin] |
||||
description=Sand skin using 256 colors |
||||
256colors=true |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=─ |
||||
dvert=│ |
||||
dlefttop=┌ |
||||
drighttop=┐ |
||||
dleftbottom=└ |
||||
drightbottom=┘ |
||||
dtopmiddle=─ |
||||
dbottommiddle=─ |
||||
dleftmiddle=├ |
||||
drightmiddle=┤ |
||||
|
||||
[core] |
||||
_default_=black;rgb554 |
||||
selected=;rgb452 |
||||
marked=rgb400 |
||||
markselect=rgb400;rgb452 |
||||
gauge=;rgb452 |
||||
input=;rgb452 |
||||
inputunchanged=gray;rgb452 |
||||
inputmark=rgb452;gray |
||||
disabled=gray;rgb553 |
||||
reverse=;rgb452 |
||||
commandlinemark=white;gray |
||||
header=red |
||||
|
||||
[dialog] |
||||
_default_=black;rgb553 |
||||
dfocus=;rgb452 |
||||
dhotnormal=;;underline |
||||
dhotfocus=;rgb452;underline |
||||
dtitle=;;underline |
||||
|
||||
[error] |
||||
_default_=rgb554;rgb320;bold |
||||
errdfocus=black;rgb452;bold |
||||
errdhotnormal=;;bold+underline |
||||
errdhotfocus=black;rgb452;bold+underline |
||||
errdtitle=;;bold+underline |
||||
|
||||
[filehighlight] |
||||
directory= |
||||
executable=rgb030 |
||||
symlink=rgb202 |
||||
hardlink= |
||||
# 404 Not Found :) |
||||
stalelink=rgb404 |
||||
device=rgb231 |
||||
special=rgb331 |
||||
core=rgb430 |
||||
temp=gray15 |
||||
archive=rgb012 |
||||
doc=rgb103 |
||||
source=rgb310 |
||||
media=rgb024 |
||||
graph=rgb033 |
||||
database=rgb421 |
||||
|
||||
[menu] |
||||
_default_=black;rgb452 |
||||
menuhot=;;underline |
||||
menusel=;rgb551 |
||||
menuhotsel=;rgb551;underline |
||||
menuinactive= |
||||
|
||||
[popupmenu] |
||||
_default_=black;rgb553 |
||||
menusel=;rgb452;underline |
||||
menutitle=;;underline |
||||
|
||||
[buttonbar] |
||||
hotkey=black;rgb554 |
||||
button=black;rgb452 |
||||
|
||||
[statusbar] |
||||
_default_=black;rgb452 |
||||
|
||||
[help] |
||||
_default_=black;rgb553 |
||||
helpitalic=green |
||||
helpbold=red |
||||
helplink=blue;;underline |
||||
helpslink=blue;;reverse |
||||
|
||||
[editor] |
||||
_default_=black;rgb554 |
||||
editbold=rgb400 |
||||
editmarked=;rgb452 |
||||
editwhitespace=rgb400;rgb553 |
||||
editlinestate=;rgb553 |
||||
bookmark=;rgb551 |
||||
bookmarkfound=;rgb530 |
||||
editrightmargin=rgb400;rgb553 |
||||
# editbg= |
||||
editframe=rgb530; |
||||
editframeactive=black; |
||||
editframedrag=rgb400; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
added=;rgb450 |
||||
changedline=blue;rgb553 |
||||
changednew=rgb400;rgb553 |
||||
changed=;rgb553 |
||||
removed=;rgb511 |
||||
folder=;rgb530 |
||||
error=rgb554;rgb320 |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ↓ |
||||
sort-sign-down = ↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
||||
|
@ -1,192 +0,0 @@
@@ -1,192 +0,0 @@
|
||||
# This is a 256 colors MidnightCommander color scheme |
||||
# based on the Xoria256 color scheme for the Vim editor |
||||
# (http://www.vim.org/scripts/script.php?script_id=2140) |
||||
|
||||
# Note you'll need mc > 4.7.5 for this scheme to work (256 colors support) |
||||
# Hint: compile from the git repository |
||||
|
||||
# Author : Alexander Glyzov (isee@inbox.ru) |
||||
# Last Change : Jan 11, 2011 |
||||
|
||||
# Special Thanks to Dmitriy Zotikov -- author of the Vim Xoria256 color scheme. |
||||
|
||||
|
||||
|
||||
[skin] |
||||
description=Xoria256 |
||||
256colors=true |
||||
|
||||
# [Lines] |
||||
# horiz=─ |
||||
# vert=│ |
||||
# lefttop=┌ |
||||
# righttop=┐ |
||||
# leftbottom=└ |
||||
# rightbottom=┘ |
||||
# topmiddle=─ |
||||
# bottommiddle=─ |
||||
# leftmiddle=├ |
||||
# rightmiddle=┤ |
||||
# cross=┼ |
||||
# dhoriz=─ |
||||
# dvert=│ |
||||
# dlefttop=┌ |
||||
# drighttop=┐ |
||||
# dleftbottom=└ |
||||
# drightbottom=┘ |
||||
# dtopmiddle=─ |
||||
# dbottommiddle=─ |
||||
# dleftmiddle=├ |
||||
# drightmiddle=┤ |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color250;color234 |
||||
selected=;color60 |
||||
marked=color228 |
||||
markselect=color228;color60 |
||||
reverse=color234;color250; |
||||
header=color180;;bold |
||||
|
||||
gauge=white;black |
||||
|
||||
input=color252;color60;bold |
||||
inputunchanged=color250;color60;bold |
||||
inputmark=color228;color236;bold |
||||
|
||||
disabled=color244;color250 |
||||
|
||||
#inputhistory= |
||||
#commandhistory= |
||||
#commandlinemark=black;lightgray |
||||
|
||||
[dialog] |
||||
_default_=black;color250 |
||||
dhotnormal=color88;; |
||||
dfocus=black;color73; |
||||
dhotfocus=color88;color73; |
||||
dtitle=color235;;bold |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red;bold |
||||
|
||||
[filehighlight] |
||||
directory=;;bold |
||||
executable=color114 |
||||
symlink=color180 |
||||
hardlink= |
||||
stalelink=rgb404 |
||||
device=rgb231 |
||||
special=rgb331 |
||||
core=rgb430 |
||||
temp=color239 |
||||
archive=color174 |
||||
doc=rgb033 |
||||
source=color29 |
||||
media=color110 |
||||
graph=color182 |
||||
database=color31 |
||||
|
||||
[menu] |
||||
_default_=black;color250 |
||||
menuhot=color88;; |
||||
menusel=black;color73; |
||||
menuhotsel=color88;color73; |
||||
menuinactive=color244 |
||||
|
||||
[popupmenu] |
||||
_default_=black;color250 |
||||
menusel=black;color73 |
||||
menutitle=;;bold |
||||
|
||||
[buttonbar] |
||||
button=black;color250 |
||||
hotkey=color88;color181;bold |
||||
|
||||
[statusbar] |
||||
_default_=black;color250 |
||||
|
||||
[help] |
||||
_default_=black;color250 |
||||
helpitalic=color88;;bold |
||||
helpbold=color235;;bold |
||||
helplink=color19;; |
||||
helpslink=black;color73;inverse |
||||
|
||||
[editor] |
||||
_default_=color250;color234 |
||||
editbold=;;bold |
||||
editmarked=;color60 |
||||
editwhitespace=color236;color234 |
||||
editlinestate=;color235 |
||||
bookmark=;color239; |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=color180;color235;bold |
||||
# editbg= |
||||
editframe=color244; |
||||
editframeactive=color250; |
||||
editframedrag=color73; |
||||
window-state-char = ↕ |
||||
window-close-char = ✕ |
||||
|
||||
[viewer] |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=;color60 |
||||
changednew=black;color174 |
||||
|
||||
added=black;color181 |
||||
changed=black;color151 |
||||
removed=;color235 |
||||
|
||||
folder=;color60 |
||||
error=rgb554;rgb320 |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ↓ |
||||
sort-sign-down = ↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
filename-scroll-left-char = « |
||||
filename-scroll-right-char = » |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
||||
|
@ -1,181 +0,0 @@
@@ -1,181 +0,0 @@
|
||||
# This is a 256 colors MidnightCommander color scheme |
||||
# based on the Xoria256 color scheme for the Vim editor |
||||
# (http://http://www.vim.org/scripts/script.php?script_id=2140) |
||||
|
||||
# Note you'll need mc >= 4.7.6 for this scheme to work (256 colors support) |
||||
# Hint: compile from the git repository |
||||
|
||||
# Author : Alexander Glyzov (isee@inbox.ru) |
||||
# Last Change : Jan 11, 2011 |
||||
|
||||
# Special Thanks to Dmitriy Zotikov -- author of the Vim Xoria256 color scheme. |
||||
|
||||
|
||||
|
||||
[skin] |
||||
description=Xoria256 |
||||
|
||||
# [Lines] |
||||
# horiz=─ |
||||
# vert=│ |
||||
# lefttop=┌ |
||||
# righttop=┐ |
||||
# leftbottom=└ |
||||
# rightbottom=┘ |
||||
# topmiddle=─ |
||||
# bottommiddle=─ |
||||
# leftmiddle=├ |
||||
# rightmiddle=┤ |
||||
# cross=┼ |
||||
# dhoriz=─ |
||||
# dvert=│ |
||||
# dlefttop=┌ |
||||
# drighttop=┐ |
||||
# dleftbottom=└ |
||||
# drightbottom=┘ |
||||
# dtopmiddle=─ |
||||
# dbottommiddle=─ |
||||
# dleftmiddle=├ |
||||
# drightmiddle=┤ |
||||
|
||||
[Lines] |
||||
horiz=─ |
||||
vert=│ |
||||
lefttop=┌ |
||||
righttop=┐ |
||||
leftbottom=└ |
||||
rightbottom=┘ |
||||
topmiddle=─ |
||||
bottommiddle=─ |
||||
leftmiddle=├ |
||||
rightmiddle=┤ |
||||
cross=┼ |
||||
dhoriz=═ |
||||
dvert=║ |
||||
dlefttop=╔ |
||||
drighttop=╗ |
||||
dleftbottom=╚ |
||||
drightbottom=╝ |
||||
dtopmiddle=╤ |
||||
dbottommiddle=╧ |
||||
dleftmiddle=╟ |
||||
drightmiddle=╢ |
||||
|
||||
[core] |
||||
_default_=color250;color234 |
||||
selected=;color60 |
||||
marked=color228 |
||||
markselect=color228;color60 |
||||
reverse=color234;color250; |
||||
header=color180;;bold |
||||
|
||||
gauge=white;black |
||||
|
||||
input=color252;color60;bold |
||||
inputunchanged=color250;color60;bold |
||||
inputmark=color228;color236;bold |
||||
|
||||
disabled=color244;color250 |
||||
|
||||
#inputhistory= |
||||
#commandhistory= |
||||
#commandlinemark=black;lightgray |
||||
|
||||
[dialog] |
||||
_default_=black;color250 |
||||
dhotnormal=color88;; |
||||
dfocus=black;color73; |
||||
dhotfocus=color88;color73; |
||||
dtitle=color235;;bold |
||||
|
||||
[error] |
||||
_default_=white;red |
||||
errdfocus=black;lightgray |
||||
errdhotnormal=yellow;red |
||||
errdhotfocus=yellow;lightgray |
||||
errdtitle=yellow;red;bold |
||||
|
||||
[filehighlight] |
||||
directory=;;bold |
||||
executable=color114 |
||||
symlink=color180 |
||||
stalelink=rgb404 |
||||
device=rgb231 |
||||
special=rgb331 |
||||
core=rgb430 |
||||
temp=color239 |
||||
archive=color174 |
||||
doc=rgb033 |
||||
source=color29 |
||||
media=color110 |
||||
graph=color182 |
||||
database=color31 |
||||
|
||||
[menu] |
||||
_default_=black;color250 |
||||
menuhot=color88;; |
||||
menusel=black;color73; |
||||
menuhotsel=color88;color73; |
||||
menuinactive=color244 |
||||
|
||||
[popupmenu] |
||||
_default_=black;color250 |
||||
menusel=black;color73 |
||||
menutitle=;;bold |
||||
|
||||
[buttonbar] |
||||
button=black;color250 |
||||
hotkey=color88;color181;bold |
||||
|
||||
[statusbar] |
||||
_default_=black;color250 |
||||
|
||||
[help] |
||||
_default_=black;color250 |
||||
helpitalic=color88;;bold |
||||
helpbold=color235;;bold |
||||
helplink=color19;; |
||||
helpslink=black;color73;inverse |
||||
|
||||
[editor] |
||||
_default_=color250;color234 |
||||
editbold=;;bold |
||||
editmarked=;color60 |
||||
editwhitespace=color236;color234 |
||||
editlinestate=;color235 |
||||
bookmark=;color239; |
||||
bookmarkfound=;color239;bold |
||||
editrightmargin=color180;color235;bold |
||||
|
||||
[viewer] |
||||
viewunderline=;;underline |
||||
|
||||
[diffviewer] |
||||
changedline=;color60 |
||||
changednew=black;color174 |
||||
|
||||
added=black;color181 |
||||
changed=black;color151 |
||||
removed=;color235 |
||||
|
||||
folder=;color60 |
||||
error=rgb554;rgb320 |
||||
|
||||
[widget-common] |
||||
sort-sign-up = ↓ |
||||
sort-sign-down = ↑ |
||||
|
||||
[widget-panel] |
||||
hiddenfiles-sign-show = • |
||||
hiddenfiles-sign-hide = ○ |
||||
history-prev-item-sign = « |
||||
history-next-item-sign = » |
||||
history-show-list-sign = ^ |
||||
|
||||
[widget-scollbar] |
||||
first-vert-char=↑ |
||||
last-vert-char=↓ |
||||
first-horiz-char=« |
||||
last-horiz-char=» |
||||
current-char=■ |
||||
background-char=▒ |
@ -1 +0,0 @@
@@ -1 +0,0 @@
|
||||
See doc/README.txt and the other files there for information. |
@ -1,106 +0,0 @@
@@ -1,106 +0,0 @@
|
||||
INSTALLATION |
||||
|
||||
Unpack the distribution whereever you want it and add a link |
||||
to nagelfar.tcl from any directory in your path. |
||||
|
||||
The syntax database in the distribution may not be right for your system. |
||||
Look in the file syntaxdb.tcl, or in the About window to see the platform |
||||
and version it is for. Read syntaxdatabases.txt for more information on |
||||
how to generate your own. |
||||
|
||||
|
||||
REQUIREMENTS |
||||
|
||||
Nagelfar requires Tcl 8.4 or higher. |
||||
If you do not have 8.4, you can run Nagelfar as a Starkit |
||||
using a 8.4 based Tclkit. http://wiki.tcl.tk/tclkit |
||||
|
||||
Generally it is good to run Nagelfar in a Tcl at least as new the script |
||||
is targeted for. In particular, to check 8.5 code with {*} syntax, Nagelfar |
||||
must be run with at least 8.5. |
||||
|
||||
|
||||
USAGE |
||||
|
||||
This tool is both a command line tool and a GUI tool. |
||||
|
||||
Typical usage: |
||||
nagelfar.tcl \u003ctcl-file\u003e |
||||
|
||||
For a usage summary: |
||||
nagelfar.tcl -h |
||||
|
||||
Multiple files can be checked in one command. In that case the tool |
||||
will remember procedures from previous files when checking a file. |
||||
|
||||
|
||||
GUI |
||||
|
||||
If you start it without arguments or with -gui, you get GUI mode, |
||||
provided that Tk can be found. |
||||
|
||||
Nagelfar supports drag&drop if TkDnd is available. |
||||
|
||||
The GUI lists database files and lets you select one to use. |
||||
|
||||
The other list shows files to check. With multiple files all are checked |
||||
in the same way as with multiple files on a command line. |
||||
You can reorder files with shift-up/down keys, and remove them with delete. |
||||
|
||||
By doubleclicking on an error the file and line is viewed in a simple |
||||
editor. You can edit and save the file. |
||||
|
||||
|
||||
FEEDBACK |
||||
|
||||
Bugs and suggestions can be added to the trackers at: |
||||
http://nagelfar.berlios.de/ |
||||
|
||||
You can also mail peter.spjuth@gmail.com |
||||
(I also accept beer and teddybears, or just a note saying you use the |
||||
tool so I get encouraged to work on it.) |
||||
|
||||
|
||||
GENERATE HEADERS |
||||
|
||||
You can generate a header file to help checking multiple files. |
||||
|
||||
nagelfar.tcl -header \u003cout-file\u003e \u003cfile1\u003e \u003cfile2\u003e |
||||
|
||||
You can then check file1 and get it to recognise procs from file2 too: |
||||
|
||||
nagelfar.tcl \u003cout-file\u003e \u003cfile1\u003e |
||||
|
||||
|
||||
TODO |
||||
|
||||
The database in syntaxbuild is far from complete when it comes to subcommands. |
||||
Handle widgets -command options, bind code and other callbacks |
||||
Handle e.g. -textvariable |
||||
Handle namespaces and qualified vars better |
||||
Everything marked FIXA |
||||
Tidy up code structure. Things are getting messy. |
||||
A standardized way to handle databases for packages, and loading |
||||
them when package require is seen. |
||||
Handle namespace import if the namespace is known e.g. from a package db. |
||||
Maybe places where a constant list is expected (e.g. foreach {a b} ...) |
||||
should be able to recognise [list a b] as a constant list. |
||||
|
||||
Recognise the idiom [list cmd arg arg] as code. |
||||
Recognise the idiom [set $var] for double dereferencing. |
||||
Option to enforce switch --. |
||||
Option to enforce not using "then". |
||||
|
||||
Make a GUI to help working with the database builder. It should |
||||
be possible to add packages that should be included in the db. |
||||
|
||||
|
||||
BUGS |
||||
|
||||
The close brace alignment check should match against the line |
||||
with the opening brace, not the start of the command: |
||||
cmd xx yy \ |
||||
apa { |
||||
hejsan |
||||
} |
||||
Line 4: Close brace not aligned with line 1 (4 8) |
@ -1,34 +0,0 @@
@@ -1,34 +0,0 @@
|
||||
A common source of false warnings have to do with call-by-name. |
||||
|
||||
When analysing a procedure, Nagelfar will detect "upvar" usage and |
||||
set up a syntax description accordingly. |
||||
Example, the following procedure: |
||||
|
||||
proc Incr {varName val} { |
||||
upvar $varName var |
||||
set var [expr {$var + $val}] |
||||
} |
||||
|
||||
will get the syntax description "v x" where "v" indicates variable name. |
||||
|
||||
There are limitations to this detection though, in that it is neither |
||||
100% accurate unless the code is straightforward, and it is only detected |
||||
in the second pass of the analysis. |
||||
|
||||
Nagelfar uses two passes when analyzing a file. In the first, only |
||||
"namespace eval" and "proc" are analyzed to collect basic information |
||||
about procedures. This allows procs to be in any order in the file and |
||||
still be checked correctly. However, since procedure bodies are not |
||||
processed in the first pass, the "Incr" procedure above will get "x x" |
||||
stored as its syntax description and not until the "Incr" is processed |
||||
in the second pass it is corrected to "v x". |
||||
|
||||
This means that a procedure like "Incr" above needs to be defined earlier |
||||
in the file than it is used, or you have to provide the syntax description |
||||
yourself. The latter is also necessary when Nagelfar's automatic detection |
||||
doesn't do the right thing. |
||||
|
||||
You provide a syntax description using inline comments |
||||
(see doc/inlinecomments.txt). For the example above it would be: |
||||
|
||||
##nagelfar syntax Incr v x |
@ -1,104 +0,0 @@
@@ -1,104 +0,0 @@
|
||||
<ul>Code Coverage</ul> |
||||
|
||||
Nagelfar has support for doing simple code coverage analysis. |
||||
|
||||
|
||||
Instrument each file: |
||||
nagelfar.tcl -instrument apa.tcl |
||||
|
||||
That creates apa.tcl_i |
||||
|
||||
Make your tests run the instrumented file. If a file is sourced from an |
||||
instrumented file, an instrumented version (i.e. one called _i) will be |
||||
read if it exists. Thus you only need to adjust the top file being called |
||||
from the test, if all other files are accessed through source. |
||||
|
||||
You do not need to keep the instrumented name. You can rename them back |
||||
to the original if you cannot use _i or the automatic "source" redirection |
||||
for some reason. |
||||
|
||||
The source under test must terminate using the "exit" command. The |
||||
instrumentation uses the exit command to produce the result, thus it needs |
||||
to be called to work as expected. |
||||
|
||||
If you cannot end your tests with "exit", you can call the internal command |
||||
::_instrument_::cleanup manually. Note that this command name is not |
||||
guaranteed, so try to use "exit". |
||||
|
||||
Running tests creates apa.tcl_log. |
||||
Coverage data is accumulated in the log file so multiple tests can |
||||
be run. Make sure the log file is deleted before a rerun. |
||||
|
||||
Create a markup file for displaying result: |
||||
nagelfar.tcl -markup apa.tcl |
||||
|
||||
This reads coverage data from apa.tcl_log and creates apa.tcl_m. The markup |
||||
file contains markers in blocks that were not run. |
||||
|
||||
See uncovered parts by comparing original with markup in a graphical |
||||
diff tool, like eskil: |
||||
|
||||
eskil -noparse apa.tcl apa.tcl_m |
||||
|
||||
|
||||
<ul>Example</ul> |
||||
|
||||
Nagelfar's testsuite has code like this to automatically run the |
||||
instrumented file: |
||||
set file nagelfar.tcl |
||||
if {[file exists ${file}_i]} { |
||||
set file ${file}_i |
||||
} |
||||
|
||||
Below is the makefile lines used by Nagelfar to test itself. |
||||
|
||||
# Source files for code coverage |
||||
SRCFILES = nagelfar.tcl |
||||
IFILES = $(SRCFILES:.tcl=.tcl_i) |
||||
LOGFILES = $(SRCFILES:.tcl=.tcl_log) |
||||
MFILES = $(SRCFILES:.tcl=.tcl_m) |
||||
|
||||
# Instrument source file for code coverage |
||||
%.tcl_i: %.tcl |
||||
@./nagelfar.tcl -instrument $< |
||||
|
||||
# Target to prepare for code coverage run. Makes sure log file is clear. |
||||
instrument: $(IFILES) |
||||
@rm -f $(LOGFILES) |
||||
|
||||
# Run tests to create log file. |
||||
$(LOGFILES): $(IFILES) |
||||
@./tests/all.tcl $(TESTFLAGS) |
||||
|
||||
# Create markup file for better view of result |
||||
%.tcl_m: %.tcl_log |
||||
@./nagelfar.tcl -markup $*.tcl |
||||
|
||||
# View code coverage result |
||||
icheck: $(MFILES) |
||||
@for i in $(SRCFILES) ; do eskil -noparse $$i $${i}_m & done |
||||
|
||||
# Remove code coverage files |
||||
clean: |
||||
@rm -f $(LOGFILES) $(IFILES) $(MFILES) |
||||
|
||||
|
||||
<ul>Naming conventions</ul> |
||||
|
||||
When xxx is instrumented, result is called xxx_i. |
||||
|
||||
The "source" command is overloaded to prefer xxx_i if |
||||
it exists, when xxx is sourced. |
||||
|
||||
Instrumented files can be renamed to the original before running, |
||||
if that is desired. |
||||
|
||||
The log files for xxx_i or xxx is called xxx_log. |
||||
At startup any existing log is read, to accumulate info. |
||||
|
||||
The "exit" command is overloaded to call ::_instrument_::cleanup, |
||||
which produces the logs. If you cannot end your tests with "exit", |
||||
you can call ::_instrument_::cleanup manually. Note that this |
||||
command name is not guaranteed, so try to use "exit". |
||||
|
||||
Markup of xxx reads xxx_log and produces xxx_m. |
@ -1,74 +0,0 @@
@@ -1,74 +0,0 @@
|
||||
Nagelfar supports having comments inlined to help it check a file. |
||||
|
||||
Whenever \u003cfile\u003e.tcl is checked, any \u003cfile\u003e.syntax is run through |
||||
the syntax checker first. Thus you can put your comments in such |
||||
a separate file instead of your source if that is not suitable. |
||||
|
||||
A comment should start with "##nagelfar" to be recognised as special. |
||||
The comment must be a valid Tcl list. |
||||
|
||||
<ul>Ignoring messages</ul> |
||||
|
||||
##nagelfar ignore ?string? |
||||
##nagelfar filter ?string? |
||||
|
||||
These two are equivalent and adds a message filter rule for the line |
||||
following it. The string argument will be part of the filter pattern, |
||||
which is a glob pattern built like this: "*Line *$line:*$string*" |
||||
If the string is preceeded by "N", "W" or "E", anything from that |
||||
severity level and down is ignored. |
||||
|
||||
Examples: |
||||
##nagelfar ignore |
||||
set apa [Miffo a b c] |
||||
##nagelfar ignore Unknown variable |
||||
set apa [lindex $Gurka 1] |
||||
##nagelfar ignore Expr without braces |
||||
set apa [expr 1 + 2] |
||||
##nagelfar ignore N |
||||
|
||||
Nagelfar also recognises "# PRAGMA: nocheck", which is equivalent to |
||||
"##nagelfar ignore", and ignores messages on the next line. |
||||
|
||||
<ul>Specifying variables</ul> |
||||
|
||||
##nagelfar variable name ?type? |
||||
|
||||
This will make "name" a known variable and optionally set its type. |
||||
Types are still experimental in Nagelfar. The type "varName" can |
||||
be used to tell Nagelfar that a variable contains a variable name, |
||||
which suppresses some warnings. |
||||
|
||||
Example: |
||||
##nagelfar variable apaName varName |
||||
set hejsan [set $apaName] |
||||
|
||||
<ul>Syntax database</ul> |
||||
|
||||
##nagelfar syntax cmd tokens |
||||
##nagelfar subcmd cmd subcmds |
||||
##nagelfar subcmd+ cmd subcmds |
||||
##nagelfar option cmd options |
||||
##nagelfar return cmd type |
||||
##nagelfar copy from to |
||||
|
||||
All these provides access directly into the syntax database that |
||||
usually is loaded from syntaxdb.tcl. |
||||
Check syntaxbuild.tcl for more info. |
||||
|
||||
Examples: |
||||
##nagelfar syntax binary s x* |
||||
##nagelfar subcmd binary format scan |
||||
##nagelfar syntax binary\\ scan x x n n* |
||||
##nagelfar syntax fcopy x x p* |
||||
##nagelfar option fcopy -size -command |
||||
|
||||
Add to subcmd list, e.g. when using namespace ensemble: |
||||
##nagelfar subcmd+ string mysubcmd |
||||
##nagelfar syntax string\ mysubcmd x x |
||||
|
||||
Copy syntax from command |
||||
##nagelfar copy binary mybinary |
||||
|
||||
For more examples, use the database browser to see how the comments |
||||
would look like for the commands known in the database. |
@ -1,36 +0,0 @@
@@ -1,36 +0,0 @@
|
||||
Explanations of some error messages. |
||||
|
||||
"Found constant "x" which is also a variable." |
||||
|
||||
This is the error for detecting missing $. |
||||
This is also a common source for false errors. Typically with commands |
||||
that use call-by-name, or when using simple variable names. |
||||
For example, this will give such a message: $w configure -anchor w |
||||
If the constant is within quotes no warning is issued so in the example |
||||
above you can get rid of it by doing -anchor "w". |
||||
|
||||
"Could not complete statement." |
||||
|
||||
A valid end of this statement could not be found. This means that |
||||
a brace, quote or bracket is missing. |
||||
The message may be followed by extra info that can help figure out |
||||
what happened. |
||||
|
||||
"Close brace not aligned with line \u003cl\u003e (\u003ci1\u003e \u003ci2\u003e)" |
||||
|
||||
It is assumed that a close brace is indented equally to the line |
||||
where its corresponding open brace is (line \u003cl\u003e). |
||||
The open brace's indent level is \u003ci1\u003e and the close brace's \u003ci2\u003e. |
||||
This error may indicate a brace mismatch, an indentation slip |
||||
or just that you have a different indentation style. |
||||
|
||||
"Found non indented close brace that did not end statement. This may |
||||
indicate a brace mismatch." |
||||
|
||||
A close brace that is not indented should normally end the |
||||
preceeding statement. See also above. |
||||
|
||||
"Close brace first in statement." |
||||
|
||||
A close brace was seen where a command should start. |
||||
Typically a brace mismatch. |
@ -1,45 +0,0 @@
@@ -1,45 +0,0 @@
|
||||
SYNTAX DATABASES |
||||
|
||||
The tool uses a file defining what commands are available and how they |
||||
are used. This file is typically called syntaxdb.tcl, and is just a Tcl |
||||
file defining variables. |
||||
|
||||
Any file called syntaxdb*.tcl in your current directory or in the |
||||
directory where Nagelfar is located is detected and possibly used as |
||||
default database unless you specify one on the command line. |
||||
The search order for default database is: |
||||
syntaxdb.tcl in current directory |
||||
syntaxdb*.tcl in current directory (if more than one it is unspecified which) |
||||
syntaxdb.tcl where Nagelfar is located |
||||
syntaxdb*.tcl where Nagelfar is located |
||||
|
||||
You can select database(s) with the command line switch "-s". |
||||
|
||||
In the GUI, all databases found are listed, and those found where Nagelfar |
||||
is located are marked "(app)". |
||||
|
||||
Syntax databases may contain inline comments, so a file generated with |
||||
the -header option may be used with -s. |
||||
|
||||
|
||||
CREATING SYNTAX DATABASES |
||||
|
||||
A syntax database is created by syntaxbuild.tcl which makes |
||||
it possible to create customised databases for the interpreter |
||||
where your script will run. |
||||
|
||||
For example, if you want to create a database for Tcl8.2: |
||||
|
||||
tclsh82 syntaxbuild.tcl syntaxdb82.tcl |
||||
or |
||||
tclsh82 |
||||
% source syntaxbuild.tcl |
||||
% buildFile syntaxdb82.tcl |
||||
% exit |
||||
|
||||
Then use it: |
||||
nagelfar.tcl -s syntaxdb82.tcl \u003ctcl-file\u003e |
||||
|
||||
|
||||
On Windows it is usually just to double click on syntaxbuild.tcl |
||||
and a new syntaxdb.tcl is generated using your installed Tcl version. |
@ -1,67 +0,0 @@
@@ -1,67 +0,0 @@
|
||||
Nagelfar's syntax descriptions for a command consists of little language |
||||
describing the arguments to the command. |
||||
|
||||
An entry must be a valid list of tokens as described below. |
||||
|
||||
Check the syntax database (syntaxdb.tcl) or in the database browser in the |
||||
gui for examples. |
||||
|
||||
<ul>Tokens</ul> |
||||
|
||||
x Anything, the argument is not checked |
||||
o Option, i.e anything starting with - |
||||
p Option+Any (p as in option Pair) |
||||
s Subcommand |
||||
e Expression |
||||
E Expression that should be in braces |
||||
|
||||
d Definition. That arg defines a new command. |
||||
If followed by =cmd, it copies syntax from cmd. |
||||
|
||||
c Code, checked in surrounding context |
||||
cg Code, checked in global context |
||||
cn Code, checked in a virtual namespace |
||||
cl Code, checked in its own local context |
||||
cv Code, checked in its own local context, preceded by variable list |
||||
|
||||
n, v and l all marks variable names. Those arguments will not be |
||||
checked against known variables to detect missing $. |
||||
n The variable does not have to exist, and is set by the command. |
||||
v The variable must exist. It is not marked as set. |
||||
l Does not have to exist. It will be marked as known, but not set. |
||||
|
||||
If a token is an integer, just check the number of arguments against |
||||
it. This is equivalent to that many "x"es. |
||||
|
||||
r min ?max? Specify a range for number of arguments |
||||
|
||||
<ul>Modifiers</ul> |
||||
|
||||
These apply to some of the tokens. |
||||
|
||||
? Zero or One |
||||
* Zero or more |
||||
. One or nothing at all |
||||
|
||||
* after x swallows all the rest and must be last |
||||
s may only have . |
||||
e and c may not have any modifier |
||||
|
||||
<ul>Subcommands</ul> |
||||
|
||||
For commands that have subcommands (as indicated by token "s"), |
||||
separate descriptions can be set up for each subcommand. |
||||
If a syntax for a subcommand is defined, it is used to check the rest. |
||||
|
||||
##nagelfar syntax string s x x* |
||||
##nagelfar syntax string\\ bytelength 1 |
||||
##nagelfar syntax string\\ compare o* x x |
||||
|
||||
<ul>Different syntax for different number of arguments</ul> |
||||
|
||||
If the first token ends with : it means that there are different syntax |
||||
descriptions for different number of arguments. Any token ending |
||||
with : starts a syntax for the number of arguments that the number |
||||
preceding it says. A lone : starts the default syntax. |
||||
|
||||
Example: "1: x 2: n n : e x*" |
@ -1,3 +0,0 @@
@@ -1,3 +0,0 @@
|
||||
# Special syntax definitions for the file test.tcl |
||||
|
||||
##nagelfar syntax copy v n |
@ -1,93 +0,0 @@
@@ -1,93 +0,0 @@
|
||||
proc apa {} { |
||||
|
||||
set bepa 1 |
||||
# Detect missing $ |
||||
set cepa bepa |
||||
# Detect unknown or misspelled variable |
||||
set depa $cep |
||||
set epa |
||||
# Detect bad $ |
||||
set $depa apa |
||||
if {[info exists $cepa]} { |
||||
# Detect wrong number of args |
||||
set apa bepa cepa |
||||
} |
||||
# Detect ugly if |
||||
if {$bepa == $cepa} { |
||||
set hej 1 |
||||
} elsif {$bepa == $cepa} { |
||||
set hej 2 |
||||
} else { |
||||
set hej 3 |
||||
} |
||||
# Detect bad subcommand |
||||
info gurka |
||||
|
||||
# Detect bad switch comment |
||||
switch $bepa { |
||||
hej { |
||||
set hej hopp |
||||
} |
||||
# This is bad |
||||
hopp { |
||||
# Detect a missing command |
||||
miffo |
||||
} |
||||
} |
||||
} |
||||
|
||||
# Test call-by-name handling |
||||
# The syntax of this proc is described in |
||||
# the file test.syntax |
||||
proc copy {srcName dstName} { |
||||
upvar $srcName src $dstName dst |
||||
set dst $src |
||||
} |
||||
|
||||
proc testCopy {} { |
||||
set apa 1 |
||||
# It should not warn about apa below |
||||
copy apa bepa |
||||
# Bepa should be known now |
||||
set cepa $bepa |
||||
|
||||
# Detect $ mistake |
||||
copy apa $bepa |
||||
copy $apa bepa |
||||
} |
||||
|
||||
proc bepa {} { |
||||
# Missing quote |
||||
set apa "hej hopp |
||||
} |
||||
# A quote just to fix syntax coloring " |
||||
|
||||
proc cepa {} { |
||||
# Missing bracket |
||||
set apa [hej hopp |
||||
} |
||||
|
||||
proc epa {} { |
||||
# Extra close brace |
||||
if {[string length apa}} { |
||||
set bepa 1 |
||||
} |
||||
} |
||||
|
||||
proc fepa {} { |
||||
# Commented brace { |
||||
if {[string length apa]} { |
||||
set bepa 1 |
||||
} |
||||
} |
||||
} |
||||
|
||||
# This should be last in the file, since |
||||
# the missing close brace disturbs anything |
||||
# after it |
||||
proc depa {} { |
||||
# Missing close brace |
||||
if {[string length apa] { |
||||
set bepa 1 |
||||
} |
||||
} |
@ -1,40 +0,0 @@
@@ -1,40 +0,0 @@
|
||||
# This is a supplement to the source file nagelfar.tcl to provide |
||||
# extra syntax info for it. |
||||
# Whenever <file>.tcl is checked, any <file>.syntax is run through |
||||
# the syntax checker first. |
||||
|
||||
# Comments of the style below can be included in the source file |
||||
# or in a file like this if that is not suitable. |
||||
|
||||
# The syntax tokens (x/v/n etc.) are described in syntaxbuild.tcl |
||||
# More info can be found in the doc about inline comments. |
||||
|
||||
|
||||
# This procedure takes four arguments, the third being a call-by-name |
||||
# where the variable is set by the proc. The fourth is a call-by-name |
||||
# where the variable should exist before. |
||||
|
||||
##nagelfar syntax parseSubst x x n v |
||||
|
||||
# This procedure takes three arguments, the third being a |
||||
# call-by-name where the variable should exist before. |
||||
|
||||
##nagelfar syntax parseBody x x v x? |
||||
|
||||
# Argument 6 and 7 to markVariable is a call-by-name where |
||||
# the variable is set by this call and need not exist before. |
||||
|
||||
##nagelfar syntax markVariable x x x x x n n |
||||
|
||||
# This application uses TkDnd but since the standard database usually |
||||
# do not know about 'dnd', it is included here to avoid false warnings. |
||||
|
||||
##nagelfar syntax dnd s x* |
||||
|
||||
# The "s" above denotes a subcommand, and those can be listed like this. |
||||
|
||||
##nagelfar subcmd dnd bindtarget cleartarget |
||||
|
||||
# Additional syntax can be defined for a subcommand |
||||
|
||||
##nagelfar syntax dnd\ bindtarget 4 |
File diff suppressed because it is too large
Load Diff
@ -1,305 +0,0 @@
@@ -1,305 +0,0 @@
|
||||
--- ./nag 2010-10-24 00:33:30.000000000 +0600 |
||||
+++ ./nagelfar.tcl 2010-10-24 00:43:01.000000000 +0600 |
||||
@@ -317,7 +317,7 @@ |
||||
if {[string match "##nagelfar *" $str]} { |
||||
set rest [string range $str 11 end] |
||||
if {[catch {llength $rest}]} { |
||||
- errorMsg N "Bad list in ##nagelfar comment" $index |
||||
+ errorMsg W "Bad list in ##nagelfar comment" $index |
||||
return |
||||
} |
||||
if {[llength $rest] == 0} return |
||||
@@ -380,7 +380,7 @@ |
||||
} |
||||
} |
||||
default { |
||||
- errorMsg N "Bad type in ##nagelfar comment" $index |
||||
+ errorMsg W "Bad type in ##nagelfar comment" $index |
||||
return |
||||
} |
||||
} |
||||
@@ -455,7 +455,7 @@ |
||||
set i $ni |
||||
set si2 $i |
||||
} else { |
||||
- errorMsg N "Standalone {*} can be confusing. I recommend \"*\"." $i |
||||
+ errorMsg W "Standalone {*} can be confusing. I recommend \"*\"." $i |
||||
} |
||||
} |
||||
} |
||||
@@ -605,7 +605,7 @@ |
||||
} |
||||
set check [info exists option($cmd)] |
||||
if {!$check && $::Nagelfar(dbpicky)} { |
||||
- errorMsg N "DB: Missing options for command \"$cmd\"" 0 |
||||
+ errorMsg W "DB: Missing options for command \"$cmd\"" 0 |
||||
} |
||||
set i 0 |
||||
set used 0 |
||||
@@ -893,7 +893,7 @@ |
||||
return "" |
||||
} |
||||
# FIXA: Use markVariable |
||||
- if {![info exists knownVars(known,$var)] && !$::Prefs(noVar)} { |
||||
+ if {![info exists knownVars(known,$var)] && !$::Prefs(noVar) && ![regexp {[\w]*::[\w]+} $var]} { |
||||
if {[string match "*::*" $var]} { |
||||
set tail [namespace tail $var] |
||||
set ns [namespace qualifiers $var] |
||||
@@ -983,11 +983,11 @@ |
||||
if {[string equal $c "\]"] && $i == ($len - 1)} { |
||||
# Note unescaped bracket at end of word since it's |
||||
# likely to mean it should not be there. |
||||
- errorMsg N "Unescaped end bracket" [expr {$index + $i}] |
||||
+ errorMsg W "Unescaped end bracket" [expr {$index + $i}] |
||||
} elseif {[string equal $c "\""] && $i == ($len - 1)} { |
||||
# Note unescaped quote at end of word since it's |
||||
# likely to mean it should not be there. |
||||
- errorMsg N "Unescaped quote" [expr {$index + $i}] |
||||
+ errorMsg W "Unescaped quote" [expr {$index + $i}] |
||||
} |
||||
} |
||||
} else { |
||||
@@ -1047,7 +1047,7 @@ |
||||
# Warn if the called command is expr |
||||
set body [string range $str $si $i] |
||||
if {[string match "expr*" $body]} { |
||||
- errorMsg N "Expr called in expression" \ |
||||
+ errorMsg W "Expr called in expression" \ |
||||
[expr {$index + $si}] |
||||
} |
||||
parseBody $body [expr {$index + $si}] knownVars 1 |
||||
@@ -1089,7 +1089,7 @@ |
||||
while {[set si [string first \# $word $si]] >= 0} { |
||||
# Is it first in a line? |
||||
if {[string index $word [expr {$si - 1}]] eq "\n"} { |
||||
- errorMsg N "Suspicious \# char. Possibly a bad comment." \ |
||||
+ errorMsg W "Suspicious \# char. Possibly a bad comment." \ |
||||
[expr {$index + $si}] |
||||
break |
||||
} |
||||
@@ -1286,7 +1286,7 @@ |
||||
# corresponding object command |
||||
#decho "$tok $tokCount $mod" |
||||
if {([lindex $wordstatus $i] & 1) == 0} { # Non constant |
||||
- errorMsg N "Non constant definition \"[lindex $argv $i]\".\ |
||||
+ errorMsg W "Non constant definition \"[lindex $argv $i]\".\ |
||||
Skipping." [lindex $indices $i] |
||||
} else { |
||||
set copyFrom [string range $mod 1 end] |
||||
@@ -1356,7 +1356,7 @@ |
||||
# FIXA: Maybe accept substitutions as part of namespace? |
||||
foreach ws [lrange $wordstatus $i $iplus2] { |
||||
if {($ws & 1) == 0} { |
||||
- errorMsg N "Non constant argument to proc \"[lindex $argv $i]\".\ |
||||
+ errorMsg W "Non constant argument to proc \"[lindex $argv $i]\".\ |
||||
Skipping." $index |
||||
return |
||||
} |
||||
@@ -1534,7 +1534,7 @@ |
||||
} |
||||
lappend constantsDontCheck $i |
||||
if {([lindex $wordstatus $i] & 1) == 0} { # Non constant |
||||
- errorMsg N "Non static subcommand to \"$cmd\"" \ |
||||
+ errorMsg W "Non static subcommand to \"$cmd\"" \ |
||||
[lindex $indices $i] |
||||
} else { |
||||
set arg [lindex $argv $i] |
||||
@@ -1564,7 +1564,7 @@ |
||||
} |
||||
} |
||||
} elseif {$::Nagelfar(dbpicky)} { |
||||
- errorMsg N "DB: Missing subcommands for \"$cmd\"" 0 |
||||
+ errorMsg W "DB: Missing subcommands for \"$cmd\"" 0 |
||||
} |
||||
# Are there any syntax definition for this subcommand? |
||||
set sub "$cmd $arg" |
||||
@@ -1578,7 +1578,7 @@ |
||||
set i $argc |
||||
break |
||||
} elseif {$::Nagelfar(dbpicky)} { |
||||
- errorMsg N "DB: Missing syntax for subcommand $sub" 0 |
||||
+ errorMsg W "DB: Missing syntax for subcommand $sub" 0 |
||||
} |
||||
} |
||||
incr i |
||||
@@ -1723,7 +1723,7 @@ |
||||
} |
||||
} |
||||
if {$wordtype ne "varName"} { |
||||
- errorMsg N "Suspicious variable name \"$var\"" $index |
||||
+ errorMsg W "Suspicious variable name \"$var\"" $index |
||||
} |
||||
return 0 |
||||
} |
||||
@@ -1942,7 +1942,7 @@ |
||||
} |
||||
# Detect bracketed command |
||||
if {[llength $words2] == 1 && [string index $cmd 0] eq "\["} { |
||||
- errorMsg N "Suspicious brackets around command" $index |
||||
+ errorMsg W "Suspicious brackets around command" $index |
||||
} |
||||
return |
||||
} |
||||
@@ -1987,7 +1987,7 @@ |
||||
set knownVars(namespace,$var) "" |
||||
set knownVars(type,$var) "" |
||||
} else { |
||||
- errorMsg N "Non constant argument to $cmd: $var" $index |
||||
+ errorMsg W "Non constant argument to $cmd: $var" $index |
||||
} |
||||
} |
||||
set noConstantCheck 1 |
||||
@@ -2022,7 +2022,7 @@ |
||||
} |
||||
lappend constantsDontCheck $i |
||||
} else { |
||||
- errorMsg N "Non constant argument to $cmd: $var" \ |
||||
+ errorMsg W "Non constant argument to $cmd: $var" \ |
||||
$index |
||||
} |
||||
} |
||||
@@ -2057,7 +2057,7 @@ |
||||
# Assume it is not a level unless odd number of args. |
||||
if {$oddA} { |
||||
# Warn here? FIXA |
||||
- errorMsg N "Non constant level to $cmd: \"$level\"" $index |
||||
+ errorMsg W "Non constant level to $cmd: \"$level\"" $index |
||||
set hasLevel 1 |
||||
set level "" |
||||
} else { |
||||
@@ -2077,7 +2077,7 @@ |
||||
foreach {other var} $tmp {wsO wsV} $tmpWS { |
||||
if {($wsV & 1) == 0} { |
||||
# The variable name contains substitutions |
||||
- errorMsg N "Suspicious upvar variable \"$var\"" $index |
||||
+ errorMsg W "Suspicious upvar variable \"$var\"" $index |
||||
} else { |
||||
set knownVars(known,$var) 1 |
||||
set knownVars(type,$var) "" |
||||
@@ -2282,7 +2282,7 @@ |
||||
} |
||||
if {[lindex $wordstatus $i] & 1 == 1} { |
||||
# First argument to switch is constant, suspiscious |
||||
- errorMsg N "String argument to switch is constant" \ |
||||
+ errorMsg W "String argument to switch is constant" \ |
||||
[lindex $indices $i] |
||||
} |
||||
incr i |
||||
@@ -2428,7 +2428,7 @@ |
||||
popNamespace |
||||
} else { |
||||
if {!$::Nagelfar(firstpass)} { # Messages in second pass |
||||
- errorMsg N "Only braced namespace evals are checked." \ |
||||
+ errorMsg W "Only braced namespace evals are checked." \ |
||||
[lindex $indices 0] |
||||
} |
||||
} |
||||
@@ -2496,7 +2496,7 @@ |
||||
$wordtype $indices] |
||||
} |
||||
} else { |
||||
- errorMsg N "No superclass found for 'next'" $index |
||||
+ errorMsg W "No superclass found for 'next'" $index |
||||
} |
||||
} |
||||
tailcall { |
||||
@@ -2554,7 +2554,7 @@ |
||||
set type [checkCommand $cmd $index $argv $wordstatus \ |
||||
$wordtype $indices] |
||||
} elseif {$::Nagelfar(dbpicky)} { |
||||
- errorMsg N "DB: Missing syntax for command \"$cmd\"" 0 |
||||
+ errorMsg W "DB: Missing syntax for command \"$cmd\"" 0 |
||||
} |
||||
} |
||||
} |
||||
@@ -2725,7 +2725,7 @@ |
||||
if {$tmp != $closeBrace} { |
||||
# Only do this if there is a free open brace |
||||
if {[regexp "\{\n" $tryline]} { |
||||
- errorMsg N "Close brace not aligned with line\ |
||||
+ errorMsg W "Close brace not aligned with line\ |
||||
[calcLineNo $index] ($tmp $closeBrace)" \ |
||||
$closeBraceIx |
||||
} |
||||
@@ -2743,7 +2743,7 @@ |
||||
# If it does not end the statement, there is probably a |
||||
# brace mismatch. |
||||
# When inside a namespace eval block, this is probably ok. |
||||
- errorMsg N "Found non indented close brace that did not end\ |
||||
+ errorMsg W "Found non indented close brace that did not end\ |
||||
statement." $closeBraceIx |
||||
contMsg "This may indicate a brace mismatch." |
||||
} |
||||
@@ -2820,7 +2820,7 @@ |
||||
foreach statement [lrange $statements 0 end-1] \ |
||||
stmtIndex [lrange $indices 0 end-1] { |
||||
if {[string index $statement end] eq "\n"} { |
||||
- errorMsg N "Newline in command substitution" $stmtIndex |
||||
+ errorMsg W "Newline in command substitution" $stmtIndex |
||||
break |
||||
} |
||||
} |
||||
@@ -2863,7 +2863,7 @@ |
||||
if {[llength $a] > 1} { |
||||
set seenDefault 1 |
||||
} elseif {$seenDefault && !$::Nagelfar(firstpass) && $var ne "args"} { |
||||
- errorMsg N "Non-default arg after default arg" $indexArgs |
||||
+ errorMsg W "Non-default arg after default arg" $indexArgs |
||||
# Reset to avoid further messages |
||||
set seenDefault 0 |
||||
} |
||||
@@ -2882,14 +2882,14 @@ |
||||
# Check for non-last "args" |
||||
set i [lsearch $procArgs "args"] |
||||
if {$i >= 0 && $i != [llength $procArgs] - 1} { |
||||
- errorMsg N "Argument 'args' used before last, which can be confusing" \ |
||||
+ errorMsg W "Argument 'args' used before last, which can be confusing" \ |
||||
$indexArgs |
||||
} |
||||
# Check for duplicates |
||||
set l1 [lsort $procArgs] |
||||
set l2 [lsort -unique $procArgs] |
||||
if {$l1 ne $l2} { |
||||
- errorMsg N "Duplicate proc arguments" $indexArgs |
||||
+ errorMsg W "Duplicate proc arguments" $indexArgs |
||||
} |
||||
} |
||||
} |
||||
@@ -3040,7 +3040,7 @@ |
||||
if {$isMethod} { |
||||
set currentObj [currentObject] |
||||
if {$currentObj eq ""} { |
||||
- errorMsg N "Method definition without a current object" \ |
||||
+ errorMsg W "Method definition without a current object" \ |
||||
[lindex $indices 0] |
||||
set isMethod 0 |
||||
} else { |
||||
@@ -3317,7 +3317,7 @@ |
||||
} |
||||
if {!$found} { |
||||
# Close brace is reported elsewhere |
||||
- if {$cmd ne "\}"} { |
||||
+ if {$cmd ne "\}" && ![regexp {::} $cmd]} { |
||||
# Different messages depending on name |
||||
if {[regexp {^(?:(?:[\w',:.]+)|(?:%W))$} $cmd]} { |
||||
errorMsg W "Unknown command \"$cmd\"" $index |
||||
@@ -3363,7 +3363,7 @@ |
||||
parseScript $script |
||||
if {$i >= 0} { |
||||
# Add a note about the Ctrl-Z |
||||
- errorMsg N "Aborted script due to end-of-file marker" \ |
||||
+ errorMsg W "Aborted script due to end-of-file marker" \ |
||||
[expr {[string length $::instrumenting(script)] - 1}] |
||||
} |
||||
flushMsg |
||||
@@ -3876,9 +3876,7 @@ |
||||
} else { |
||||
foreach f $::Nagelfar(files) { |
||||
if {$::Nagelfar(stop)} break |
||||
- if {$::Nagelfar(gui) || [llength $::Nagelfar(files)] > 1} { |
||||
- set ::currentFile $f |
||||
- } |
||||
+ set ::currentFile $f |
||||
set syntaxfile [file rootname $f].syntax |
||||
if {[file exists $syntaxfile]} { |
||||
if {!$::Nagelfar(quiet)} { |
@ -1,808 +0,0 @@
@@ -1,808 +0,0 @@
|
||||
# This script is intended to be run in a Tcl interpreter to extract |
||||
# information for the Nagelfar syntax checker. |
||||
# |
||||
# This file contains hardcoded syntax info for many commands that it |
||||
# adds to the resulting syntax database, plus it tries to extract info |
||||
# from the interpreter about things like subcommands. |
||||
|
||||
# Autoload stuff to have them available |
||||
catch {parray} ; catch {tk_dialog} ; catch {package require msgcat} |
||||
foreach gurkmeja [array names auto_index] { |
||||
if {[info procs $gurkmeja] == ""} { |
||||
catch {eval $auto_index($gurkmeja)} |
||||
} |
||||
} |
||||
if {[info exists gurkmeja]} { |
||||
unset gurkmeja |
||||
} |
||||
|
||||
|
||||
# First get some data about the system |
||||
|
||||
set ::kG [lsort [info globals]] |
||||
set ::kC [info commands] |
||||
foreach pat {{tcl::[a-z]*} {msgcat::[a-z]*} {oo::[a-z]*}} { |
||||
foreach p [info commands $pat] { |
||||
if {[string match ::* $p]} { |
||||
set p [string range $p 2 end] |
||||
} |
||||
lappend ::kC $p |
||||
} |
||||
} |
||||
|
||||
# Collect exported namespace commands |
||||
if 0 { # Not working yet |
||||
set todo [namespace children ::] |
||||
while {[llength $todo] > 0} { |
||||
set ns [lindex $todo 0] |
||||
set todo [lrange $todo 1 end] |
||||
eval lappend todo [namespace children $ns] |
||||
|
||||
set exports [namespace eval $ns {namespace export}] |
||||
foreach pat $exports { |
||||
foreach p [info commands ${ns}::$pat] { |
||||
# Do not include the first :: in the name |
||||
if {[string match ::* $p]} { |
||||
set p [string range $p 2 end] |
||||
} |
||||
lappend ::kC $p |
||||
} |
||||
} |
||||
} |
||||
} |
||||
|
||||
# Function to get an option or subcommand list from an error message. |
||||
proc getSubCmds {args} { |
||||
catch {uplevel 1 $args} err |
||||
|
||||
lappend regexps {option .* must be (.*)$} |
||||
lappend regexps {option .* should be one of (.*)$} |
||||
lappend regexps {bad .* must be (.*)$} |
||||
lappend regexps {: must be (.*)$} |
||||
lappend regexps {: should be (.*)$} |
||||
|
||||
foreach re $regexps { |
||||
if {[regexp $re $err -> apa]} { |
||||
regsub -all {( or )|(, or )|(, )} $apa " " apa |
||||
return [lsort -dictionary [lrange $apa 0 end]] |
||||
} |
||||
} |
||||
#puts "Error '$err' from '$args'" |
||||
return {} |
||||
} |
||||
|
||||
# Create a syntax description for a procedure |
||||
proc createSyntax {procName} { |
||||
set args [info args $procName] |
||||
|
||||
set min 0 |
||||
set unlim 0 |
||||
|
||||
if {[lindex $args end] == "args"} { |
||||
set unlim 1 |
||||
} |
||||
set i 1 |
||||
foreach a $args { |
||||
if {$a != "args"} { |
||||
if {![info default $procName $a dummy]} { |
||||
set min $i |
||||
} |
||||
} |
||||
incr i |
||||
} |
||||
if {$unlim} { |
||||
set result "r $min" |
||||
} elseif {$min == [llength $args]} { |
||||
set result $min |
||||
} else { |
||||
set result [list r $min [llength $args]] |
||||
} |
||||
return $result |
||||
} |
||||
|
||||
proc markCmdAsKnown {args} { |
||||
foreach cmd $args { |
||||
if {[lsearch $::kC $cmd] == -1} { |
||||
lappend ::kC $cmd |
||||
} |
||||
} |
||||
} |
||||
|
||||
# Build a syntax database and write it to a channel |
||||
proc buildDb {ch} { |
||||
set patch [info patchlevel] |
||||
set ver [package present Tcl] |
||||
|
||||
puts $ch "# Automatically generated syntax database." |
||||
puts $ch "" |
||||
|
||||
set useTk [expr {![catch {package present Tk}]}] |
||||
set dbstring "Tcl $patch $::tcl_platform(platform)" |
||||
if {$useTk} { |
||||
append dbstring ", Tk $::tk_patchLevel" |
||||
if {![catch {tk windowingsystem}]} { |
||||
append dbstring " [tk windowingsystem]" |
||||
} |
||||
} |
||||
|
||||
# Below is the hardcoded syntax for many core commands. |
||||
# It is defined using the "language" below. |
||||
# TODO: Add all core commands. |
||||
|
||||
# An entry should be a valid list of tokens as described below. |
||||
|
||||
# If the first token ends with : it means that there are different |
||||
# syntax descriptions for different number of arguments. |
||||
# Any token ending with : starts a syntax for the number of arguments |
||||
# that the number preceding it says. A lone : starts the default syntax. |
||||
# Example "1: x 2: n n : e x*" |
||||
|
||||
# If a token is an integer, just check the number of arguments against it. |
||||
# r min ?max? Specifies a range for number of arguments |
||||
|
||||
# x Any |
||||
# o Option, i.e anything starting with - |
||||
# p Option+Any (p as in option Pair) |
||||
# s Subcommand |
||||
# d Definition. That arg defines a new command |
||||
# If followed by =cmd, it copies syntax from cmd. |
||||
# e Expression |
||||
# E Expression that should be in braces |
||||
# c Code, checked in surrounding context |
||||
# cg Code, checked in global context |
||||
# cn Code, checked in virtual namespace |
||||
# cl Code, checked in its own local context |
||||
# cv Code, checked in its own local context, preceded by variable list |
||||
# n, v and l all marks variable names. Those arguments will not be |
||||
# checked against known variables to detect missing $. |
||||
# n The variable does not have to exist, and is set by the command. |
||||
# v The variable must exist. It is not marked as set. |
||||
# l Does not have to exist. It will be marked as known, but not set. |
||||
|
||||
# Modifiers that apply to some of the above |
||||
# ? Zero or One |
||||
# * Zero or more |
||||
# . One or nothing at all |
||||
|
||||
# * after x swallows all the rest and must be last |
||||
# s may only have . |
||||
# e and c may not have any modifier |
||||
|
||||
# If a syntax for a subcommand is defined, it is used to check the rest |
||||
|
||||
|
||||
# Syntax for Tcl core commands |
||||
|
||||
set syntax(after) "r 1" |
||||
# FIXA: handle after's id/subcommand thing. |
||||
set syntax(append) "n x*" |
||||
set syntax(array) "s v x?" |
||||
set syntax(array\ exists) "l" |
||||
set syntax(array\ names) "v x? x?" |
||||
set syntax(array\ set) "n x" |
||||
set syntax(array\ size) "v" |
||||
set syntax(array\ statistics) "v" |
||||
set syntax(array\ unset) "l x?" |
||||
#set syntax(bgerror) 1 |
||||
set syntax(binary) "s x*" |
||||
set syntax(binary\ scan) "x x n n*" |
||||
set syntax(break) 0 |
||||
set syntax(case) "x*" |
||||
set syntax(catch) "c n?" |
||||
set syntax(cd) "r 0 1" |
||||
set syntax(clock) "s x*" |
||||
set syntax(clock\ clicks) "o?" |
||||
set syntax(clock\ format) "x p*" |
||||
set syntax(clock\ scan) "x p*" |
||||
set syntax(clock\ seconds) 0 |
||||
set syntax(close) 1 |
||||
set syntax(concat) "r 0" |
||||
set syntax(continue) 0 |
||||
set syntax(encoding) "s x*" |
||||
set syntax(encoding\ convertfrom) "r 1 2" |
||||
set syntax(encoding\ convertto) "r 1 2" |
||||
set syntax(encoding\ names) 0 |
||||
set syntax(encoding\ system) "r 0 1" |
||||
set syntax(eof) 1 |
||||
set syntax(error) "r 1 3" |
||||
set special(eval) 1 |
||||
set syntax(exec) "o* x x*" |
||||
set syntax(exit) "r 0 1" |
||||
set special(expr) 1 |
||||
set syntax(fblocked) 1 |
||||
set syntax(fconfigure) "x o. x. p*" |
||||
set syntax(fcopy) "x x p*" |
||||
set syntax(file) "s x*" |
||||
set syntax(file\ atime) "x x?" |
||||
set syntax(file\ attributes) "x o. x. p*" |
||||
set syntax(file\ channels) "x?" |
||||
set syntax(file\ copy) "o* x x x*" |
||||
set syntax(file\ delete) "o* x x*" |
||||
set syntax(file\ dirname) "x" |
||||
set syntax(file\ executable) "x" |
||||
set syntax(file\ exists) "x" |
||||
set syntax(file\ extension) "x" |
||||
set syntax(file\ isdirectory) "x" |
||||
set syntax(file\ isfile) "x" |
||||
set syntax(file\ join) "x x*" |
||||
set syntax(file\ link) "o? x x?" |
||||
set syntax(file\ lstat) "x n" |
||||
set syntax(file\ mkdir) "x x*" |
||||
set syntax(file\ mtime) "x x?" |
||||
set syntax(file\ nativename) "x" |
||||
set syntax(file\ normalize) "x" |
||||
set syntax(file\ owned) "x" |
||||
set syntax(file\ pathtype) "x" |
||||
set syntax(file\ readable) "x" |
||||
set syntax(file\ readlink) "x" |
||||
set syntax(file\ rename) "o* x x x*" |
||||
set syntax(file\ rootname) "x" |
||||
set syntax(file\ separator) "x?" |
||||
set syntax(file\ size) "x" |
||||
set syntax(file\ split) "x" |
||||
set syntax(file\ stat) "x n" |
||||
set syntax(file\ system) "x" |
||||
set syntax(file\ tail) "x" |
||||
set syntax(file\ type) "x" |
||||
set syntax(file\ volumes) 0 |
||||
set syntax(file\ writable) "x" |
||||
set syntax(fileevent) "x x x?" |
||||
set syntax(flush) 1 |
||||
set syntax(for) "c E c c" |
||||
set special(foreach) 1 |
||||
set syntax(format) "r 1" |
||||
set syntax(gets) "x n?" |
||||
set syntax(glob) "o* x x*" |
||||
set special(global) 1 |
||||
# "if" is handled specially, but is added here to not disturb header gen. |
||||
set syntax(if) "e c" |
||||
set syntax(incr) "v x?" |
||||
set syntax(info) "s x*" ;# FIXA: All subcommands |
||||
set syntax(info\ exists) "l" |
||||
set syntax(info\ default) "x x n" |
||||
# "interp" is handled specially |
||||
set syntax(interp) "s x*" |
||||
set syntax(interp\ invokehidden) "x o* x x*" |
||||
set syntax(join) "r 1 2" |
||||
set syntax(lappend) "n x*" |
||||
if {[catch {lindex apa 0 0}]} { |
||||
set syntax(lindex) 2 ;# Pre 8.4 |
||||
} else { |
||||
set syntax(lindex) "r 2" |
||||
} |
||||
set syntax(linsert) "r 3" |
||||
set syntax(list) "r 0" |
||||
set syntax(llength) 1 |
||||
set syntax(load) "r 1 3" |
||||
set syntax(lrange) 3 |
||||
set syntax(lreplace) "r 3" |
||||
if {[catch {lsearch -all -glob apa bepa}]} { |
||||
set syntax(lsearch) "o? x x" ;# Pre 8.4 |
||||
} else { |
||||
set syntax(lsearch) "o* x x" |
||||
} |
||||
set syntax(lset) "n x x x*" |
||||
set syntax(lsort) "o* x" |
||||
# "namespace" is handled specially |
||||
set syntax(namespace) "s x*" ;# FIXA: All subcommands |
||||
set syntax(namespace\ import) "o* x*" |
||||
set syntax(namespace\ which) "o* x?" |
||||
set option(namespace\ which) "-variable -command" |
||||
set option(namespace\ which\ -variable) v |
||||
set syntax(open) "r 1 3" |
||||
# "package" is handled specially |
||||
set syntax(package) "s x*" ;# FIXA: All subcommands |
||||
set syntax(pid) "r 0 1" |
||||
set syntax(proc) dp |
||||
set syntax(puts) "1: x : o? x x?" |
||||
set syntax(pwd) 0 |
||||
set syntax(read) "r 1 2" |
||||
set syntax(regexp) "o* x x n*" |
||||
set syntax(regsub) "o* x x x n?" |
||||
set syntax(rename) 2 ;# Maybe treat rename specially? |
||||
set syntax(return) "p* x?" |
||||
set syntax(scan) "x x n*" |
||||
set syntax(seek) "r 2 3" |
||||
set syntax(set) "1: v : n x" |
||||
set syntax(socket) "r 2" |
||||
set syntax(source) 1 |
||||
set syntax(split) "r 1 2" |
||||
set syntax(string) "s x x*" |
||||
set syntax(string\ bytelength) 1 |
||||
set syntax(string\ compare) "o* x x" |
||||
set syntax(string\ equal) "o* x x" |
||||
set syntax(string\ first) "r 2 3" |
||||
set syntax(string\ index) 2 |
||||
set syntax(string\ is) "s o* x" |
||||
set syntax(string\ last) "r 2 3" |
||||
set syntax(string\ length) 1 |
||||
set syntax(string\ map) "o? x x" |
||||
set syntax(string\ match) "o? x x" |
||||
set syntax(string\ range) 3 |
||||
set syntax(string\ repeat) 2 |
||||
set syntax(string\ replace) "r 3 4" |
||||
set syntax(string\ tolower) "r 1 3" |
||||
set syntax(string\ totitle) "r 1 3" |
||||
set syntax(string\ toupper) "r 1 3" |
||||
set syntax(string\ trim) "r 1 2" |
||||
set syntax(string\ trimleft) "r 1 2" |
||||
set syntax(string\ trimright) "r 1 2" |
||||
set syntax(string\ wordend) 2 |
||||
set syntax(string\ wordstart) 2 |
||||
set syntax(subst) "o* x" |
||||
set special(switch) 1 |
||||
set syntax(tell) 1 |
||||
set syntax(time) "c x?" |
||||
set syntax(trace) "s x x*" |
||||
set syntax(trace\ add) "s x x x" |
||||
set syntax(trace\ add\ command) "x x c3" |
||||
set syntax(trace\ add\ execution) "x x c2" |
||||
set syntax(trace\ add\ variable) "v x c3" |
||||
set syntax(trace\ remove) "s x x x" |
||||
set syntax(trace\ remove\ command) "x x x" |
||||
set syntax(trace\ remove\ execution) "x x x" |
||||
set syntax(trace\ remove\ variable) "v x x" |
||||
set syntax(trace\ info) "s x x x" |
||||
set syntax(trace\ info\ command) "x" |
||||
set syntax(trace\ info\ execution) "x" |
||||
set syntax(trace\ info\ variable) "v" |
||||
set syntax(trace\ variable) "n x x" |
||||
set syntax(trace\ vinfo) "l" |
||||
set syntax(trace\ vdelete) "v x x" |
||||
set syntax(unset) "o* l l*" |
||||
set syntax(update) "s." |
||||
set special(uplevel) 1 |
||||
set special(upvar) 1 |
||||
set special(variable) 1 |
||||
set syntax(vwait) "n" |
||||
set syntax(while) "E c" |
||||
|
||||
# Things added in 8.5 |
||||
if {[info commands dict] ne ""} { |
||||
set syntax(dict) "s x*" |
||||
set syntax(dict\ append) "n x x*" |
||||
set syntax(dict\ incr) "n x x*" |
||||
set syntax(dict\ filter) "x x x" |
||||
set syntax(dict\ lappend) "n x x*" |
||||
set syntax(dict\ set) "n x x*" |
||||
set syntax(dict\ unset) "n x x*" |
||||
# FIXA: handle this style: |
||||
set syntax(dict\ update) "n x x x* c" |
||||
set syntax(dict\ with) "n x* c" |
||||
# FIXA: handle variables in dict for |
||||
set syntax(dict\ for) "x x c" |
||||
|
||||
# Initialising incr |
||||
set syntax(incr) "n x?" |
||||
set syntax(lassign) "x n n*" |
||||
set syntax(lrepeat) "r 2" |
||||
set syntax(lreverse) "1" |
||||
set syntax(string\ reverse) "1" |
||||
set syntax(unload) "o* x x*" |
||||
set syntax(chan) "s x*" |
||||
set syntax(chan\ blocked) "x" |
||||
set syntax(chan\ close) "x" |
||||
set syntax(chan\ configure) "x o. x. p*" |
||||
set syntax(chan\ copy) "x x p*" |
||||
set syntax(chan\ create) "x x" |
||||
set syntax(chan\ eof) "x" |
||||
set syntax(chan\ event) "x x cg?" |
||||
set syntax(chan\ flush) "x" |
||||
set syntax(chan\ gets) "x n?" |
||||
set syntax(chan\ names) "x?" |
||||
set syntax(chan\ pending) "x x" |
||||
set syntax(chan\ postevent) "x x" |
||||
set syntax(chan\ puts) "1: x : o? x x?" |
||||
set syntax(chan\ read) "x x?" |
||||
set syntax(chan\ seek) $syntax(seek) |
||||
set syntax(chan\ tell) $syntax(tell) |
||||
set syntax(chan\ truncate) "x x?" |
||||
set syntax(apply) "x x*" |
||||
set syntax(source) "p* x" |
||||
set option(interp\ invokehidden\ -namespace) 1 |
||||
} |
||||
|
||||
# Things added in 8.6 |
||||
if {[info commands try] ne ""} { |
||||
# Changed commands |
||||
set syntax(catch) "c n? n?" ;# FIXA make a test for this |
||||
set syntax(close) "x x?" |
||||
set syntax(chan\ close) "x x?" |
||||
set syntax(dict\ filter) "x x x*" |
||||
# Do nothing gracefully |
||||
set syntax(file\ delete) "o* x*" |
||||
set syntax(file\ mkdir) "x*" |
||||
set syntax(glob) "o* x*" |
||||
set syntax(lassign) "x n*" |
||||
set syntax(linsert) "r 2" |
||||
set syntax(lrepeat) "r 1" |
||||
# New subcommands |
||||
set syntax(binary\ decode) "s x*" |
||||
set syntax(binary\ decode\ base64) "o* x" |
||||
set syntax(binary\ decode\ hex) "o* x" |
||||
set syntax(binary\ decode\ uuencode) "o* x" |
||||
set syntax(binary\ encode) "s x*" |
||||
set syntax(binary\ encode\ base64) "p* x" |
||||
set syntax(binary\ encode\ hex) "x" |
||||
set syntax(binary\ encode\ uuencode) "p* x" |
||||
set syntax(chan\ pipe) 0 |
||||
set syntax(chan\ pop) "x" |
||||
set syntax(chan\ push) "x c" |
||||
set syntax(file\ tempfile) "n? x?*" |
||||
set syntax(info\ coroutine) 0 |
||||
set syntax(interp\ cancel) "o* x? x?" |
||||
# New commands |
||||
set syntax(try) "r 0" |
||||
set syntax(throw) "2" |
||||
set syntax(coroutine) "x x x*" |
||||
set special(tailcall) 1 |
||||
set special(next) 1 |
||||
set syntax(yield) "x?" |
||||
set syntax(zlib) "s x*" |
||||
set syntax(zlib\ adler32) "x x?" |
||||
set syntax(zlib\ compress) "x x?" |
||||
set syntax(zlib\ crc32) "x x?" |
||||
set syntax(zlib\ decompress) "x x?" |
||||
set syntax(zlib\ deflate) "x x?" |
||||
set syntax(zlib\ gzip) "x p*" |
||||
set syntax(zlib\ gunzip) "x p*" |
||||
set syntax(zlib\ inflate) "x x?" |
||||
set syntax(zlib\ push) "s x*" |
||||
set syntax(zlib\ stream) "s x*" |
||||
set syntax(tcl::prefix) "s x*" |
||||
set syntax(tcl::prefix\ all) "x x" |
||||
set syntax(tcl::prefix\ longest) "x x" |
||||
set syntax(tcl::prefix\ match) "o* x x" |
||||
set option(tcl::prefix\ match\ -message) x |
||||
set option(tcl::prefix\ match\ -error) x |
||||
set syntax(oo::class) "s x*" |
||||
set syntax(oo::class\ create) "do=_stdclass_oo cn?" |
||||
set syntax(oo::class\ create::constructor) dk ;# Define constructor |
||||
set syntax(oo::class\ create::superclass) di ;# Define inheritance |
||||
set syntax(oo::class\ create::method) "dm" ;# Define method |
||||
set syntax(oo::class\ create::destructor) c |
||||
set syntax(_stdclass_oo) "s x*" |
||||
set subCmd(_stdclass_oo) "create new destroy variable" |
||||
set syntax(_stdclass_oo\ create) "dc=_obj,_stdclass_oo x?" |
||||
set return(_stdclass_oo\ create) _obj,_stdclass_oo |
||||
set syntax(_stdclass_oo\ new) 0 |
||||
set return(_stdclass_oo\ new) _obj,_stdclass_oo |
||||
set syntax(_stdclass_oo\ destroy) 0 |
||||
set syntax(_stdclass_oo\ variable) n* |
||||
set syntax(info\ object) "s x x*" |
||||
set syntax(info\ class) "s x x*" |
||||
set syntax(oo::copy) "x x?" |
||||
|
||||
# FIXA: all oo::define |
||||
set syntax(oo::define) "2: x cn : x s x x*" |
||||
set syntax(oo::objdefine) "2: x cn : x s x x*" |
||||
set syntax(oo::define::method) "x cv" |
||||
set syntax(oo::objdefine::method) "x cv" |
||||
set syntax(oo::define\ method) "x cv" |
||||
set syntax(oo::objdefine\ method) "x cv" |
||||
set syntax(oo::define::constructor) "cv" |
||||
set syntax(oo::objdefine::constructor) "cv" |
||||
set syntax(oo::define\ constructor) "cv" |
||||
set syntax(oo::objdefine\ constructor) "cv" |
||||
set syntax(oo::define::denstructor) "cl" |
||||
set syntax(oo::objdefine::destructor) "cl" |
||||
set syntax(oo::define\ destructor) "cl" |
||||
set syntax(oo::objdefine\ destructor) "cl" |
||||
set syntax(oo::define::forward) "x x x*" |
||||
set syntax(oo::objdefine::forward) "x x x*" |
||||
set syntax(oo::define::unexport) "x x*" |
||||
set syntax(oo::objdefine::unexport) "x x*" |
||||
|
||||
set syntax(oo::object) "s x*" ;# FIXA? |
||||
# Set up basic checking of self/my |
||||
set syntax(my) "s x*" |
||||
set syntax(my\ variable) "n*" |
||||
set syntax(self) "s?" |
||||
lappend ::kC self my |
||||
oo::class create miffo { |
||||
constructor {} { |
||||
upvar 1 subCmd subCmd |
||||
set subCmd(self) [getSubCmds self gurkmeja] |
||||
} |
||||
} |
||||
# Run constructor to get info about self |
||||
[miffo new] destroy |
||||
# New options |
||||
set option(lsort\ -stride) 1 |
||||
} |
||||
|
||||
|
||||
# Some special Tcl commands |
||||
set syntax(dde) "o? s x*" ;# FIXA: is this correct? |
||||
set syntax(history) "s x*" |
||||
set syntax(parray) "v x?" |
||||
|
||||
# FIXA: Type checking is still experimental |
||||
set return(linsert) list |
||||
set return(list) list |
||||
set return(llength) int |
||||
set return(lrange) list |
||||
set return(lreplace) list |
||||
set return(lsort) list |
||||
|
||||
# Syntax for Tk commands |
||||
|
||||
if {$useTk} { |
||||
set syntax(bell) "o* x*" |
||||
set syntax(bind) "x x? cg?" |
||||
set syntax(bindtags) "x x?" |
||||
set syntax(clipboard) "s x*" |
||||
set syntax(console) "r 1" |
||||
set syntax(destroy) "x*" |
||||
set syntax(event) "s x*" |
||||
set syntax(focus) "o? x?" |
||||
set syntax(font) "s x*" |
||||
set syntax(image) "s x*" |
||||
set syntax(grab) "x x*" ;# FIXA, how to check subcommands here? |
||||
set syntax(grid) "x x*" ;# FIXA, how to check subcommands here? |
||||
set syntax(lower) "x x?" |
||||
set syntax(option) "s x*" |
||||
set syntax(pack) "x x*" |
||||
set syntax(place) "x x*" |
||||
set syntax(raise) "x x?" |
||||
set syntax(selection) "s x*" |
||||
set syntax(send) "o* x x x*" |
||||
set syntax(tk) "s x*" |
||||
set syntax(tkwait) "s x" |
||||
set syntax(tkwait\ variable) "l" ;# Global variable? |
||||
set syntax(winfo) "s x x*" |
||||
set syntax(wm) "s x x*" |
||||
|
||||
set syntax(tk_chooseColor) "p*" |
||||
set syntax(tk_chooseDirectory) "p*" |
||||
#set syntax(tk_dialog) "r 6" |
||||
set syntax(tk_getOpenFile) "p*" |
||||
set syntax(tk_getSaveFile) "p*" |
||||
set syntax(tk_messageBox) "p*" |
||||
set syntax(tk_popup) "r 3 4" |
||||
set syntax(.) "s x*" |
||||
set syntax(.\ configure) "o. x. p*" |
||||
set syntax(.\ cget) "o" |
||||
|
||||
# FIXA: Starting on better Tk support |
||||
set classCmds {frame entry label button checkbutton radiobutton \ |
||||
listbox labelframe spinbox panedwindow toplevel menu message \ |
||||
scrollbar text canvas scale menubutton} |
||||
# Handle tk::xxx usage |
||||
foreach cmd $classCmds { |
||||
if {[info commands tk::$cmd] ne ""} { |
||||
lappend classCmds tk::$cmd |
||||
} |
||||
} |
||||
if {[info commands ttk::frame] ne ""} { |
||||
lappend classCmds ttk::scale ttk::label ttk::panedwindow |
||||
lappend classCmds ttk::separator ttk::menubutton |
||||
lappend classCmds ttk::entry ttk::radiobutton ttk::frame |
||||
lappend classCmds ttk::labelframe ttk::button ttk::sizegrip |
||||
lappend classCmds ttk::combobox ttk::notebook |
||||
lappend classCmds ttk::progressbar ttk::checkbutton |
||||
lappend classCmds ttk::treeview ttk::scrollbar |
||||
set syntax(ttk::style) "s x*" |
||||
set syntax(ttk::style\ configure) "x o. x. p*" |
||||
set syntax(ttk::style\ map) "x p*" |
||||
set syntax(ttk::style\ lookup) "r 2 4" |
||||
set syntax(ttk::style\ layout) "x x?" |
||||
set syntax(ttk::style\ element) "s x*" |
||||
set syntax(ttk::style\ element\ create) "x x x*" |
||||
set syntax(ttk::style\ element\ names) 0 |
||||
set syntax(ttk::style\ element\ options) x |
||||
set syntax(ttk::style\ theme) "s x*" |
||||
set syntax(ttk::style\ theme\ create) "x p*" |
||||
set syntax(ttk::style\ theme\ settings) 2 |
||||
set syntax(ttk::style\ theme\ names) 0 |
||||
set syntax(ttk::style\ theme\ use) x |
||||
set syntax(ttk::themes) x? |
||||
set syntax(ttk::setTheme) x |
||||
markCmdAsKnown ttk::style ttk::themes ttk::setTheme |
||||
} |
||||
foreach class $classCmds { |
||||
destroy .w |
||||
if {[catch {$class .w}]} continue |
||||
markCmdAsKnown $class |
||||
set syntax($class) "x p*" |
||||
set return($class) _obj,$class |
||||
set option($class) {} |
||||
foreach opt [.w configure] { |
||||
set opt [lindex $opt 0] |
||||
lappend option($class) $opt |
||||
if {[string match *variable $opt]} { |
||||
set option($class\ $opt) n |
||||
set option(_obj,$class\ configure\ $opt) n |
||||
} |
||||
} |
||||
set syntax(_obj,$class) "s x*" |
||||
set subCmd(_obj,$class) [getSubCmds .w gurkmeja] |
||||
set syntax(_obj,$class\ configure) "o. x. p*" |
||||
set option(_obj,$class\ configure) $option($class) |
||||
set syntax(_obj,$class\ cget) "o" |
||||
set option(_obj,$class\ cget) $option($class) |
||||
switch $class { |
||||
listbox { |
||||
set syntax(_obj,$class\ selection) "s x x?" |
||||
set subCmd(_obj,$class\ selection) \ |
||||
[getSubCmds .w selection gurkmeja 0] |
||||
} |
||||
} |
||||
} |
||||
set option(.\ configure) $option(toplevel) |
||||
set option(.\ cget) $option(toplevel) |
||||
} |
||||
|
||||
# Build a database of options and subcommands |
||||
|
||||
# subCmd(cmd) contains a list of all allowed subcommands |
||||
|
||||
# Get subcommands for commands that can't use the standard loop below |
||||
set subCmd(wm) [getSubCmds wm gurkmeja .] |
||||
|
||||
# Get subcommands for any commands defining "s" |
||||
foreach cmd [array names syntax] { |
||||
if {[info exists subCmd($cmd)]} continue |
||||
set syn $syntax($cmd) |
||||
set oi [lsearch -glob $syn "s*"] |
||||
if {$oi >= 0} { |
||||
set syn [lreplace $syn $oi $oi gurkmeja] |
||||
# If the subcmd is after a :, handle it |
||||
set ci [lsearch -exact $syn ":"] |
||||
if {$ci >= 0 && $ci < $oi} { |
||||
set syn [lrange $syn [expr {$ci + 1}] end] |
||||
} |
||||
set opts [eval getSubCmds $cmd $syn] |
||||
if {[llength $opts] > 0} { |
||||
set subCmd($cmd) $opts |
||||
#puts "AutoSub: $cmd $subCmd($cmd)" |
||||
} else { |
||||
#puts "Failed AutoSub: $cmd $syn" |
||||
} |
||||
} |
||||
} |
||||
|
||||
# option(cmd) contains a list of all allowed options |
||||
# option(cmd subcmd) defines options for subcommands |
||||
|
||||
# Get options for commands that can't use the standard loop below. |
||||
set option(switch) [getSubCmds switch -gurkmeja x x] |
||||
set option(fconfigure) [getSubCmds fconfigure stdin -gurkmeja] |
||||
set option(fcopy) [getSubCmds fcopy stdin stdout -gurkmeja x] |
||||
set option(unset) [list -nocomplain --] |
||||
set option(clock\ format) [getSubCmds clock format 1 -gurkmeja x] |
||||
|
||||
# Add additonal fconfigure, known for serial channels |
||||
lappend option(fconfigure) -mode -handshake -queue -timeout -ttycontrol -ttystatus -xchar -pollinterval -sysbuffer -lasterror |
||||
# For socket channels |
||||
lappend option(fconfigure) -error -peername -sockname |
||||
set option(fconfigure) [lsort -uniq -dictionary $option(fconfigure)] |
||||
|
||||
# Get options for any commands defining "o" or "p" |
||||
foreach cmd [array names syntax] { |
||||
if {[info exists option($cmd)]} continue |
||||
set syn $syntax($cmd) |
||||
if {[set i [lsearch -exact $syn ":"]] >= 0} { |
||||
# Handle a syn like "1: x : o? x x?" |
||||
# Just do the it the simple way of ignoring all but the last |
||||
set syn [lrange $syn [expr {$i + 1}] end] |
||||
} |
||||
set oi [lsearch -glob $syn "o*"] |
||||
if {$oi >= 0} { |
||||
set syn [lreplace $syn $oi $oi -gurkmeja] |
||||
} |
||||
set pi [lsearch -glob $syn "p*"] |
||||
if {$pi >= 0} { |
||||
set syn [lreplace $syn $pi $pi -gurkmeja apa] |
||||
} |
||||
if {$oi >= 0 || $pi >= 0} { |
||||
set opts [eval getSubCmds $cmd $syn] |
||||
if {[llength $opts] > 0} { |
||||
set option($cmd) $opts |
||||
#puts "Autoopt: $cmd $option($cmd)" |
||||
} else { |
||||
#puts "Failed Autoopt: $cmd" |
||||
} |
||||
} |
||||
} |
||||
|
||||
# A fix since puts still gives an unhelpful error |
||||
if {![info exists option(puts)] || [lsearch $option(puts) "-nonewline"] < 0} { |
||||
set option(puts) [list -nonewline] |
||||
# Also chan puts if present |
||||
if {[info exists syntax(chan\ puts)]} { |
||||
set option(chan\ puts) [list -nonewline] |
||||
} |
||||
} |
||||
|
||||
# The default for options is not to take a value unless 'p' is |
||||
# used in the syntax definition. |
||||
# If option(cmd opt) is set, the option is followed by a value. |
||||
# The value of option(cmd opt) may also be any of the syntax chars |
||||
# c/n/v/l and will be used to check the option. |
||||
set option(lsort\ -index) 1 |
||||
set option(lsort\ -command) 1 |
||||
set option(lsearch\ -index) 1 |
||||
set option(lsearch\ -start) 1 |
||||
set option(string\ is\ -failindex) n |
||||
set option(string\ compare\ -length) 1 |
||||
set option(string\ equal\ -length) 1 |
||||
set option(regexp\ -start) 1 |
||||
set option(regsub\ -start) 1 |
||||
set option(glob\ -directory) 1 |
||||
set option(glob\ -path) 1 |
||||
set option(glob\ -types) 1 |
||||
set option(send\ -displayof) 1 |
||||
|
||||
# Clean up unused options |
||||
foreach item [array names option] { |
||||
if {[string match "-*" [lindex $item end]]} { |
||||
set opt [lindex $item end] |
||||
set cmd [lrange $item 0 end-1] |
||||
if {[lsearch -exact $option($cmd) $opt] < 0} { |
||||
#puts "Deleting option($item)" |
||||
unset option($item) |
||||
} |
||||
} |
||||
} |
||||
|
||||
# Build syntax info for procs |
||||
foreach apa $::kC { |
||||
if {![info exists syntax($apa)]} { |
||||
# Is it a proc? |
||||
if {[info procs $apa] != ""} { |
||||
set syntax($apa) [createSyntax $apa] |
||||
} elseif {![info exists special($apa)]} { |
||||
# Debug helper |
||||
#puts "No syntax defined for cmd '$apa'" |
||||
} |
||||
} |
||||
} |
||||
|
||||
# Output the data |
||||
puts $ch [list lappend ::dbInfo $dbstring] |
||||
puts $ch [list set ::dbTclVersion $::tcl_version] |
||||
puts $ch [list set ::knownGlobals $::kG] |
||||
puts $ch [list set ::knownCommands [lsort $::kC]] |
||||
|
||||
foreach a {syntax return subCmd option} { |
||||
foreach i [lsort [array names $a]] { |
||||
set v [set ${a}($i)] |
||||
if {[llength $v] != 0} { |
||||
set first [lindex [split $i] 0] |
||||
if {![string match _* $first] && \ |
||||
![string match *::* $first] && \ |
||||
[lsearch $::kC $first] == -1} { |
||||
puts stderr "Skipping ${a}($i) since $i is not known." |
||||
} else { |
||||
puts $ch [list set ::${a}($i) $v] |
||||
} |
||||
} |
||||
} |
||||
puts $ch "" |
||||
} |
||||
} |
||||
|
||||
# Build a syntax database and write it to a file |
||||
proc buildFile {filename} { |
||||
set ch [open $filename w] |
||||
buildDb $ch |
||||
close $ch |
||||
} |
||||
|
||||
# This file can be sourced into an interactive interpreter. |
||||
# source syntaxbuild.tcl |
||||
# buildFile <filename> |
||||
|
||||
if {[info exists tcl_interactive] && !$tcl_interactive} { |
||||
if {$argc == 0 && $tcl_platform(platform) == "windows"} { |
||||
set argc 1 |
||||
set argv [list syntaxdb.tcl] |
||||
} |
||||
if {$argc == 0} { |
||||
buildDb stdout |
||||
} else { |
||||
buildFile [lindex $argv 0] |
||||
} |
||||
exit |
||||
} |
@ -1,934 +0,0 @@
@@ -1,934 +0,0 @@
|
||||
# Automatically generated syntax database. |
||||
|
||||
lappend ::dbInfo {Tcl 8.5.9 unix, Tk 8.5.9 x11} |
||||
set ::dbTclVersion 8.5 |
||||
set ::knownGlobals {argc argv argv0 auto_index auto_path env errorCode errorInfo tcl_interactive tcl_library tcl_nonwordchars tcl_patchLevel tcl_pkgPath tcl_platform tcl_rcFileName tcl_version tcl_wordchars tk_library tk_patchLevel tk_strictMotif tk_version} |
||||
set ::knownCommands {. EvalAttached after append apply array auto_execok auto_import auto_load auto_load_index auto_mkindex auto_mkindex_old auto_qualify auto_reset bell bgerror binary bind bindtags break button canvas case catch cd chan checkbutton clipboard clock close concat continue destroy dict encoding entry eof error eval event exec exit expr fblocked fconfigure fcopy file fileevent flush focus font for foreach format frame gets glob global grab grid history if image incr info interp join label labelframe lappend lassign lindex linsert list listbox llength load lower lrange lrepeat lreplace lreverse lsearch lset lsort menu menubutton message msgcat::mc msgcat::mcload msgcat::mclocale msgcat::mcmax msgcat::mcmset msgcat::mcpreferences msgcat::mcset msgcat::mcunknown namespace open option pack package panedwindow parray pid pkg_mkIndex place proc puts pwd radiobutton raise read regexp regsub rename return scale scan scrollbar seek selection send set socket source spinbox split string subst switch tcl::pkgconfig tclListValidFlags tclLog tclParseConfigSpec tclPkgSetup tclPkgUnknown tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tell text thread_load thread_source time tk tk::button tk::canvas tk::checkbutton tk::entry tk::frame tk::label tk::labelframe tk::listbox tk::menubutton tk::message tk::panedwindow tk::radiobutton tk::scale tk::scrollbar tk::spinbox tk::text tk::toplevel tk_bindForTraversal tk_bisque tk_chooseColor tk_chooseDirectory tk_dialog tk_focusFollowsMouse tk_focusNext tk_focusPrev tk_getFileType tk_getOpenFile tk_getSaveFile tk_menuBar tk_menuSetFocus tk_messageBox tk_optionMenu tk_popup tk_setPalette tk_textCopy tk_textCut tk_textPaste tkwait toplevel trace ttk::button ttk::checkbutton ttk::combobox ttk::entry ttk::frame ttk::label ttk::labelframe ttk::menubutton ttk::notebook ttk::panedwindow ttk::progressbar ttk::radiobutton ttk::scale ttk::scrollbar ttk::separator ttk::setTheme ttk::sizegrip ttk::style ttk::themes ttk::treeview unknown unload unset update uplevel upvar variable vwait while winfo wm} |
||||
set ::syntax(.) {s x*} |
||||
set {::syntax(. cget)} o |
||||
set {::syntax(. configure)} {o. x. p*} |
||||
set ::syntax(_obj,button) {s x*} |
||||
set {::syntax(_obj,button cget)} o |
||||
set {::syntax(_obj,button configure)} {o. x. p*} |
||||
set ::syntax(_obj,canvas) {s x*} |
||||
set {::syntax(_obj,canvas cget)} o |
||||
set {::syntax(_obj,canvas configure)} {o. x. p*} |
||||
set ::syntax(_obj,checkbutton) {s x*} |
||||
set {::syntax(_obj,checkbutton cget)} o |
||||
set {::syntax(_obj,checkbutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,entry) {s x*} |
||||
set {::syntax(_obj,entry cget)} o |
||||
set {::syntax(_obj,entry configure)} {o. x. p*} |
||||
set ::syntax(_obj,frame) {s x*} |
||||
set {::syntax(_obj,frame cget)} o |
||||
set {::syntax(_obj,frame configure)} {o. x. p*} |
||||
set ::syntax(_obj,label) {s x*} |
||||
set {::syntax(_obj,label cget)} o |
||||
set {::syntax(_obj,label configure)} {o. x. p*} |
||||
set ::syntax(_obj,labelframe) {s x*} |
||||
set {::syntax(_obj,labelframe cget)} o |
||||
set {::syntax(_obj,labelframe configure)} {o. x. p*} |
||||
set ::syntax(_obj,listbox) {s x*} |
||||
set {::syntax(_obj,listbox cget)} o |
||||
set {::syntax(_obj,listbox configure)} {o. x. p*} |
||||
set {::syntax(_obj,listbox selection)} {s x x?} |
||||
set ::syntax(_obj,menu) {s x*} |
||||
set {::syntax(_obj,menu cget)} o |
||||
set {::syntax(_obj,menu configure)} {o. x. p*} |
||||
set ::syntax(_obj,menubutton) {s x*} |
||||
set {::syntax(_obj,menubutton cget)} o |
||||
set {::syntax(_obj,menubutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,message) {s x*} |
||||
set {::syntax(_obj,message cget)} o |
||||
set {::syntax(_obj,message configure)} {o. x. p*} |
||||
set ::syntax(_obj,panedwindow) {s x*} |
||||
set {::syntax(_obj,panedwindow cget)} o |
||||
set {::syntax(_obj,panedwindow configure)} {o. x. p*} |
||||
set ::syntax(_obj,radiobutton) {s x*} |
||||
set {::syntax(_obj,radiobutton cget)} o |
||||
set {::syntax(_obj,radiobutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,scale) {s x*} |
||||
set {::syntax(_obj,scale cget)} o |
||||
set {::syntax(_obj,scale configure)} {o. x. p*} |
||||
set ::syntax(_obj,scrollbar) {s x*} |
||||
set {::syntax(_obj,scrollbar cget)} o |
||||
set {::syntax(_obj,scrollbar configure)} {o. x. p*} |
||||
set ::syntax(_obj,spinbox) {s x*} |
||||
set {::syntax(_obj,spinbox cget)} o |
||||
set {::syntax(_obj,spinbox configure)} {o. x. p*} |
||||
set ::syntax(_obj,text) {s x*} |
||||
set {::syntax(_obj,text cget)} o |
||||
set {::syntax(_obj,text configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::button) {s x*} |
||||
set {::syntax(_obj,tk::button cget)} o |
||||
set {::syntax(_obj,tk::button configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::canvas) {s x*} |
||||
set {::syntax(_obj,tk::canvas cget)} o |
||||
set {::syntax(_obj,tk::canvas configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::checkbutton) {s x*} |
||||
set {::syntax(_obj,tk::checkbutton cget)} o |
||||
set {::syntax(_obj,tk::checkbutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::entry) {s x*} |
||||
set {::syntax(_obj,tk::entry cget)} o |
||||
set {::syntax(_obj,tk::entry configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::frame) {s x*} |
||||
set {::syntax(_obj,tk::frame cget)} o |
||||
set {::syntax(_obj,tk::frame configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::label) {s x*} |
||||
set {::syntax(_obj,tk::label cget)} o |
||||
set {::syntax(_obj,tk::label configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::labelframe) {s x*} |
||||
set {::syntax(_obj,tk::labelframe cget)} o |
||||
set {::syntax(_obj,tk::labelframe configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::listbox) {s x*} |
||||
set {::syntax(_obj,tk::listbox cget)} o |
||||
set {::syntax(_obj,tk::listbox configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::menubutton) {s x*} |
||||
set {::syntax(_obj,tk::menubutton cget)} o |
||||
set {::syntax(_obj,tk::menubutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::message) {s x*} |
||||
set {::syntax(_obj,tk::message cget)} o |
||||
set {::syntax(_obj,tk::message configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::panedwindow) {s x*} |
||||
set {::syntax(_obj,tk::panedwindow cget)} o |
||||
set {::syntax(_obj,tk::panedwindow configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::radiobutton) {s x*} |
||||
set {::syntax(_obj,tk::radiobutton cget)} o |
||||
set {::syntax(_obj,tk::radiobutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::scale) {s x*} |
||||
set {::syntax(_obj,tk::scale cget)} o |
||||
set {::syntax(_obj,tk::scale configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::scrollbar) {s x*} |
||||
set {::syntax(_obj,tk::scrollbar cget)} o |
||||
set {::syntax(_obj,tk::scrollbar configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::spinbox) {s x*} |
||||
set {::syntax(_obj,tk::spinbox cget)} o |
||||
set {::syntax(_obj,tk::spinbox configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::text) {s x*} |
||||
set {::syntax(_obj,tk::text cget)} o |
||||
set {::syntax(_obj,tk::text configure)} {o. x. p*} |
||||
set ::syntax(_obj,tk::toplevel) {s x*} |
||||
set {::syntax(_obj,tk::toplevel cget)} o |
||||
set {::syntax(_obj,tk::toplevel configure)} {o. x. p*} |
||||
set ::syntax(_obj,toplevel) {s x*} |
||||
set {::syntax(_obj,toplevel cget)} o |
||||
set {::syntax(_obj,toplevel configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::button) {s x*} |
||||
set {::syntax(_obj,ttk::button cget)} o |
||||
set {::syntax(_obj,ttk::button configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::checkbutton) {s x*} |
||||
set {::syntax(_obj,ttk::checkbutton cget)} o |
||||
set {::syntax(_obj,ttk::checkbutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::combobox) {s x*} |
||||
set {::syntax(_obj,ttk::combobox cget)} o |
||||
set {::syntax(_obj,ttk::combobox configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::entry) {s x*} |
||||
set {::syntax(_obj,ttk::entry cget)} o |
||||
set {::syntax(_obj,ttk::entry configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::frame) {s x*} |
||||
set {::syntax(_obj,ttk::frame cget)} o |
||||
set {::syntax(_obj,ttk::frame configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::label) {s x*} |
||||
set {::syntax(_obj,ttk::label cget)} o |
||||
set {::syntax(_obj,ttk::label configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::labelframe) {s x*} |
||||
set {::syntax(_obj,ttk::labelframe cget)} o |
||||
set {::syntax(_obj,ttk::labelframe configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::menubutton) {s x*} |
||||
set {::syntax(_obj,ttk::menubutton cget)} o |
||||
set {::syntax(_obj,ttk::menubutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::notebook) {s x*} |
||||
set {::syntax(_obj,ttk::notebook cget)} o |
||||
set {::syntax(_obj,ttk::notebook configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::panedwindow) {s x*} |
||||
set {::syntax(_obj,ttk::panedwindow cget)} o |
||||
set {::syntax(_obj,ttk::panedwindow configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::progressbar) {s x*} |
||||
set {::syntax(_obj,ttk::progressbar cget)} o |
||||
set {::syntax(_obj,ttk::progressbar configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::radiobutton) {s x*} |
||||
set {::syntax(_obj,ttk::radiobutton cget)} o |
||||
set {::syntax(_obj,ttk::radiobutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::scale) {s x*} |
||||
set {::syntax(_obj,ttk::scale cget)} o |
||||
set {::syntax(_obj,ttk::scale configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::scrollbar) {s x*} |
||||
set {::syntax(_obj,ttk::scrollbar cget)} o |
||||
set {::syntax(_obj,ttk::scrollbar configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::separator) {s x*} |
||||
set {::syntax(_obj,ttk::separator cget)} o |
||||
set {::syntax(_obj,ttk::separator configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::sizegrip) {s x*} |
||||
set {::syntax(_obj,ttk::sizegrip cget)} o |
||||
set {::syntax(_obj,ttk::sizegrip configure)} {o. x. p*} |
||||
set ::syntax(_obj,ttk::treeview) {s x*} |
||||
set {::syntax(_obj,ttk::treeview cget)} o |
||||
set {::syntax(_obj,ttk::treeview configure)} {o. x. p*} |
||||
set ::syntax(after) {r 1} |
||||
set ::syntax(append) {n x*} |
||||
set ::syntax(apply) {x x*} |
||||
set ::syntax(array) {s v x?} |
||||
set {::syntax(array exists)} l |
||||
set {::syntax(array names)} {v x? x?} |
||||
set {::syntax(array set)} {n x} |
||||
set {::syntax(array size)} v |
||||
set {::syntax(array statistics)} v |
||||
set {::syntax(array unset)} {l x?} |
||||
set ::syntax(auto_execok) 1 |
||||
set ::syntax(auto_import) 1 |
||||
set ::syntax(auto_load) {r 1 2} |
||||
set ::syntax(auto_load_index) 0 |
||||
set ::syntax(auto_mkindex) {r 1} |
||||
set ::syntax(auto_mkindex_old) {r 1} |
||||
set ::syntax(auto_qualify) 2 |
||||
set ::syntax(auto_reset) 0 |
||||
set ::syntax(bell) {o* x*} |
||||
set ::syntax(bgerror) 1 |
||||
set ::syntax(binary) {s x*} |
||||
set {::syntax(binary scan)} {x x n n*} |
||||
set ::syntax(bind) {x x? cg?} |
||||
set ::syntax(bindtags) {x x?} |
||||
set ::syntax(break) 0 |
||||
set ::syntax(button) {x p*} |
||||
set ::syntax(canvas) {x p*} |
||||
set ::syntax(case) x* |
||||
set ::syntax(catch) {c n?} |
||||
set ::syntax(cd) {r 0 1} |
||||
set ::syntax(chan) {s x*} |
||||
set {::syntax(chan blocked)} x |
||||
set {::syntax(chan close)} x |
||||
set {::syntax(chan configure)} {x o. x. p*} |
||||
set {::syntax(chan copy)} {x x p*} |
||||
set {::syntax(chan create)} {x x} |
||||
set {::syntax(chan eof)} x |
||||
set {::syntax(chan event)} {x x cg?} |
||||
set {::syntax(chan flush)} x |
||||
set {::syntax(chan gets)} {x n?} |
||||
set {::syntax(chan names)} x? |
||||
set {::syntax(chan pending)} {x x} |
||||
set {::syntax(chan postevent)} {x x} |
||||
set {::syntax(chan puts)} {1: x : o? x x?} |
||||
set {::syntax(chan read)} {x x?} |
||||
set {::syntax(chan seek)} {r 2 3} |
||||
set {::syntax(chan tell)} 1 |
||||
set {::syntax(chan truncate)} {x x?} |
||||
set ::syntax(checkbutton) {x p*} |
||||
set ::syntax(clipboard) {s x*} |
||||
set ::syntax(clock) {s x*} |
||||
set {::syntax(clock clicks)} o? |
||||
set {::syntax(clock format)} {x p*} |
||||
set {::syntax(clock scan)} {x p*} |
||||
set {::syntax(clock seconds)} 0 |
||||
set ::syntax(close) 1 |
||||
set ::syntax(concat) {r 0} |
||||
set ::syntax(continue) 0 |
||||
set ::syntax(destroy) x* |
||||
set ::syntax(dict) {s x*} |
||||
set {::syntax(dict append)} {n x x*} |
||||
set {::syntax(dict filter)} {x x x} |
||||
set {::syntax(dict for)} {x x c} |
||||
set {::syntax(dict incr)} {n x x*} |
||||
set {::syntax(dict lappend)} {n x x*} |
||||
set {::syntax(dict set)} {n x x*} |
||||
set {::syntax(dict unset)} {n x x*} |
||||
set {::syntax(dict update)} {n x x x* c} |
||||
set {::syntax(dict with)} {n x* c} |
||||
set ::syntax(encoding) {s x*} |
||||
set {::syntax(encoding convertfrom)} {r 1 2} |
||||
set {::syntax(encoding convertto)} {r 1 2} |
||||
set {::syntax(encoding names)} 0 |
||||
set {::syntax(encoding system)} {r 0 1} |
||||
set ::syntax(entry) {x p*} |
||||
set ::syntax(eof) 1 |
||||
set ::syntax(error) {r 1 3} |
||||
set ::syntax(event) {s x*} |
||||
set ::syntax(exec) {o* x x*} |
||||
set ::syntax(exit) {r 0 1} |
||||
set ::syntax(fblocked) 1 |
||||
set ::syntax(fconfigure) {x o. x. p*} |
||||
set ::syntax(fcopy) {x x p*} |
||||
set ::syntax(file) {s x*} |
||||
set {::syntax(file atime)} {x x?} |
||||
set {::syntax(file attributes)} {x o. x. p*} |
||||
set {::syntax(file channels)} x? |
||||
set {::syntax(file copy)} {o* x x x*} |
||||
set {::syntax(file delete)} {o* x x*} |
||||
set {::syntax(file dirname)} x |
||||
set {::syntax(file executable)} x |
||||
set {::syntax(file exists)} x |
||||
set {::syntax(file extension)} x |
||||
set {::syntax(file isdirectory)} x |
||||
set {::syntax(file isfile)} x |
||||
set {::syntax(file join)} {x x*} |
||||
set {::syntax(file link)} {o? x x?} |
||||
set {::syntax(file lstat)} {x n} |
||||
set {::syntax(file mkdir)} {x x*} |
||||
set {::syntax(file mtime)} {x x?} |
||||
set {::syntax(file nativename)} x |
||||
set {::syntax(file normalize)} x |
||||
set {::syntax(file owned)} x |
||||
set {::syntax(file pathtype)} x |
||||
set {::syntax(file readable)} x |
||||
set {::syntax(file readlink)} x |
||||
set {::syntax(file rename)} {o* x x x*} |
||||
set {::syntax(file rootname)} x |
||||
set {::syntax(file separator)} x? |
||||
set {::syntax(file size)} x |
||||
set {::syntax(file split)} x |
||||
set {::syntax(file stat)} {x n} |
||||
set {::syntax(file system)} x |
||||
set {::syntax(file tail)} x |
||||
set {::syntax(file type)} x |
||||
set {::syntax(file volumes)} 0 |
||||
set {::syntax(file writable)} x |
||||
set ::syntax(fileevent) {x x x?} |
||||
set ::syntax(flush) 1 |
||||
set ::syntax(focus) {o? x?} |
||||
set ::syntax(font) {s x*} |
||||
set ::syntax(for) {c E c c} |
||||
set ::syntax(format) {r 1} |
||||
set ::syntax(frame) {x p*} |
||||
set ::syntax(gets) {x n?} |
||||
set ::syntax(glob) {o* x x*} |
||||
set ::syntax(grab) {x x*} |
||||
set ::syntax(grid) {x x*} |
||||
set ::syntax(history) {s x*} |
||||
set ::syntax(if) {e c} |
||||
set ::syntax(image) {s x*} |
||||
set ::syntax(incr) {n x?} |
||||
set ::syntax(info) {s x*} |
||||
set {::syntax(info default)} {x x n} |
||||
set {::syntax(info exists)} l |
||||
set ::syntax(interp) {s x*} |
||||
set {::syntax(interp invokehidden)} {x o* x x*} |
||||
set ::syntax(join) {r 1 2} |
||||
set ::syntax(label) {x p*} |
||||
set ::syntax(labelframe) {x p*} |
||||
set ::syntax(lappend) {n x*} |
||||
set ::syntax(lassign) {x n n*} |
||||
set ::syntax(lindex) {r 2} |
||||
set ::syntax(linsert) {r 3} |
||||
set ::syntax(list) {r 0} |
||||
set ::syntax(listbox) {x p*} |
||||
set ::syntax(llength) 1 |
||||
set ::syntax(load) {r 1 3} |
||||
set ::syntax(lower) {x x?} |
||||
set ::syntax(lrange) 3 |
||||
set ::syntax(lrepeat) {r 2} |
||||
set ::syntax(lreplace) {r 3} |
||||
set ::syntax(lreverse) 1 |
||||
set ::syntax(lsearch) {o* x x} |
||||
set ::syntax(lset) {n x x x*} |
||||
set ::syntax(lsort) {o* x} |
||||
set ::syntax(menu) {x p*} |
||||
set ::syntax(menubutton) {x p*} |
||||
set ::syntax(message) {x p*} |
||||
set ::syntax(msgcat::mc) {r 1} |
||||
set ::syntax(msgcat::mcload) 1 |
||||
set ::syntax(msgcat::mclocale) {r 0} |
||||
set ::syntax(msgcat::mcmax) {r 0} |
||||
set ::syntax(msgcat::mcmset) 2 |
||||
set ::syntax(msgcat::mcpreferences) 0 |
||||
set ::syntax(msgcat::mcset) {r 2 3} |
||||
set ::syntax(msgcat::mcunknown) {r 2} |
||||
set ::syntax(namespace) {s x*} |
||||
set {::syntax(namespace import)} {o* x*} |
||||
set {::syntax(namespace which)} {o* x?} |
||||
set ::syntax(open) {r 1 3} |
||||
set ::syntax(option) {s x*} |
||||
set ::syntax(pack) {x x*} |
||||
set ::syntax(package) {s x*} |
||||
set ::syntax(panedwindow) {x p*} |
||||
set ::syntax(parray) {v x?} |
||||
set ::syntax(pid) {r 0 1} |
||||
set ::syntax(pkg_mkIndex) {r 0} |
||||
set ::syntax(place) {x x*} |
||||
set ::syntax(proc) dp |
||||
set ::syntax(puts) {1: x : o? x x?} |
||||
set ::syntax(pwd) 0 |
||||
set ::syntax(radiobutton) {x p*} |
||||
set ::syntax(raise) {x x?} |
||||
set ::syntax(read) {r 1 2} |
||||
set ::syntax(regexp) {o* x x n*} |
||||
set ::syntax(regsub) {o* x x x n?} |
||||
set ::syntax(rename) 2 |
||||
set ::syntax(return) {p* x?} |
||||
set ::syntax(scale) {x p*} |
||||
set ::syntax(scan) {x x n*} |
||||
set ::syntax(scrollbar) {x p*} |
||||
set ::syntax(seek) {r 2 3} |
||||
set ::syntax(selection) {s x*} |
||||
set ::syntax(send) {o* x x x*} |
||||
set ::syntax(set) {1: v : n x} |
||||
set ::syntax(socket) {r 2} |
||||
set ::syntax(source) {p* x} |
||||
set ::syntax(spinbox) {x p*} |
||||
set ::syntax(split) {r 1 2} |
||||
set ::syntax(string) {s x x*} |
||||
set {::syntax(string bytelength)} 1 |
||||
set {::syntax(string compare)} {o* x x} |
||||
set {::syntax(string equal)} {o* x x} |
||||
set {::syntax(string first)} {r 2 3} |
||||
set {::syntax(string index)} 2 |
||||
set {::syntax(string is)} {s o* x} |
||||
set {::syntax(string last)} {r 2 3} |
||||
set {::syntax(string length)} 1 |
||||
set {::syntax(string map)} {o? x x} |
||||
set {::syntax(string match)} {o? x x} |
||||
set {::syntax(string range)} 3 |
||||
set {::syntax(string repeat)} 2 |
||||
set {::syntax(string replace)} {r 3 4} |
||||
set {::syntax(string reverse)} 1 |
||||
set {::syntax(string tolower)} {r 1 3} |
||||
set {::syntax(string totitle)} {r 1 3} |
||||
set {::syntax(string toupper)} {r 1 3} |
||||
set {::syntax(string trim)} {r 1 2} |
||||
set {::syntax(string trimleft)} {r 1 2} |
||||
set {::syntax(string trimright)} {r 1 2} |
||||
set {::syntax(string wordend)} 2 |
||||
set {::syntax(string wordstart)} 2 |
||||
set ::syntax(subst) {o* x} |
||||
set ::syntax(tclListValidFlags) 1 |
||||
set ::syntax(tclLog) 1 |
||||
set ::syntax(tclParseConfigSpec) 4 |
||||
set ::syntax(tclPkgSetup) 4 |
||||
set ::syntax(tclPkgUnknown) {r 1} |
||||
set ::syntax(tcl_endOfWord) 2 |
||||
set ::syntax(tcl_findLibrary) 6 |
||||
set ::syntax(tcl_startOfNextWord) 2 |
||||
set ::syntax(tcl_startOfPreviousWord) 2 |
||||
set ::syntax(tcl_wordBreakAfter) 2 |
||||
set ::syntax(tcl_wordBreakBefore) 2 |
||||
set ::syntax(tell) 1 |
||||
set ::syntax(text) {x p*} |
||||
set ::syntax(thread_load) 1 |
||||
set ::syntax(thread_source) 1 |
||||
set ::syntax(time) {c x?} |
||||
set ::syntax(tk) {s x*} |
||||
set ::syntax(tk::button) {x p*} |
||||
set ::syntax(tk::canvas) {x p*} |
||||
set ::syntax(tk::checkbutton) {x p*} |
||||
set ::syntax(tk::entry) {x p*} |
||||
set ::syntax(tk::frame) {x p*} |
||||
set ::syntax(tk::label) {x p*} |
||||
set ::syntax(tk::labelframe) {x p*} |
||||
set ::syntax(tk::listbox) {x p*} |
||||
set ::syntax(tk::menubutton) {x p*} |
||||
set ::syntax(tk::message) {x p*} |
||||
set ::syntax(tk::panedwindow) {x p*} |
||||
set ::syntax(tk::radiobutton) {x p*} |
||||
set ::syntax(tk::scale) {x p*} |
||||
set ::syntax(tk::scrollbar) {x p*} |
||||
set ::syntax(tk::spinbox) {x p*} |
||||
set ::syntax(tk::text) {x p*} |
||||
set ::syntax(tk::toplevel) {x p*} |
||||
set ::syntax(tk_bindForTraversal) {r 0} |
||||
set ::syntax(tk_bisque) 0 |
||||
set ::syntax(tk_chooseColor) p* |
||||
set ::syntax(tk_chooseDirectory) p* |
||||
set ::syntax(tk_dialog) {r 5} |
||||
set ::syntax(tk_focusFollowsMouse) 0 |
||||
set ::syntax(tk_focusNext) 1 |
||||
set ::syntax(tk_focusPrev) 1 |
||||
set ::syntax(tk_getFileType) 0 |
||||
set ::syntax(tk_getOpenFile) p* |
||||
set ::syntax(tk_getSaveFile) p* |
||||
set ::syntax(tk_menuBar) {r 0} |
||||
set ::syntax(tk_menuSetFocus) 1 |
||||
set ::syntax(tk_messageBox) p* |
||||
set ::syntax(tk_optionMenu) {r 3} |
||||
set ::syntax(tk_popup) {r 3 4} |
||||
set ::syntax(tk_setPalette) {r 0} |
||||
set ::syntax(tk_textCopy) 1 |
||||
set ::syntax(tk_textCut) 1 |
||||
set ::syntax(tk_textPaste) 1 |
||||
set ::syntax(tkwait) {s x} |
||||
set {::syntax(tkwait variable)} l |
||||
set ::syntax(toplevel) {x p*} |
||||
set ::syntax(trace) {s x x*} |
||||
set {::syntax(trace add)} {s x x x} |
||||
set {::syntax(trace add command)} {x x c3} |
||||
set {::syntax(trace add execution)} {x x c2} |
||||
set {::syntax(trace add variable)} {v x c3} |
||||
set {::syntax(trace info)} {s x x x} |
||||
set {::syntax(trace info command)} x |
||||
set {::syntax(trace info execution)} x |
||||
set {::syntax(trace info variable)} v |
||||
set {::syntax(trace remove)} {s x x x} |
||||
set {::syntax(trace remove command)} {x x x} |
||||
set {::syntax(trace remove execution)} {x x x} |
||||
set {::syntax(trace remove variable)} {v x x} |
||||
set {::syntax(trace variable)} {n x x} |
||||
set {::syntax(trace vdelete)} {v x x} |
||||
set {::syntax(trace vinfo)} l |
||||
set ::syntax(ttk::button) {x p*} |
||||
set ::syntax(ttk::checkbutton) {x p*} |
||||
set ::syntax(ttk::combobox) {x p*} |
||||
set ::syntax(ttk::entry) {x p*} |
||||
set ::syntax(ttk::frame) {x p*} |
||||
set ::syntax(ttk::label) {x p*} |
||||
set ::syntax(ttk::labelframe) {x p*} |
||||
set ::syntax(ttk::menubutton) {x p*} |
||||
set ::syntax(ttk::notebook) {x p*} |
||||
set ::syntax(ttk::panedwindow) {x p*} |
||||
set ::syntax(ttk::progressbar) {x p*} |
||||
set ::syntax(ttk::radiobutton) {x p*} |
||||
set ::syntax(ttk::scale) {x p*} |
||||
set ::syntax(ttk::scrollbar) {x p*} |
||||
set ::syntax(ttk::separator) {x p*} |
||||
set ::syntax(ttk::setTheme) x |
||||
set ::syntax(ttk::sizegrip) {x p*} |
||||
set ::syntax(ttk::style) {s x*} |
||||
set {::syntax(ttk::style configure)} {x o. x. p*} |
||||
set {::syntax(ttk::style element)} {s x*} |
||||
set {::syntax(ttk::style element create)} {x x x*} |
||||
set {::syntax(ttk::style element names)} 0 |
||||
set {::syntax(ttk::style element options)} x |
||||
set {::syntax(ttk::style layout)} {x x?} |
||||
set {::syntax(ttk::style lookup)} {r 2 4} |
||||
set {::syntax(ttk::style map)} {x p*} |
||||
set {::syntax(ttk::style theme)} {s x*} |
||||
set {::syntax(ttk::style theme create)} {x p*} |
||||
set {::syntax(ttk::style theme names)} 0 |
||||
set {::syntax(ttk::style theme settings)} 2 |
||||
set {::syntax(ttk::style theme use)} x |
||||
set ::syntax(ttk::themes) x? |
||||
set ::syntax(ttk::treeview) {x p*} |
||||
set ::syntax(unknown) {r 0} |
||||
set ::syntax(unload) {o* x x*} |
||||
set ::syntax(unset) {o* l l*} |
||||
set ::syntax(update) s. |
||||
set ::syntax(vwait) n |
||||
set ::syntax(while) {E c} |
||||
set ::syntax(winfo) {s x x*} |
||||
set ::syntax(wm) {s x x*} |
||||
|
||||
set ::return(button) _obj,button |
||||
set ::return(canvas) _obj,canvas |
||||
set ::return(checkbutton) _obj,checkbutton |
||||
set ::return(entry) _obj,entry |
||||
set ::return(frame) _obj,frame |
||||
set ::return(label) _obj,label |
||||
set ::return(labelframe) _obj,labelframe |
||||
set ::return(linsert) list |
||||
set ::return(list) list |
||||
set ::return(listbox) _obj,listbox |
||||
set ::return(llength) int |
||||
set ::return(lrange) list |
||||
set ::return(lreplace) list |
||||
set ::return(lsort) list |
||||
set ::return(menu) _obj,menu |
||||
set ::return(menubutton) _obj,menubutton |
||||
set ::return(message) _obj,message |
||||
set ::return(panedwindow) _obj,panedwindow |
||||
set ::return(radiobutton) _obj,radiobutton |
||||
set ::return(scale) _obj,scale |
||||
set ::return(scrollbar) _obj,scrollbar |
||||
set ::return(spinbox) _obj,spinbox |
||||
set ::return(text) _obj,text |
||||
set ::return(tk::button) _obj,tk::button |
||||
set ::return(tk::canvas) _obj,tk::canvas |
||||
set ::return(tk::checkbutton) _obj,tk::checkbutton |
||||
set ::return(tk::entry) _obj,tk::entry |
||||
set ::return(tk::frame) _obj,tk::frame |
||||
set ::return(tk::label) _obj,tk::label |
||||
set ::return(tk::labelframe) _obj,tk::labelframe |
||||
set ::return(tk::listbox) _obj,tk::listbox |
||||
set ::return(tk::menubutton) _obj,tk::menubutton |
||||
set ::return(tk::message) _obj,tk::message |
||||
set ::return(tk::panedwindow) _obj,tk::panedwindow |
||||
set ::return(tk::radiobutton) _obj,tk::radiobutton |
||||
set ::return(tk::scale) _obj,tk::scale |
||||
set ::return(tk::scrollbar) _obj,tk::scrollbar |
||||
set ::return(tk::spinbox) _obj,tk::spinbox |
||||
set ::return(tk::text) _obj,tk::text |
||||
set ::return(tk::toplevel) _obj,tk::toplevel |
||||
set ::return(toplevel) _obj,toplevel |
||||
set ::return(ttk::button) _obj,ttk::button |
||||
set ::return(ttk::checkbutton) _obj,ttk::checkbutton |
||||
set ::return(ttk::combobox) _obj,ttk::combobox |
||||
set ::return(ttk::entry) _obj,ttk::entry |
||||
set ::return(ttk::frame) _obj,ttk::frame |
||||
set ::return(ttk::label) _obj,ttk::label |
||||
set ::return(ttk::labelframe) _obj,ttk::labelframe |
||||
set ::return(ttk::menubutton) _obj,ttk::menubutton |
||||
set ::return(ttk::notebook) _obj,ttk::notebook |
||||
set ::return(ttk::panedwindow) _obj,ttk::panedwindow |
||||
set ::return(ttk::progressbar) _obj,ttk::progressbar |
||||
set ::return(ttk::radiobutton) _obj,ttk::radiobutton |
||||
set ::return(ttk::scale) _obj,ttk::scale |
||||
set ::return(ttk::scrollbar) _obj,ttk::scrollbar |
||||
set ::return(ttk::separator) _obj,ttk::separator |
||||
set ::return(ttk::sizegrip) _obj,ttk::sizegrip |
||||
set ::return(ttk::treeview) _obj,ttk::treeview |
||||
|
||||
set ::subCmd(.) {cget configure} |
||||
set ::subCmd(_obj,button) {cget configure flash invoke} |
||||
set ::subCmd(_obj,canvas) {addtag bbox bind canvasx canvasy cget configure coords create dchars delete dtag find focus gettags icursor index insert itemcget itemconfigure lower move postscript raise scale scan select type xview yview} |
||||
set ::subCmd(_obj,checkbutton) {cget configure deselect flash invoke select toggle} |
||||
set ::subCmd(_obj,entry) {bbox cget configure delete get icursor index insert scan selection validate xview} |
||||
set ::subCmd(_obj,frame) {cget configure} |
||||
set ::subCmd(_obj,label) {cget configure} |
||||
set ::subCmd(_obj,labelframe) {cget configure} |
||||
set ::subCmd(_obj,listbox) {activate bbox cget configure curselection delete get index insert itemcget itemconfigure nearest scan see selection size xview yview} |
||||
set {::subCmd(_obj,listbox selection)} {anchor clear includes set} |
||||
set ::subCmd(_obj,menu) {activate add cget clone configure delete entrycget entryconfigure index insert invoke post postcascade type unpost xposition yposition} |
||||
set ::subCmd(_obj,menubutton) {cget configure} |
||||
set ::subCmd(_obj,message) {cget configure} |
||||
set ::subCmd(_obj,panedwindow) {add cget configure forget identify panecget paneconfigure panes proxy sash} |
||||
set ::subCmd(_obj,radiobutton) {cget configure deselect flash invoke select} |
||||
set ::subCmd(_obj,scale) {cget configure coords get identify set} |
||||
set ::subCmd(_obj,scrollbar) {activate cget configure delta fraction get identify set} |
||||
set ::subCmd(_obj,spinbox) {bbox cget configure delete get icursor identify index insert invoke scan selection set validate xview} |
||||
set ::subCmd(_obj,text) {bbox cget compare configure count debug delete dlineinfo dump edit get image index insert mark peer replace scan search see tag window xview yview} |
||||
set ::subCmd(_obj,tk::button) {cget configure flash invoke} |
||||
set ::subCmd(_obj,tk::canvas) {addtag bbox bind canvasx canvasy cget configure coords create dchars delete dtag find focus gettags icursor index insert itemcget itemconfigure lower move postscript raise scale scan select type xview yview} |
||||
set ::subCmd(_obj,tk::checkbutton) {cget configure deselect flash invoke select toggle} |
||||
set ::subCmd(_obj,tk::entry) {bbox cget configure delete get icursor index insert scan selection validate xview} |
||||
set ::subCmd(_obj,tk::frame) {cget configure} |
||||
set ::subCmd(_obj,tk::label) {cget configure} |
||||
set ::subCmd(_obj,tk::labelframe) {cget configure} |
||||
set ::subCmd(_obj,tk::listbox) {activate bbox cget configure curselection delete get index insert itemcget itemconfigure nearest scan see selection size xview yview} |
||||
set ::subCmd(_obj,tk::menubutton) {cget configure} |
||||
set ::subCmd(_obj,tk::message) {cget configure} |
||||
set ::subCmd(_obj,tk::panedwindow) {add cget configure forget identify panecget paneconfigure panes proxy sash} |
||||
set ::subCmd(_obj,tk::radiobutton) {cget configure deselect flash invoke select} |
||||
set ::subCmd(_obj,tk::scale) {cget configure coords get identify set} |
||||
set ::subCmd(_obj,tk::scrollbar) {activate cget configure delta fraction get identify set} |
||||
set ::subCmd(_obj,tk::spinbox) {bbox cget configure delete get icursor identify index insert invoke scan selection set validate xview} |
||||
set ::subCmd(_obj,tk::text) {bbox cget compare configure count debug delete dlineinfo dump edit get image index insert mark peer replace scan search see tag window xview yview} |
||||
set ::subCmd(_obj,tk::toplevel) {cget configure} |
||||
set ::subCmd(_obj,toplevel) {cget configure} |
||||
set ::subCmd(_obj,ttk::button) {cget configure identify instate invoke state} |
||||
set ::subCmd(_obj,ttk::checkbutton) {cget configure identify instate invoke state} |
||||
set ::subCmd(_obj,ttk::combobox) {bbox cget configure current delete get icursor identify index insert instate selection set state xview} |
||||
set ::subCmd(_obj,ttk::entry) {bbox cget configure delete get icursor identify index insert instate selection state validate xview} |
||||
set ::subCmd(_obj,ttk::frame) {cget configure identify instate state} |
||||
set ::subCmd(_obj,ttk::label) {cget configure identify instate state} |
||||
set ::subCmd(_obj,ttk::labelframe) {cget configure identify instate state} |
||||
set ::subCmd(_obj,ttk::menubutton) {cget configure identify instate state} |
||||
set ::subCmd(_obj,ttk::notebook) {add cget configure forget hide identify index insert instate select state tab tabs} |
||||
set ::subCmd(_obj,ttk::panedwindow) {add cget configure forget identify insert instate pane panes sashpos state} |
||||
set ::subCmd(_obj,ttk::progressbar) {cget configure identify instate start state step stop} |
||||
set ::subCmd(_obj,ttk::radiobutton) {cget configure identify instate invoke state} |
||||
set ::subCmd(_obj,ttk::scale) {cget configure coords get identify instate set state} |
||||
set ::subCmd(_obj,ttk::scrollbar) {cget configure delta fraction get identify instate set state} |
||||
set ::subCmd(_obj,ttk::separator) {cget configure identify instate state} |
||||
set ::subCmd(_obj,ttk::sizegrip) {cget configure identify instate state} |
||||
set ::subCmd(_obj,ttk::treeview) {bbox cget children column configure delete detach drag exists focus heading identify index insert instate item move next parent prev see selection set state tag xview yview} |
||||
set ::subCmd(array) {anymore donesearch exists get names nextelement set size startsearch statistics unset} |
||||
set ::subCmd(binary) {format scan} |
||||
set ::subCmd(chan) {blocked close configure copy create eof event flush gets names pending postevent puts read seek tell truncate} |
||||
set ::subCmd(clipboard) {append clear get} |
||||
set ::subCmd(clock) {add clicks format microseconds milliseconds scan seconds} |
||||
set ::subCmd(dict) {append create exists filter for get incr info keys lappend merge remove replace set size unset update values with} |
||||
set ::subCmd(encoding) {convertfrom convertto dirs names system} |
||||
set ::subCmd(event) {add delete generate info} |
||||
set ::subCmd(file) {atime attributes channels copy delete dirname executable exists extension isdirectory isfile join link lstat mkdir mtime nativename normalize owned pathtype readable readlink rename rootname separator size split stat system tail type volumes writable} |
||||
set ::subCmd(font) {actual configure create delete families measure metrics names} |
||||
set ::subCmd(history) {add change clear event info keep nextid redo} |
||||
set ::subCmd(image) {create delete height inuse names type types width} |
||||
set ::subCmd(info) {args body cmdcount commands complete default exists frame functions globals hostname level library loaded locals nameofexecutable patchlevel procs script sharedlibextension tclversion vars} |
||||
set ::subCmd(interp) {alias aliases bgerror create delete eval exists expose hidden hide invokehidden issafe limit marktrusted recursionlimit share slaves target transfer} |
||||
set ::subCmd(namespace) {children code current delete ensemble eval exists export forget import inscope origin parent path qualifiers tail unknown upvar which} |
||||
set ::subCmd(option) {add clear get readfile} |
||||
set ::subCmd(package) {forget ifneeded names prefer present provide require unknown vcompare versions vsatisfies} |
||||
set ::subCmd(selection) {clear get handle own} |
||||
set ::subCmd(string) {bytelength compare equal first index is last length map match range repeat replace reverse tolower totitle toupper trim trimleft trimright wordend wordstart} |
||||
set {::subCmd(string is)} {alnum alpha ascii boolean control digit double false graph integer list lower print punct space true upper wideinteger wordchar xdigit} |
||||
set ::subCmd(tk) {appname caret inactive scaling useinputmethods windowingsystem} |
||||
set ::subCmd(tkwait) {variable visibility window} |
||||
set ::subCmd(trace) {add info remove variable vdelete vinfo} |
||||
set {::subCmd(trace add)} {command execution variable} |
||||
set {::subCmd(trace info)} {command execution variable} |
||||
set {::subCmd(trace remove)} {command execution variable} |
||||
set ::subCmd(ttk::style) {configure element layout lookup map theme} |
||||
set {::subCmd(ttk::style element)} {create names options} |
||||
set {::subCmd(ttk::style theme)} {create names settings use} |
||||
set ::subCmd(update) idletasks |
||||
set ::subCmd(winfo) {atom atomname cells children class colormapfull containing depth exists fpixels geometry height id interps ismapped manager name parent pathname pixels pointerx pointerxy pointery reqheight reqwidth rgb rootx rooty screen screencells screendepth screenheight screenmmheight screenmmwidth screenvisual screenwidth server toplevel viewable visual visualid visualsavailable vrootheight vrootwidth vrootx vrooty width x y} |
||||
set ::subCmd(wm) {aspect attributes client colormapwindows command deiconify focusmodel forget frame geometry grid group iconbitmap iconify iconmask iconname iconphoto iconposition iconwindow manage maxsize minsize overrideredirect positionfrom protocol resizable sizefrom stackorder state title transient withdraw} |
||||
|
||||
set {::option(. cget)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(. configure)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,button cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,button configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,button configure -textvariable)} n |
||||
set {::option(_obj,canvas cget)} {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set {::option(_obj,canvas configure)} {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set {::option(_obj,checkbutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -variable -width -wraplength} |
||||
set {::option(_obj,checkbutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -variable -width -wraplength} |
||||
set {::option(_obj,checkbutton configure -textvariable)} n |
||||
set {::option(_obj,checkbutton configure -variable)} n |
||||
set {::option(_obj,entry cget)} {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(_obj,entry configure)} {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(_obj,entry configure -textvariable)} n |
||||
set {::option(_obj,frame cget)} {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,frame configure)} {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,label cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,label configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,label configure -textvariable)} n |
||||
set {::option(_obj,labelframe cget)} {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,labelframe configure)} {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,listbox cget)} {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(_obj,listbox configure)} {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(_obj,listbox configure -listvariable)} n |
||||
set {::option(_obj,menu cget)} {-activebackground -activeborderwidth -activeforeground -background -bd -bg -borderwidth -cursor -disabledforeground -fg -font -foreground -postcommand -relief -selectcolor -takefocus -tearoff -tearoffcommand -title -type} |
||||
set {::option(_obj,menu configure)} {-activebackground -activeborderwidth -activeforeground -background -bd -bg -borderwidth -cursor -disabledforeground -fg -font -foreground -postcommand -relief -selectcolor -takefocus -tearoff -tearoffcommand -title -type} |
||||
set {::option(_obj,menubutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,menubutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,menubutton configure -textvariable)} n |
||||
set {::option(_obj,message cget)} {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(_obj,message configure)} {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(_obj,message configure -textvariable)} n |
||||
set {::option(_obj,panedwindow cget)} {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set {::option(_obj,panedwindow configure)} {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set {::option(_obj,radiobutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -value -variable -width -wraplength} |
||||
set {::option(_obj,radiobutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -value -variable -width -wraplength} |
||||
set {::option(_obj,radiobutton configure -textvariable)} n |
||||
set {::option(_obj,radiobutton configure -variable)} n |
||||
set {::option(_obj,scale cget)} {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(_obj,scale configure)} {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(_obj,scale configure -variable)} n |
||||
set {::option(_obj,scrollbar cget)} {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set {::option(_obj,scrollbar configure)} {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set {::option(_obj,spinbox cget)} {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(_obj,spinbox configure)} {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(_obj,spinbox configure -textvariable)} n |
||||
set {::option(_obj,text cget)} {-autoseparators -background -bd -bg -blockcursor -borderwidth -cursor -endline -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -inactiveselectbackground -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -startline -state -tabs -tabstyle -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set {::option(_obj,text configure)} {-autoseparators -background -bd -bg -blockcursor -borderwidth -cursor -endline -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -inactiveselectbackground -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -startline -state -tabs -tabstyle -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set {::option(_obj,tk::button cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,tk::button configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,tk::button configure -textvariable)} n |
||||
set {::option(_obj,tk::canvas cget)} {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set {::option(_obj,tk::canvas configure)} {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set {::option(_obj,tk::checkbutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -variable -width -wraplength} |
||||
set {::option(_obj,tk::checkbutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -variable -width -wraplength} |
||||
set {::option(_obj,tk::checkbutton configure -textvariable)} n |
||||
set {::option(_obj,tk::checkbutton configure -variable)} n |
||||
set {::option(_obj,tk::entry cget)} {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(_obj,tk::entry configure)} {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(_obj,tk::entry configure -textvariable)} n |
||||
set {::option(_obj,tk::frame cget)} {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,tk::frame configure)} {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,tk::label cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,tk::label configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,tk::label configure -textvariable)} n |
||||
set {::option(_obj,tk::labelframe cget)} {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,tk::labelframe configure)} {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,tk::listbox cget)} {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(_obj,tk::listbox configure)} {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(_obj,tk::listbox configure -listvariable)} n |
||||
set {::option(_obj,tk::menubutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,tk::menubutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,tk::menubutton configure -textvariable)} n |
||||
set {::option(_obj,tk::message cget)} {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(_obj,tk::message configure)} {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(_obj,tk::message configure -textvariable)} n |
||||
set {::option(_obj,tk::panedwindow cget)} {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set {::option(_obj,tk::panedwindow configure)} {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set {::option(_obj,tk::radiobutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -value -variable -width -wraplength} |
||||
set {::option(_obj,tk::radiobutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -value -variable -width -wraplength} |
||||
set {::option(_obj,tk::radiobutton configure -textvariable)} n |
||||
set {::option(_obj,tk::radiobutton configure -variable)} n |
||||
set {::option(_obj,tk::scale cget)} {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(_obj,tk::scale configure)} {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(_obj,tk::scale configure -variable)} n |
||||
set {::option(_obj,tk::scrollbar cget)} {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set {::option(_obj,tk::scrollbar configure)} {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set {::option(_obj,tk::spinbox cget)} {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(_obj,tk::spinbox configure)} {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(_obj,tk::spinbox configure -textvariable)} n |
||||
set {::option(_obj,tk::text cget)} {-autoseparators -background -bd -bg -blockcursor -borderwidth -cursor -endline -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -inactiveselectbackground -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -startline -state -tabs -tabstyle -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set {::option(_obj,tk::text configure)} {-autoseparators -background -bd -bg -blockcursor -borderwidth -cursor -endline -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -inactiveselectbackground -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -startline -state -tabs -tabstyle -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set {::option(_obj,tk::toplevel cget)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,tk::toplevel configure)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,toplevel cget)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,toplevel configure)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,ttk::button cget)} {-takefocus -command -default -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::button configure)} {-takefocus -command -default -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::button configure -textvariable)} n |
||||
set {::option(_obj,ttk::checkbutton cget)} {-takefocus -variable -onvalue -offvalue -command -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::checkbutton configure)} {-takefocus -variable -onvalue -offvalue -command -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::checkbutton configure -textvariable)} n |
||||
set {::option(_obj,ttk::checkbutton configure -variable)} n |
||||
set {::option(_obj,ttk::combobox cget)} {-height -postcommand -values -takefocus -exportselection -font -invalidcommand -justify -show -state -textvariable -validate -validatecommand -width -xscrollcommand -foreground -background -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::combobox configure)} {-height -postcommand -values -takefocus -exportselection -font -invalidcommand -justify -show -state -textvariable -validate -validatecommand -width -xscrollcommand -foreground -background -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::combobox configure -textvariable)} n |
||||
set {::option(_obj,ttk::entry cget)} {-takefocus -exportselection -font -invalidcommand -justify -show -state -textvariable -validate -validatecommand -width -xscrollcommand -foreground -background -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::entry configure)} {-takefocus -exportselection -font -invalidcommand -justify -show -state -textvariable -validate -validatecommand -width -xscrollcommand -foreground -background -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::entry configure -textvariable)} n |
||||
set {::option(_obj,ttk::frame cget)} {-borderwidth -padding -relief -width -height -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::frame configure)} {-borderwidth -padding -relief -width -height -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::label cget)} {-background -foreground -font -borderwidth -relief -anchor -justify -wraplength -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::label configure)} {-background -foreground -font -borderwidth -relief -anchor -justify -wraplength -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::label configure -textvariable)} n |
||||
set {::option(_obj,ttk::labelframe cget)} {-labelanchor -text -underline -labelwidget -borderwidth -padding -relief -width -height -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::labelframe configure)} {-labelanchor -text -underline -labelwidget -borderwidth -padding -relief -width -height -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::menubutton cget)} {-takefocus -menu -direction -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::menubutton configure)} {-takefocus -menu -direction -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::menubutton configure -textvariable)} n |
||||
set {::option(_obj,ttk::notebook cget)} {-takefocus -width -height -padding -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::notebook configure)} {-takefocus -width -height -padding -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::panedwindow cget)} {-orient -width -height -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::panedwindow configure)} {-orient -width -height -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::progressbar cget)} {-orient -length -mode -maximum -variable -value -phase -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::progressbar configure)} {-orient -length -mode -maximum -variable -value -phase -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::progressbar configure -variable)} n |
||||
set {::option(_obj,ttk::radiobutton cget)} {-takefocus -variable -value -command -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::radiobutton configure)} {-takefocus -variable -value -command -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::radiobutton configure -textvariable)} n |
||||
set {::option(_obj,ttk::radiobutton configure -variable)} n |
||||
set {::option(_obj,ttk::scale cget)} {-takefocus -command -variable -orient -from -to -value -length -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::scale configure)} {-takefocus -command -variable -orient -from -to -value -length -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::scale configure -variable)} n |
||||
set {::option(_obj,ttk::scrollbar cget)} {-command -orient -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::scrollbar configure)} {-command -orient -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::separator cget)} {-orient -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::separator configure)} {-orient -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::sizegrip cget)} {-takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::sizegrip configure)} {-takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::treeview cget)} {-takefocus -columns -displaycolumns -show -selectmode -height -padding -xscrollcommand -yscrollcommand -takefocus -cursor -style -class} |
||||
set {::option(_obj,ttk::treeview configure)} {-takefocus -columns -displaycolumns -show -selectmode -height -padding -xscrollcommand -yscrollcommand -takefocus -cursor -style -class} |
||||
set ::option(bell) {-displayof -nice} |
||||
set ::option(button) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(button -textvariable)} n |
||||
set ::option(canvas) {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set {::option(chan puts)} -nonewline |
||||
set ::option(checkbutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -variable -width -wraplength} |
||||
set {::option(checkbutton -textvariable)} n |
||||
set {::option(checkbutton -variable)} n |
||||
set {::option(clock clicks)} {-microseconds -milliseconds} |
||||
set {::option(clock format)} {-format -gmt -locale -timezone} |
||||
set {::option(clock scan)} {-base -format -gmt -locale -timezone} |
||||
set ::option(entry) {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(entry -textvariable)} n |
||||
set ::option(exec) {-- -ignorestderr -keepnewline} |
||||
set ::option(fconfigure) {-blocking -buffering -buffersize -encoding -eofchar -error -handshake -lasterror -mode -peername -pollinterval -queue -sockname -sysbuffer -timeout -translation -ttycontrol -ttystatus -xchar} |
||||
set ::option(fcopy) {-command -size} |
||||
set {::option(file attributes)} {-group -owner -permissions} |
||||
set {::option(file copy)} {-- -force} |
||||
set {::option(file delete)} {-- -force} |
||||
set {::option(file link)} {-hard -symbolic} |
||||
set {::option(file rename)} {-- -force} |
||||
set ::option(focus) {-displayof -force -lastfor} |
||||
set ::option(frame) {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(glob) {-- -directory -join -nocomplain -path -tails -types} |
||||
set {::option(glob -directory)} 1 |
||||
set {::option(glob -path)} 1 |
||||
set {::option(glob -types)} 1 |
||||
set {::option(interp invokehidden)} {-- -global -namespace} |
||||
set {::option(interp invokehidden -namespace)} 1 |
||||
set ::option(label) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(label -textvariable)} n |
||||
set ::option(labelframe) {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(listbox) {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(listbox -listvariable)} n |
||||
set ::option(lsearch) {-all -ascii -decreasing -dictionary -exact -glob -increasing -index -inline -integer -nocase -not -real -regexp -sorted -start -subindices} |
||||
set {::option(lsearch -index)} 1 |
||||
set {::option(lsearch -start)} 1 |
||||
set ::option(lsort) {-ascii -command -decreasing -dictionary -increasing -index -indices -integer -nocase -real -unique} |
||||
set {::option(lsort -command)} 1 |
||||
set {::option(lsort -index)} 1 |
||||
set ::option(menu) {-activebackground -activeborderwidth -activeforeground -background -bd -bg -borderwidth -cursor -disabledforeground -fg -font -foreground -postcommand -relief -selectcolor -takefocus -tearoff -tearoffcommand -title -type} |
||||
set ::option(menubutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(menubutton -textvariable)} n |
||||
set ::option(message) {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(message -textvariable)} n |
||||
set {::option(namespace which)} {-variable -command} |
||||
set {::option(namespace which -variable)} v |
||||
set ::option(panedwindow) {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set ::option(puts) -nonewline |
||||
set ::option(radiobutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -value -variable -width -wraplength} |
||||
set {::option(radiobutton -textvariable)} n |
||||
set {::option(radiobutton -variable)} n |
||||
set ::option(regexp) {-- -about -all -expanded -indices -inline -line -lineanchor -linestop -nocase -start} |
||||
set {::option(regexp -start)} 1 |
||||
set ::option(regsub) {-- -all -expanded -line -lineanchor -linestop -nocase -start} |
||||
set {::option(regsub -start)} 1 |
||||
set ::option(scale) {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(scale -variable)} n |
||||
set ::option(scrollbar) {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set ::option(send) {-- -async -displayof} |
||||
set {::option(send -displayof)} 1 |
||||
set ::option(source) -encoding |
||||
set ::option(spinbox) {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(spinbox -textvariable)} n |
||||
set {::option(string compare)} {-length -nocase} |
||||
set {::option(string compare -length)} 1 |
||||
set {::option(string equal)} {-length -nocase} |
||||
set {::option(string equal -length)} 1 |
||||
set {::option(string is)} {-failindex -strict} |
||||
set {::option(string is -failindex)} n |
||||
set {::option(string map)} -nocase |
||||
set {::option(string match)} -nocase |
||||
set ::option(subst) {-nobackslashes -nocommands -novariables} |
||||
set ::option(switch) {-- -exact -glob -indexvar -matchvar -nocase -regexp} |
||||
set ::option(text) {-autoseparators -background -bd -bg -blockcursor -borderwidth -cursor -endline -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -inactiveselectbackground -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -startline -state -tabs -tabstyle -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set ::option(tk::button) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(tk::button -textvariable)} n |
||||
set ::option(tk::canvas) {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set ::option(tk::checkbutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -variable -width -wraplength} |
||||
set {::option(tk::checkbutton -textvariable)} n |
||||
set {::option(tk::checkbutton -variable)} n |
||||
set ::option(tk::entry) {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(tk::entry -textvariable)} n |
||||
set ::option(tk::frame) {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(tk::label) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(tk::label -textvariable)} n |
||||
set ::option(tk::labelframe) {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(tk::listbox) {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(tk::listbox -listvariable)} n |
||||
set ::option(tk::menubutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(tk::menubutton -textvariable)} n |
||||
set ::option(tk::message) {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(tk::message -textvariable)} n |
||||
set ::option(tk::panedwindow) {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set ::option(tk::radiobutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -tristateimage -tristatevalue -underline -value -variable -width -wraplength} |
||||
set {::option(tk::radiobutton -textvariable)} n |
||||
set {::option(tk::radiobutton -variable)} n |
||||
set ::option(tk::scale) {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(tk::scale -variable)} n |
||||
set ::option(tk::scrollbar) {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set ::option(tk::spinbox) {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(tk::spinbox -textvariable)} n |
||||
set ::option(tk::text) {-autoseparators -background -bd -bg -blockcursor -borderwidth -cursor -endline -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -inactiveselectbackground -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -startline -state -tabs -tabstyle -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set ::option(tk::toplevel) {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(tk_chooseColor) {-initialcolor -parent -title} |
||||
set ::option(tk_chooseDirectory) {-initialdir -mustexist -parent -title} |
||||
set ::option(tk_getOpenFile) {-defaultextension -filetypes -initialdir -initialfile -multiple -parent -title -typevariable} |
||||
set ::option(tk_getSaveFile) {-defaultextension -filetypes -initialdir -initialfile -parent -title -typevariable} |
||||
set ::option(tk_messageBox) {-default -detail -icon -message -parent -title -type} |
||||
set ::option(toplevel) {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(ttk::button) {-takefocus -command -default -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(ttk::button -textvariable)} n |
||||
set ::option(ttk::checkbutton) {-takefocus -variable -onvalue -offvalue -command -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(ttk::checkbutton -textvariable)} n |
||||
set {::option(ttk::checkbutton -variable)} n |
||||
set ::option(ttk::combobox) {-height -postcommand -values -takefocus -exportselection -font -invalidcommand -justify -show -state -textvariable -validate -validatecommand -width -xscrollcommand -foreground -background -takefocus -cursor -style -class} |
||||
set {::option(ttk::combobox -textvariable)} n |
||||
set ::option(ttk::entry) {-takefocus -exportselection -font -invalidcommand -justify -show -state -textvariable -validate -validatecommand -width -xscrollcommand -foreground -background -takefocus -cursor -style -class} |
||||
set {::option(ttk::entry -textvariable)} n |
||||
set ::option(ttk::frame) {-borderwidth -padding -relief -width -height -takefocus -cursor -style -class} |
||||
set ::option(ttk::label) {-background -foreground -font -borderwidth -relief -anchor -justify -wraplength -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(ttk::label -textvariable)} n |
||||
set ::option(ttk::labelframe) {-labelanchor -text -underline -labelwidget -borderwidth -padding -relief -width -height -takefocus -cursor -style -class} |
||||
set ::option(ttk::menubutton) {-takefocus -menu -direction -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(ttk::menubutton -textvariable)} n |
||||
set ::option(ttk::notebook) {-takefocus -width -height -padding -takefocus -cursor -style -class} |
||||
set ::option(ttk::panedwindow) {-orient -width -height -takefocus -cursor -style -class} |
||||
set ::option(ttk::progressbar) {-orient -length -mode -maximum -variable -value -phase -takefocus -cursor -style -class} |
||||
set {::option(ttk::progressbar -variable)} n |
||||
set ::option(ttk::radiobutton) {-takefocus -variable -value -command -text -textvariable -underline -width -image -compound -padding -state -takefocus -cursor -style -class} |
||||
set {::option(ttk::radiobutton -textvariable)} n |
||||
set {::option(ttk::radiobutton -variable)} n |
||||
set ::option(ttk::scale) {-takefocus -command -variable -orient -from -to -value -length -takefocus -cursor -style -class} |
||||
set {::option(ttk::scale -variable)} n |
||||
set ::option(ttk::scrollbar) {-command -orient -takefocus -cursor -style -class} |
||||
set ::option(ttk::separator) {-orient -takefocus -cursor -style -class} |
||||
set ::option(ttk::sizegrip) {-takefocus -cursor -style -class} |
||||
set {::option(ttk::style theme create)} {-parent -settings} |
||||
set ::option(ttk::treeview) {-takefocus -columns -displaycolumns -show -selectmode -height -padding -xscrollcommand -yscrollcommand -takefocus -cursor -style -class} |
||||
set ::option(unload) {-- -keeplibrary -nocomplain} |
||||
set ::option(unset) {-nocomplain --} |
||||
|
@ -1,524 +0,0 @@
@@ -1,524 +0,0 @@
|
||||
# Automatically generated syntax database. |
||||
|
||||
lappend ::dbInfo {Tcl 8.4.18 unix, Tk 8.4.18 x11} |
||||
set ::dbTclVersion 8.4 |
||||
set ::knownGlobals {argc argv argv0 auto_index auto_oldpath auto_path env errorCode errorInfo tcl_interactive tcl_libPath tcl_library tcl_nonwordchars tcl_patchLevel tcl_pkgPath tcl_platform tcl_rcFileName tcl_version tcl_wordchars tk_library tk_patchLevel tk_strictMotif tk_version} |
||||
set ::knownCommands {. EvalAttached after append array auto_execok auto_import auto_load auto_load_index auto_mkindex auto_mkindex_old auto_qualify auto_reset bell bgerror binary bind bindtags break button canvas case catch cd checkbutton clipboard clock close concat continue destroy encoding entry eof error eval event exec exit expr fblocked fconfigure fcopy file fileevent flush focus font for foreach format frame gets glob global grab grid history if image incr info interp join label labelframe lappend lindex linsert list listbox llength load lower lrange lreplace lsearch lset lsort menu menubutton message msgcat::mc msgcat::mcload msgcat::mclocale msgcat::mcmax msgcat::mcmset msgcat::mcpreferences msgcat::mcset msgcat::mcunknown namespace open option pack package panedwindow parray pid pkg_compareExtension pkg_mkIndex place proc puts pwd radiobutton raise read regexp regsub rename return scale scan scrollbar seek selection send set socket source spinbox split string subst switch tclLdAout tclListValidFlags tclLog tclParseConfigSpec tclPkgSetup tclPkgUnknown tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tell text thread_load thread_source time tk tk_bindForTraversal tk_bisque tk_chooseColor tk_chooseDirectory tk_dialog tk_focusFollowsMouse tk_focusNext tk_focusPrev tk_getFileType tk_getOpenFile tk_getSaveFile tk_menuBar tk_menuSetFocus tk_messageBox tk_optionMenu tk_popup tk_setPalette tk_textCopy tk_textCut tk_textPaste tkwait toplevel trace unknown unset update uplevel upvar variable vwait while winfo wm} |
||||
set ::syntax(.) {s x*} |
||||
set {::syntax(. cget)} o |
||||
set {::syntax(. configure)} {o. x. p*} |
||||
set ::syntax(_obj,button) {s x*} |
||||
set {::syntax(_obj,button cget)} o |
||||
set {::syntax(_obj,button configure)} {o. x. p*} |
||||
set ::syntax(_obj,canvas) {s x*} |
||||
set {::syntax(_obj,canvas cget)} o |
||||
set {::syntax(_obj,canvas configure)} {o. x. p*} |
||||
set ::syntax(_obj,checkbutton) {s x*} |
||||
set {::syntax(_obj,checkbutton cget)} o |
||||
set {::syntax(_obj,checkbutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,entry) {s x*} |
||||
set {::syntax(_obj,entry cget)} o |
||||
set {::syntax(_obj,entry configure)} {o. x. p*} |
||||
set ::syntax(_obj,frame) {s x*} |
||||
set {::syntax(_obj,frame cget)} o |
||||
set {::syntax(_obj,frame configure)} {o. x. p*} |
||||
set ::syntax(_obj,label) {s x*} |
||||
set {::syntax(_obj,label cget)} o |
||||
set {::syntax(_obj,label configure)} {o. x. p*} |
||||
set ::syntax(_obj,labelframe) {s x*} |
||||
set {::syntax(_obj,labelframe cget)} o |
||||
set {::syntax(_obj,labelframe configure)} {o. x. p*} |
||||
set ::syntax(_obj,listbox) {s x*} |
||||
set {::syntax(_obj,listbox cget)} o |
||||
set {::syntax(_obj,listbox configure)} {o. x. p*} |
||||
set {::syntax(_obj,listbox selection)} {s x x?} |
||||
set ::syntax(_obj,menu) {s x*} |
||||
set {::syntax(_obj,menu cget)} o |
||||
set {::syntax(_obj,menu configure)} {o. x. p*} |
||||
set ::syntax(_obj,menubutton) {s x*} |
||||
set {::syntax(_obj,menubutton cget)} o |
||||
set {::syntax(_obj,menubutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,message) {s x*} |
||||
set {::syntax(_obj,message cget)} o |
||||
set {::syntax(_obj,message configure)} {o. x. p*} |
||||
set ::syntax(_obj,panedwindow) {s x*} |
||||
set {::syntax(_obj,panedwindow cget)} o |
||||
set {::syntax(_obj,panedwindow configure)} {o. x. p*} |
||||
set ::syntax(_obj,radiobutton) {s x*} |
||||
set {::syntax(_obj,radiobutton cget)} o |
||||
set {::syntax(_obj,radiobutton configure)} {o. x. p*} |
||||
set ::syntax(_obj,scale) {s x*} |
||||
set {::syntax(_obj,scale cget)} o |
||||
set {::syntax(_obj,scale configure)} {o. x. p*} |
||||
set ::syntax(_obj,scrollbar) {s x*} |
||||
set {::syntax(_obj,scrollbar cget)} o |
||||
set {::syntax(_obj,scrollbar configure)} {o. x. p*} |
||||
set ::syntax(_obj,spinbox) {s x*} |
||||
set {::syntax(_obj,spinbox cget)} o |
||||
set {::syntax(_obj,spinbox configure)} {o. x. p*} |
||||
set ::syntax(_obj,text) {s x*} |
||||
set {::syntax(_obj,text cget)} o |
||||
set {::syntax(_obj,text configure)} {o. x. p*} |
||||
set ::syntax(_obj,toplevel) {s x*} |
||||
set {::syntax(_obj,toplevel cget)} o |
||||
set {::syntax(_obj,toplevel configure)} {o. x. p*} |
||||
set ::syntax(after) {r 1} |
||||
set ::syntax(append) {n x*} |
||||
set ::syntax(array) {s v x?} |
||||
set {::syntax(array exists)} l |
||||
set {::syntax(array names)} {v x? x?} |
||||
set {::syntax(array set)} {n x} |
||||
set {::syntax(array size)} v |
||||
set {::syntax(array statistics)} v |
||||
set {::syntax(array unset)} {l x?} |
||||
set ::syntax(auto_execok) 1 |
||||
set ::syntax(auto_import) 1 |
||||
set ::syntax(auto_load) {r 1 2} |
||||
set ::syntax(auto_load_index) 0 |
||||
set ::syntax(auto_mkindex) {r 1} |
||||
set ::syntax(auto_mkindex_old) {r 1} |
||||
set ::syntax(auto_qualify) 2 |
||||
set ::syntax(auto_reset) 0 |
||||
set ::syntax(bell) {o* x*} |
||||
set ::syntax(bgerror) 1 |
||||
set ::syntax(binary) {s x*} |
||||
set {::syntax(binary scan)} {x x n n*} |
||||
set ::syntax(bind) {x x? cg?} |
||||
set ::syntax(bindtags) {x x?} |
||||
set ::syntax(break) 0 |
||||
set ::syntax(button) {x p*} |
||||
set ::syntax(canvas) {x p*} |
||||
set ::syntax(case) x* |
||||
set ::syntax(catch) {c n?} |
||||
set ::syntax(cd) {r 0 1} |
||||
set ::syntax(checkbutton) {x p*} |
||||
set ::syntax(clipboard) {s x*} |
||||
set ::syntax(clock) {s x*} |
||||
set {::syntax(clock clicks)} o? |
||||
set {::syntax(clock format)} {x p*} |
||||
set {::syntax(clock scan)} {x p*} |
||||
set {::syntax(clock seconds)} 0 |
||||
set ::syntax(close) 1 |
||||
set ::syntax(concat) {r 0} |
||||
set ::syntax(continue) 0 |
||||
set ::syntax(destroy) x* |
||||
set ::syntax(encoding) {s x*} |
||||
set {::syntax(encoding convertfrom)} {r 1 2} |
||||
set {::syntax(encoding convertto)} {r 1 2} |
||||
set {::syntax(encoding names)} 0 |
||||
set {::syntax(encoding system)} {r 0 1} |
||||
set ::syntax(entry) {x p*} |
||||
set ::syntax(eof) 1 |
||||
set ::syntax(error) {r 1 3} |
||||
set ::syntax(event) {s x*} |
||||
set ::syntax(exec) {o* x x*} |
||||
set ::syntax(exit) {r 0 1} |
||||
set ::syntax(fblocked) 1 |
||||
set ::syntax(fconfigure) {x o. x. p*} |
||||
set ::syntax(fcopy) {x x p*} |
||||
set ::syntax(file) {s x*} |
||||
set {::syntax(file atime)} {x x?} |
||||
set {::syntax(file attributes)} {x o. x. p*} |
||||
set {::syntax(file channels)} x? |
||||
set {::syntax(file copy)} {o* x x x*} |
||||
set {::syntax(file delete)} {o* x x*} |
||||
set {::syntax(file dirname)} x |
||||
set {::syntax(file executable)} x |
||||
set {::syntax(file exists)} x |
||||
set {::syntax(file extension)} x |
||||
set {::syntax(file isdirectory)} x |
||||
set {::syntax(file isfile)} x |
||||
set {::syntax(file join)} {x x*} |
||||
set {::syntax(file link)} {o? x x?} |
||||
set {::syntax(file lstat)} {x n} |
||||
set {::syntax(file mkdir)} {x x*} |
||||
set {::syntax(file mtime)} {x x?} |
||||
set {::syntax(file nativename)} x |
||||
set {::syntax(file normalize)} x |
||||
set {::syntax(file owned)} x |
||||
set {::syntax(file pathtype)} x |
||||
set {::syntax(file readable)} x |
||||
set {::syntax(file readlink)} x |
||||
set {::syntax(file rename)} {o* x x x*} |
||||
set {::syntax(file rootname)} x |
||||
set {::syntax(file separator)} x? |
||||
set {::syntax(file size)} x |
||||
set {::syntax(file split)} x |
||||
set {::syntax(file stat)} {x n} |
||||
set {::syntax(file system)} x |
||||
set {::syntax(file tail)} x |
||||
set {::syntax(file type)} x |
||||
set {::syntax(file volumes)} 0 |
||||
set {::syntax(file writable)} x |
||||
set ::syntax(fileevent) {x x x?} |
||||
set ::syntax(flush) 1 |
||||
set ::syntax(focus) {o? x?} |
||||
set ::syntax(font) {s x*} |
||||
set ::syntax(for) {c E c c} |
||||
set ::syntax(format) {r 1} |
||||
set ::syntax(frame) {x p*} |
||||
set ::syntax(gets) {x n?} |
||||
set ::syntax(glob) {o* x x*} |
||||
set ::syntax(grab) {x x*} |
||||
set ::syntax(grid) {x x*} |
||||
set ::syntax(history) {s x*} |
||||
set ::syntax(if) {e c} |
||||
set ::syntax(image) {s x*} |
||||
set ::syntax(incr) {v x?} |
||||
set ::syntax(info) {s x*} |
||||
set {::syntax(info default)} {x x n} |
||||
set {::syntax(info exists)} l |
||||
set ::syntax(interp) {s x*} |
||||
set {::syntax(interp invokehidden)} {x o* x x*} |
||||
set ::syntax(join) {r 1 2} |
||||
set ::syntax(label) {x p*} |
||||
set ::syntax(labelframe) {x p*} |
||||
set ::syntax(lappend) {n x*} |
||||
set ::syntax(lindex) {r 2} |
||||
set ::syntax(linsert) {r 3} |
||||
set ::syntax(list) {r 0} |
||||
set ::syntax(listbox) {x p*} |
||||
set ::syntax(llength) 1 |
||||
set ::syntax(load) {r 1 3} |
||||
set ::syntax(lower) {x x?} |
||||
set ::syntax(lrange) 3 |
||||
set ::syntax(lreplace) {r 3} |
||||
set ::syntax(lsearch) {o* x x} |
||||
set ::syntax(lset) {n x x x*} |
||||
set ::syntax(lsort) {o* x} |
||||
set ::syntax(menu) {x p*} |
||||
set ::syntax(menubutton) {x p*} |
||||
set ::syntax(message) {x p*} |
||||
set ::syntax(msgcat::mc) {r 1} |
||||
set ::syntax(msgcat::mcload) 1 |
||||
set ::syntax(msgcat::mclocale) {r 0} |
||||
set ::syntax(msgcat::mcmax) {r 0} |
||||
set ::syntax(msgcat::mcmset) 2 |
||||
set ::syntax(msgcat::mcpreferences) 0 |
||||
set ::syntax(msgcat::mcset) {r 2 3} |
||||
set ::syntax(msgcat::mcunknown) {r 2} |
||||
set ::syntax(namespace) {s x*} |
||||
set {::syntax(namespace import)} {o* x*} |
||||
set {::syntax(namespace which)} {o* x?} |
||||
set ::syntax(open) {r 1 3} |
||||
set ::syntax(option) {s x*} |
||||
set ::syntax(pack) {x x*} |
||||
set ::syntax(package) {s x*} |
||||
set ::syntax(panedwindow) {x p*} |
||||
set ::syntax(parray) {v x?} |
||||
set ::syntax(pid) {r 0 1} |
||||
set ::syntax(pkg_compareExtension) {r 1 2} |
||||
set ::syntax(pkg_mkIndex) {r 0} |
||||
set ::syntax(place) {x x*} |
||||
set ::syntax(proc) dp |
||||
set ::syntax(puts) {1: x : o? x x?} |
||||
set ::syntax(pwd) 0 |
||||
set ::syntax(radiobutton) {x p*} |
||||
set ::syntax(raise) {x x?} |
||||
set ::syntax(read) {r 1 2} |
||||
set ::syntax(regexp) {o* x x n*} |
||||
set ::syntax(regsub) {o* x x x n?} |
||||
set ::syntax(rename) 2 |
||||
set ::syntax(return) {p* x?} |
||||
set ::syntax(scale) {x p*} |
||||
set ::syntax(scan) {x x n*} |
||||
set ::syntax(scrollbar) {x p*} |
||||
set ::syntax(seek) {r 2 3} |
||||
set ::syntax(selection) {s x*} |
||||
set ::syntax(send) {o* x x x*} |
||||
set ::syntax(set) {1: v : n x} |
||||
set ::syntax(socket) {r 2} |
||||
set ::syntax(source) 1 |
||||
set ::syntax(spinbox) {x p*} |
||||
set ::syntax(split) {r 1 2} |
||||
set ::syntax(string) {s x x*} |
||||
set {::syntax(string bytelength)} 1 |
||||
set {::syntax(string compare)} {o* x x} |
||||
set {::syntax(string equal)} {o* x x} |
||||
set {::syntax(string first)} {r 2 3} |
||||
set {::syntax(string index)} 2 |
||||
set {::syntax(string is)} {s o* x} |
||||
set {::syntax(string last)} {r 2 3} |
||||
set {::syntax(string length)} 1 |
||||
set {::syntax(string map)} {o? x x} |
||||
set {::syntax(string match)} {o? x x} |
||||
set {::syntax(string range)} 3 |
||||
set {::syntax(string repeat)} 2 |
||||
set {::syntax(string replace)} {r 3 4} |
||||
set {::syntax(string tolower)} {r 1 3} |
||||
set {::syntax(string totitle)} {r 1 3} |
||||
set {::syntax(string toupper)} {r 1 3} |
||||
set {::syntax(string trim)} {r 1 2} |
||||
set {::syntax(string trimleft)} {r 1 2} |
||||
set {::syntax(string trimright)} {r 1 2} |
||||
set {::syntax(string wordend)} 2 |
||||
set {::syntax(string wordstart)} 2 |
||||
set ::syntax(subst) {o* x} |
||||
set ::syntax(tclLdAout) {r 0 3} |
||||
set ::syntax(tclListValidFlags) 1 |
||||
set ::syntax(tclLog) 1 |
||||
set ::syntax(tclParseConfigSpec) 4 |
||||
set ::syntax(tclPkgSetup) 4 |
||||
set ::syntax(tclPkgUnknown) {r 2 3} |
||||
set ::syntax(tcl_endOfWord) 2 |
||||
set ::syntax(tcl_findLibrary) 6 |
||||
set ::syntax(tcl_startOfNextWord) 2 |
||||
set ::syntax(tcl_startOfPreviousWord) 2 |
||||
set ::syntax(tcl_wordBreakAfter) 2 |
||||
set ::syntax(tcl_wordBreakBefore) 2 |
||||
set ::syntax(tell) 1 |
||||
set ::syntax(text) {x p*} |
||||
set ::syntax(thread_load) 1 |
||||
set ::syntax(thread_source) 1 |
||||
set ::syntax(time) {c x?} |
||||
set ::syntax(tk) {s x*} |
||||
set ::syntax(tk_bindForTraversal) {r 0} |
||||
set ::syntax(tk_bisque) 0 |
||||
set ::syntax(tk_chooseColor) p* |
||||
set ::syntax(tk_chooseDirectory) p* |
||||
set ::syntax(tk_dialog) {r 5} |
||||
set ::syntax(tk_focusFollowsMouse) 0 |
||||
set ::syntax(tk_focusNext) 1 |
||||
set ::syntax(tk_focusPrev) 1 |
||||
set ::syntax(tk_getFileType) 0 |
||||
set ::syntax(tk_getOpenFile) p* |
||||
set ::syntax(tk_getSaveFile) p* |
||||
set ::syntax(tk_menuBar) {r 0} |
||||
set ::syntax(tk_menuSetFocus) 1 |
||||
set ::syntax(tk_messageBox) p* |
||||
set ::syntax(tk_optionMenu) {r 3} |
||||
set ::syntax(tk_popup) {r 3 4} |
||||
set ::syntax(tk_setPalette) {r 0} |
||||
set ::syntax(tk_textCopy) 1 |
||||
set ::syntax(tk_textCut) 1 |
||||
set ::syntax(tk_textPaste) 1 |
||||
set ::syntax(tkwait) {s x} |
||||
set {::syntax(tkwait variable)} l |
||||
set ::syntax(toplevel) {x p*} |
||||
set ::syntax(trace) {s x x*} |
||||
set {::syntax(trace add)} {s x x x} |
||||
set {::syntax(trace add command)} {x x c3} |
||||
set {::syntax(trace add execution)} {x x c2} |
||||
set {::syntax(trace add variable)} {v x c3} |
||||
set {::syntax(trace info)} {s x x x} |
||||
set {::syntax(trace info command)} x |
||||
set {::syntax(trace info execution)} x |
||||
set {::syntax(trace info variable)} v |
||||
set {::syntax(trace remove)} {s x x x} |
||||
set {::syntax(trace remove command)} {x x x} |
||||
set {::syntax(trace remove execution)} {x x x} |
||||
set {::syntax(trace remove variable)} {v x x} |
||||
set {::syntax(trace variable)} {n x x} |
||||
set {::syntax(trace vdelete)} {v x x} |
||||
set {::syntax(trace vinfo)} l |
||||
set ::syntax(unknown) {r 0} |
||||
set ::syntax(unset) {o* l l*} |
||||
set ::syntax(update) s. |
||||
set ::syntax(vwait) n |
||||
set ::syntax(while) {E c} |
||||
set ::syntax(winfo) {s x x*} |
||||
set ::syntax(wm) {s x x*} |
||||
|
||||
set ::return(button) _obj,button |
||||
set ::return(canvas) _obj,canvas |
||||
set ::return(checkbutton) _obj,checkbutton |
||||
set ::return(entry) _obj,entry |
||||
set ::return(frame) _obj,frame |
||||
set ::return(label) _obj,label |
||||
set ::return(labelframe) _obj,labelframe |
||||
set ::return(linsert) list |
||||
set ::return(list) list |
||||
set ::return(listbox) _obj,listbox |
||||
set ::return(llength) int |
||||
set ::return(lrange) list |
||||
set ::return(lreplace) list |
||||
set ::return(lsort) list |
||||
set ::return(menu) _obj,menu |
||||
set ::return(menubutton) _obj,menubutton |
||||
set ::return(message) _obj,message |
||||
set ::return(panedwindow) _obj,panedwindow |
||||
set ::return(radiobutton) _obj,radiobutton |
||||
set ::return(scale) _obj,scale |
||||
set ::return(scrollbar) _obj,scrollbar |
||||
set ::return(spinbox) _obj,spinbox |
||||
set ::return(text) _obj,text |
||||
set ::return(toplevel) _obj,toplevel |
||||
|
||||
set ::subCmd(.) {cget configure} |
||||
set ::subCmd(_obj,button) {cget configure flash invoke} |
||||
set ::subCmd(_obj,canvas) {addtag bbox bind canvasx canvasy cget configure coords create dchars delete dtag find focus gettags icursor index insert itemcget itemconfigure lower move postscript raise scale scan select type xview yview} |
||||
set ::subCmd(_obj,checkbutton) {cget configure deselect flash invoke select toggle} |
||||
set ::subCmd(_obj,entry) {bbox cget configure delete get icursor index insert scan selection validate xview} |
||||
set ::subCmd(_obj,frame) {cget configure} |
||||
set ::subCmd(_obj,label) {cget configure} |
||||
set ::subCmd(_obj,labelframe) {cget configure} |
||||
set ::subCmd(_obj,listbox) {activate bbox cget configure curselection delete get index insert itemcget itemconfigure nearest scan see selection size xview yview} |
||||
set {::subCmd(_obj,listbox selection)} {anchor clear includes set} |
||||
set ::subCmd(_obj,menu) {activate add cget clone configure delete entrycget entryconfigure index insert invoke post postcascade type unpost yposition} |
||||
set ::subCmd(_obj,menubutton) {cget configure} |
||||
set ::subCmd(_obj,message) {cget configure} |
||||
set ::subCmd(_obj,panedwindow) {add cget configure forget identify panecget paneconfigure panes proxy sash} |
||||
set ::subCmd(_obj,radiobutton) {cget configure deselect flash invoke select} |
||||
set ::subCmd(_obj,scale) {cget configure coords get identify set} |
||||
set ::subCmd(_obj,scrollbar) {activate cget configure delta fraction get identify set} |
||||
set ::subCmd(_obj,spinbox) {bbox cget configure delete get icursor identify index insert invoke scan selection set validate xview} |
||||
set ::subCmd(_obj,text) {bbox cget compare configure debug delete dlineinfo dump edit get image index insert mark scan search see tag window xview yview} |
||||
set ::subCmd(_obj,toplevel) {cget configure} |
||||
set ::subCmd(array) {anymore donesearch exists get names nextelement set size startsearch statistics unset} |
||||
set ::subCmd(binary) {format scan} |
||||
set ::subCmd(clipboard) {append clear get} |
||||
set ::subCmd(clock) {clicks format scan seconds} |
||||
set ::subCmd(encoding) {convertfrom convertto names system} |
||||
set ::subCmd(event) {add delete generate info} |
||||
set ::subCmd(file) {atime attributes channels copy delete dirname executable exists extension isdirectory isfile join link lstat mkdir mtime nativename normalize owned pathtype readable readlink rename rootname separator size split stat system tail type volumes writable} |
||||
set ::subCmd(font) {actual configure create delete families measure metrics names} |
||||
set ::subCmd(history) {add change clear event info keep nextid redo} |
||||
set ::subCmd(image) {create delete height inuse names type types width} |
||||
set ::subCmd(info) {args body cmdcount commands complete default exists functions globals hostname level library loaded locals nameofexecutable patchlevel procs script sharedlibextension tclversion vars} |
||||
set ::subCmd(interp) {alias aliases create delete eval exists expose hidden hide invokehidden issafe marktrusted recursionlimit share slaves target transfer} |
||||
set ::subCmd(namespace) {children code current delete eval exists export forget import inscope origin parent qualifiers tail which} |
||||
set ::subCmd(option) {add clear get readfile} |
||||
set ::subCmd(package) {forget ifneeded names present provide require unknown vcompare versions vsatisfies} |
||||
set ::subCmd(selection) {clear get handle own} |
||||
set ::subCmd(string) {bytelength compare equal first index is last length map match range repeat replace tolower totitle toupper trim trimleft trimright wordend wordstart} |
||||
set {::subCmd(string is)} {alnum alpha ascii boolean control digit double false graph integer lower print punct space true upper wordchar xdigit} |
||||
set ::subCmd(tk) {appname caret scaling useinputmethods windowingsystem} |
||||
set ::subCmd(tkwait) {variable visibility window} |
||||
set ::subCmd(trace) {add info remove variable vdelete vinfo} |
||||
set {::subCmd(trace add)} {command execution variable} |
||||
set {::subCmd(trace info)} {command execution variable} |
||||
set {::subCmd(trace remove)} {command execution variable} |
||||
set ::subCmd(update) idletasks |
||||
set ::subCmd(winfo) {atom atomname cells children class colormapfull containing depth exists fpixels geometry height id interps ismapped manager name parent pathname pixels pointerx pointerxy pointery reqheight reqwidth rgb rootx rooty screen screencells screendepth screenheight screenmmheight screenmmwidth screenvisual screenwidth server toplevel viewable visual visualid visualsavailable vrootheight vrootwidth vrootx vrooty width x y} |
||||
set ::subCmd(wm) {aspect attributes client colormapwindows command deiconify focusmodel frame geometry grid group iconbitmap iconify iconmask iconname iconphoto iconposition iconwindow maxsize minsize overrideredirect positionfrom protocol resizable sizefrom stackorder state title transient withdraw} |
||||
|
||||
set {::option(. cget)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(. configure)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,button cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,button configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,button configure -textvariable)} n |
||||
set {::option(_obj,canvas cget)} {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set {::option(_obj,canvas configure)} {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set {::option(_obj,checkbutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -underline -variable -width -wraplength} |
||||
set {::option(_obj,checkbutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -underline -variable -width -wraplength} |
||||
set {::option(_obj,checkbutton configure -textvariable)} n |
||||
set {::option(_obj,checkbutton configure -variable)} n |
||||
set {::option(_obj,entry cget)} {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(_obj,entry configure)} {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(_obj,entry configure -textvariable)} n |
||||
set {::option(_obj,frame cget)} {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,frame configure)} {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,label cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,label configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,label configure -textvariable)} n |
||||
set {::option(_obj,labelframe cget)} {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,labelframe configure)} {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,listbox cget)} {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(_obj,listbox configure)} {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(_obj,listbox configure -listvariable)} n |
||||
set {::option(_obj,menu cget)} {-activebackground -activeborderwidth -activeforeground -background -bd -bg -borderwidth -cursor -disabledforeground -fg -font -foreground -postcommand -relief -selectcolor -takefocus -tearoff -tearoffcommand -title -type} |
||||
set {::option(_obj,menu configure)} {-activebackground -activeborderwidth -activeforeground -background -bd -bg -borderwidth -cursor -disabledforeground -fg -font -foreground -postcommand -relief -selectcolor -takefocus -tearoff -tearoffcommand -title -type} |
||||
set {::option(_obj,menubutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,menubutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(_obj,menubutton configure -textvariable)} n |
||||
set {::option(_obj,message cget)} {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(_obj,message configure)} {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(_obj,message configure -textvariable)} n |
||||
set {::option(_obj,panedwindow cget)} {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set {::option(_obj,panedwindow configure)} {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set {::option(_obj,radiobutton cget)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -underline -value -variable -width -wraplength} |
||||
set {::option(_obj,radiobutton configure)} {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -underline -value -variable -width -wraplength} |
||||
set {::option(_obj,radiobutton configure -textvariable)} n |
||||
set {::option(_obj,radiobutton configure -variable)} n |
||||
set {::option(_obj,scale cget)} {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(_obj,scale configure)} {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(_obj,scale configure -variable)} n |
||||
set {::option(_obj,scrollbar cget)} {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set {::option(_obj,scrollbar configure)} {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set {::option(_obj,spinbox cget)} {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(_obj,spinbox configure)} {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(_obj,spinbox configure -textvariable)} n |
||||
set {::option(_obj,text cget)} {-autoseparators -background -bd -bg -borderwidth -cursor -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -state -tabs -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set {::option(_obj,text configure)} {-autoseparators -background -bd -bg -borderwidth -cursor -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -state -tabs -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set {::option(_obj,toplevel cget)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set {::option(_obj,toplevel configure)} {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(bell) {-displayof -nice} |
||||
set ::option(button) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -default -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -overrelief -padx -pady -relief -repeatdelay -repeatinterval -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(button -textvariable)} n |
||||
set ::option(canvas) {-background -bd -bg -borderwidth -closeenough -confine -cursor -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -offset -relief -scrollregion -selectbackground -selectborderwidth -selectforeground -state -takefocus -width -xscrollcommand -xscrollincrement -yscrollcommand -yscrollincrement} |
||||
set ::option(checkbutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -offvalue -onvalue -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -underline -variable -width -wraplength} |
||||
set {::option(checkbutton -textvariable)} n |
||||
set {::option(checkbutton -variable)} n |
||||
set {::option(clock clicks)} -milliseconds |
||||
set {::option(clock format)} {-format -gmt} |
||||
set {::option(clock scan)} {-base -gmt} |
||||
set ::option(entry) {-background -bd -bg -borderwidth -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -readonlybackground -relief -selectbackground -selectborderwidth -selectforeground -show -state -takefocus -textvariable -validate -validatecommand -vcmd -width -xscrollcommand} |
||||
set {::option(entry -textvariable)} n |
||||
set ::option(exec) {-- -keepnewline} |
||||
set ::option(fconfigure) {-blocking -buffering -buffersize -encoding -eofchar -error -handshake -lasterror -mode -peername -pollinterval -queue -sockname -sysbuffer -timeout -translation -ttycontrol -ttystatus -xchar} |
||||
set ::option(fcopy) {-command -size} |
||||
set {::option(file attributes)} {-group -owner -permissions} |
||||
set {::option(file copy)} {-- -force} |
||||
set {::option(file delete)} {-- -force} |
||||
set {::option(file link)} {-hard -symbolic} |
||||
set {::option(file rename)} {-- -force} |
||||
set ::option(focus) {-displayof -force -lastfor} |
||||
set ::option(frame) {-bd -borderwidth -class -relief -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(glob) {-- -directory -join -nocomplain -path -tails -types} |
||||
set {::option(glob -directory)} 1 |
||||
set {::option(glob -path)} 1 |
||||
set {::option(glob -types)} 1 |
||||
set {::option(interp invokehidden)} {-- -global} |
||||
set ::option(label) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -justify -padx -pady -relief -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(label -textvariable)} n |
||||
set ::option(labelframe) {-bd -borderwidth -class -fg -font -foreground -labelanchor -labelwidget -relief -text -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(listbox) {-activestyle -background -bd -bg -borderwidth -cursor -disabledforeground -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -relief -selectbackground -selectborderwidth -selectforeground -selectmode -setgrid -state -takefocus -width -xscrollcommand -yscrollcommand -listvariable} |
||||
set {::option(listbox -listvariable)} n |
||||
set ::option(lsearch) {-all -ascii -decreasing -dictionary -exact -glob -increasing -inline -integer -not -real -regexp -sorted -start} |
||||
set {::option(lsearch -start)} 1 |
||||
set ::option(lsort) {-ascii -command -decreasing -dictionary -increasing -index -integer -real -unique} |
||||
set {::option(lsort -command)} 1 |
||||
set {::option(lsort -index)} 1 |
||||
set ::option(menu) {-activebackground -activeborderwidth -activeforeground -background -bd -bg -borderwidth -cursor -disabledforeground -fg -font -foreground -postcommand -relief -selectcolor -takefocus -tearoff -tearoffcommand -title -type} |
||||
set ::option(menubutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -cursor -direction -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -menu -padx -pady -relief -compound -state -takefocus -text -textvariable -underline -width -wraplength} |
||||
set {::option(menubutton -textvariable)} n |
||||
set ::option(message) {-anchor -aspect -background -bd -bg -borderwidth -cursor -fg -font -foreground -highlightbackground -highlightcolor -highlightthickness -justify -padx -pady -relief -takefocus -text -textvariable -width} |
||||
set {::option(message -textvariable)} n |
||||
set {::option(namespace which)} {-variable -command} |
||||
set {::option(namespace which -variable)} v |
||||
set ::option(panedwindow) {-background -bd -bg -borderwidth -cursor -handlepad -handlesize -height -opaqueresize -orient -relief -sashcursor -sashpad -sashrelief -sashwidth -showhandle -width} |
||||
set ::option(puts) -nonewline |
||||
set ::option(radiobutton) {-activebackground -activeforeground -anchor -background -bd -bg -bitmap -borderwidth -command -compound -cursor -disabledforeground -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -image -indicatoron -justify -offrelief -overrelief -padx -pady -relief -selectcolor -selectimage -state -takefocus -text -textvariable -underline -value -variable -width -wraplength} |
||||
set {::option(radiobutton -textvariable)} n |
||||
set {::option(radiobutton -variable)} n |
||||
set ::option(regexp) {-- -about -all -expanded -indices -inline -line -lineanchor -linestop -nocase -start} |
||||
set {::option(regexp -start)} 1 |
||||
set ::option(regsub) {-- -all -expanded -line -lineanchor -linestop -nocase -start} |
||||
set {::option(regsub -start)} 1 |
||||
set ::option(return) {-code -errorcode -errorinfo} |
||||
set ::option(scale) {-activebackground -background -bigincrement -bd -bg -borderwidth -command -cursor -digits -fg -font -foreground -from -highlightbackground -highlightcolor -highlightthickness -label -length -orient -relief -repeatdelay -repeatinterval -resolution -showvalue -sliderlength -sliderrelief -state -takefocus -tickinterval -to -troughcolor -variable -width} |
||||
set {::option(scale -variable)} n |
||||
set ::option(scrollbar) {-activebackground -activerelief -background -bd -bg -borderwidth -command -cursor -elementborderwidth -highlightbackground -highlightcolor -highlightthickness -jump -orient -relief -repeatdelay -repeatinterval -takefocus -troughcolor -width} |
||||
set ::option(send) {-- -async -displayof} |
||||
set {::option(send -displayof)} 1 |
||||
set ::option(spinbox) {-activebackground -background -bd -bg -borderwidth -buttonbackground -buttoncursor -buttondownrelief -buttonuprelief -command -cursor -disabledbackground -disabledforeground -exportselection -fg -font -foreground -format -from -highlightbackground -highlightcolor -highlightthickness -increment -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -invalidcommand -invcmd -justify -relief -readonlybackground -repeatdelay -repeatinterval -selectbackground -selectborderwidth -selectforeground -state -takefocus -textvariable -to -validate -validatecommand -values -vcmd -width -wrap -xscrollcommand} |
||||
set {::option(spinbox -textvariable)} n |
||||
set {::option(string compare)} {-length -nocase} |
||||
set {::option(string compare -length)} 1 |
||||
set {::option(string equal)} {-length -nocase} |
||||
set {::option(string equal -length)} 1 |
||||
set {::option(string is)} {-failindex -strict} |
||||
set {::option(string is -failindex)} n |
||||
set {::option(string map)} -nocase |
||||
set {::option(string match)} -nocase |
||||
set ::option(subst) {-nobackslashes -nocommands -novariables} |
||||
set ::option(switch) {-- -exact -glob -regexp} |
||||
set ::option(text) {-autoseparators -background -bd -bg -borderwidth -cursor -exportselection -fg -font -foreground -height -highlightbackground -highlightcolor -highlightthickness -insertbackground -insertborderwidth -insertofftime -insertontime -insertwidth -maxundo -padx -pady -relief -selectbackground -selectborderwidth -selectforeground -setgrid -spacing1 -spacing2 -spacing3 -state -tabs -takefocus -undo -width -wrap -xscrollcommand -yscrollcommand} |
||||
set ::option(tk_chooseColor) {-initialcolor -parent -title} |
||||
set ::option(tk_chooseDirectory) {-initialdir -mustexist -parent -title} |
||||
set ::option(tk_getOpenFile) {-defaultextension -filetypes -initialdir -initialfile -multiple -parent -title} |
||||
set ::option(tk_getSaveFile) {-defaultextension -filetypes -initialdir -initialfile -parent -title} |
||||
set ::option(tk_messageBox) {-default -icon -message -parent -title -type} |
||||
set ::option(toplevel) {-bd -borderwidth -class -menu -relief -screen -use -background -bg -colormap -container -cursor -height -highlightbackground -highlightcolor -highlightthickness -padx -pady -takefocus -visual -width} |
||||
set ::option(unset) {-nocomplain --} |
||||
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue