From 4ead9be4468d8d58c027bf6e6616e3b4d6e727eb Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Thu, 22 Aug 2019 18:30:24 +0200 Subject: Complete re-structuring so it's easier to install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Miquel Sabaté Solà --- .Xresources | 11 + .agignore | 15 + .bash_profile | 3 + .bashrc | 151 + .config/dunst/dunstrc | 220 + .config/mimeapps.list | 41 + .emacs.d/.gitignore | 5 + .emacs.d/README.org | 94 + .emacs.d/custom.el | 24 + .emacs.d/gtkrc | 5 + .emacs.d/init.el | 22 + .emacs.d/init.org | 2349 +++++++ .emacs.d/lisp/README.md | 18 + .emacs.d/lisp/g.el | 134 + .emacs.d/org-templates/README.org | 22 + .emacs.d/org-templates/article-full.org | 20 + .emacs.d/org-templates/article.org | 20 + .emacs.d/org.css | 66 + .emacs.d/pre-push | 79 + .emacs.d/snippets/org-mode/header | 8 + .emacs.d/test-startup.sh | 22 + .fonts/fonts/ClickerScript-Regular.ttf | Bin 0 -> 64012 bytes .fonts/fonts/DroidSansMono-Powerline.ttf | Bin 0 -> 118464 bytes .fonts/fonts/DroidSansMonoDotted-Powerline.ttf | Bin 0 -> 118712 bytes .fonts/fonts/DroidSansMonoSlashed-Powerline.ttf | Bin 0 -> 118760 bytes .fonts/fonts/Inconsolata-dz-Powerline.otf | Bin 0 -> 54612 bytes .fonts/fonts/Inconsolata-dz.otf | Bin 0 -> 52264 bytes .fonts/fonts/Menlo-Powerline.otf | Bin 0 -> 487212 bytes .fonts/fonts/fonts.dir | 1 + .fonts/fonts/mensch-Powerline.otf | Bin 0 -> 488268 bytes .gemrc | 3 + .gitcompletion.sh | 3096 ++++++++ .gitconfig | 35 + .gitignore | 5 +- .gitmodules | 4 +- .global.gitignore | 20 + .gnupg/gpg-agent.conf | 5 + .gnupg/gpg.conf | 103 + .hgrc | 28 + .i3/config | 244 + .i3status.conf | 84 + .inputrc | 8 + .irbrc | 46 + .mbsyncrc | 119 + .psqlrc | 20 + .rails.gitignore | 16 + .rake_completion | 69 + .rvmrc | 1 + .tmux.conf | 123 + .travis.yml | 9 + .valgrindrc | 12 + .vim/autocmd.vim | 22 + .vim/bundle/Vundle.vim | 1 + .vim/bundle/Vundle.vim.git | 1 + .vim/bundles.vim | 38 + .vim/colors/xoria256.vim | 142 + .vimrc | 171 + .xinitrc | 60 + Images/mssola-gran.jpg | Bin 0 -> 178886 bytes Images/mssola.jpg | Bin 0 -> 29781 bytes README.org | 28 +- Xresources | 11 - agignore | 15 - bash_profile | 3 - bashrc | 151 - bin/emacsclient-a-nw | 0 config/dunst/dunstrc | 220 - config/mimeapps.list | 41 - emacs/README.org | 94 - emacs/custom.el | 24 - emacs/gtkrc | 5 - emacs/init.el | 22 - emacs/init.org | 2349 ------- emacs/lisp/README.md | 18 - emacs/lisp/g.el | 134 - emacs/org.css | 66 - emacs/pre-push | 79 - emacs/snippets/org-mode/header | 8 - emacs/test-startup.sh | 22 - fonts/ClickerScript-Regular.ttf | Bin 64012 -> 0 bytes fonts/DroidSansMono-Powerline.ttf | Bin 118464 -> 0 bytes fonts/DroidSansMonoDotted-Powerline.ttf | Bin 118712 -> 0 bytes fonts/DroidSansMonoSlashed-Powerline.ttf | Bin 118760 -> 0 bytes fonts/Inconsolata-dz-Powerline.otf | Bin 54612 -> 0 bytes fonts/Inconsolata-dz.otf | Bin 52264 -> 0 bytes fonts/Menlo-Powerline.otf | Bin 487212 -> 0 bytes fonts/fonts.dir | 1 - fonts/mensch-Powerline.otf | Bin 488268 -> 0 bytes gemrc | 3 - gitcompletion.sh | 3096 -------- gitconfig | 35 - global.gitignore | 20 - gnupg/gpg-agent.conf | 5 - gnupg/gpg.conf | 103 - hgrc | 28 - i3/config | 244 - i3status.conf | 84 - inputrc | 8 - install.sh | 167 +- irbrc | 46 - kte/README.md | 36 - kte/colors/mssola-solarized.kateschema | 6870 ------------------ kte/colors/mssola.kateschema | 6757 ------------------ kte/colors/xoria256.kateschema | 8594 ----------------------- kte/global.kateconfig | 14 - kte/kde.kateconfig | 6 - mbsyncrc | 119 - org/README.org | 22 - org/article-full.org | 20 - org/article.org | 20 - psqlrc | 20 - rails.gitignore | 16 - rake_completion | 69 - rvmrc | 1 - tmux.conf | 123 - valgrindrc | 12 - vim/autocmd.vim | 22 - vim/bundle/Vundle.vim | 1 - vim/bundles.vim | 38 - vim/colors/xoria256.vim | 142 - vimrc | 171 - xinitrc | 60 - 122 files changed, 7897 insertions(+), 30181 deletions(-) create mode 100644 .Xresources create mode 100644 .agignore create mode 100644 .bash_profile create mode 100644 .bashrc create mode 100644 .config/dunst/dunstrc create mode 100644 .config/mimeapps.list create mode 100644 .emacs.d/.gitignore create mode 100644 .emacs.d/README.org create mode 100644 .emacs.d/custom.el create mode 100644 .emacs.d/gtkrc create mode 100644 .emacs.d/init.el create mode 100644 .emacs.d/init.org create mode 100644 .emacs.d/lisp/README.md create mode 100644 .emacs.d/lisp/g.el create mode 100644 .emacs.d/org-templates/README.org create mode 100644 .emacs.d/org-templates/article-full.org create mode 100644 .emacs.d/org-templates/article.org create mode 100644 .emacs.d/org.css create mode 100755 .emacs.d/pre-push create mode 100644 .emacs.d/snippets/org-mode/header create mode 100755 .emacs.d/test-startup.sh create mode 100644 .fonts/fonts/ClickerScript-Regular.ttf create mode 100644 .fonts/fonts/DroidSansMono-Powerline.ttf create mode 100644 .fonts/fonts/DroidSansMonoDotted-Powerline.ttf create mode 100644 .fonts/fonts/DroidSansMonoSlashed-Powerline.ttf create mode 100644 .fonts/fonts/Inconsolata-dz-Powerline.otf create mode 100644 .fonts/fonts/Inconsolata-dz.otf create mode 100644 .fonts/fonts/Menlo-Powerline.otf create mode 100644 .fonts/fonts/fonts.dir create mode 100644 .fonts/fonts/mensch-Powerline.otf create mode 100644 .gemrc create mode 100644 .gitcompletion.sh create mode 100644 .gitconfig create mode 100644 .global.gitignore create mode 100644 .gnupg/gpg-agent.conf create mode 100644 .gnupg/gpg.conf create mode 100644 .hgrc create mode 100644 .i3/config create mode 100644 .i3status.conf create mode 100644 .inputrc create mode 100644 .irbrc create mode 100644 .mbsyncrc create mode 100644 .psqlrc create mode 100644 .rails.gitignore create mode 100755 .rake_completion create mode 100644 .rvmrc create mode 100644 .tmux.conf create mode 100644 .valgrindrc create mode 100644 .vim/autocmd.vim create mode 160000 .vim/bundle/Vundle.vim create mode 160000 .vim/bundle/Vundle.vim.git create mode 100644 .vim/bundles.vim create mode 100644 .vim/colors/xoria256.vim create mode 100644 .vimrc create mode 100644 .xinitrc create mode 100644 Images/mssola-gran.jpg create mode 100644 Images/mssola.jpg delete mode 100644 Xresources delete mode 100644 agignore delete mode 100644 bash_profile delete mode 100644 bashrc mode change 100644 => 100755 bin/emacsclient-a-nw delete mode 100644 config/dunst/dunstrc delete mode 100644 config/mimeapps.list delete mode 100644 emacs/README.org delete mode 100644 emacs/custom.el delete mode 100644 emacs/gtkrc delete mode 100644 emacs/init.el delete mode 100644 emacs/init.org delete mode 100644 emacs/lisp/README.md delete mode 100644 emacs/lisp/g.el delete mode 100644 emacs/org.css delete mode 100755 emacs/pre-push delete mode 100644 emacs/snippets/org-mode/header delete mode 100755 emacs/test-startup.sh delete mode 100644 fonts/ClickerScript-Regular.ttf delete mode 100644 fonts/DroidSansMono-Powerline.ttf delete mode 100644 fonts/DroidSansMonoDotted-Powerline.ttf delete mode 100644 fonts/DroidSansMonoSlashed-Powerline.ttf delete mode 100644 fonts/Inconsolata-dz-Powerline.otf delete mode 100644 fonts/Inconsolata-dz.otf delete mode 100644 fonts/Menlo-Powerline.otf delete mode 100644 fonts/fonts.dir delete mode 100644 fonts/mensch-Powerline.otf delete mode 100644 gemrc delete mode 100644 gitcompletion.sh delete mode 100644 gitconfig delete mode 100644 global.gitignore delete mode 100644 gnupg/gpg-agent.conf delete mode 100644 gnupg/gpg.conf delete mode 100644 hgrc delete mode 100644 i3/config delete mode 100644 i3status.conf delete mode 100644 inputrc delete mode 100644 irbrc delete mode 100644 kte/README.md delete mode 100644 kte/colors/mssola-solarized.kateschema delete mode 100644 kte/colors/mssola.kateschema delete mode 100644 kte/colors/xoria256.kateschema delete mode 100644 kte/global.kateconfig delete mode 100644 kte/kde.kateconfig delete mode 100644 mbsyncrc delete mode 100644 org/README.org delete mode 100644 org/article-full.org delete mode 100644 org/article.org delete mode 100644 psqlrc delete mode 100644 rails.gitignore delete mode 100755 rake_completion delete mode 100644 rvmrc delete mode 100644 tmux.conf delete mode 100644 valgrindrc delete mode 100644 vim/autocmd.vim delete mode 160000 vim/bundle/Vundle.vim delete mode 100644 vim/bundles.vim delete mode 100644 vim/colors/xoria256.vim delete mode 100644 vimrc delete mode 100644 xinitrc diff --git a/.Xresources b/.Xresources new file mode 100644 index 0000000..7af156a --- /dev/null +++ b/.Xresources @@ -0,0 +1,11 @@ +Xcursor.theme: breeze_cursors +Xcursor.size: 16 + +# Taken from https://github.com/ereslibre/dotfiles. +Xft.dpi: 96 +Xft.autohint: 0 +Xft.lcdfilter: lcddefault +Xft.hintstyle: hintfull +Xft.hinting: 1 +Xft.antialias: 1 +Xft.rgba: rgb diff --git a/.agignore b/.agignore new file mode 100644 index 0000000..d5345cd --- /dev/null +++ b/.agignore @@ -0,0 +1,15 @@ +.yardoc +public/images +public/system +data +log +tmp +*.exe +*.so +*.dat +.git +.hg +.svn +build +node_modules +vendor diff --git a/.bash_profile b/.bash_profile new file mode 100644 index 0000000..5bc00ed --- /dev/null +++ b/.bash_profile @@ -0,0 +1,3 @@ +[[ -s ~/.bashrc ]] && source ~/.bashrc + +stty -ixon -ixoff diff --git a/.bashrc b/.bashrc new file mode 100644 index 0000000..cd3ee78 --- /dev/null +++ b/.bashrc @@ -0,0 +1,151 @@ +## +# Locale. + +# Set LC_ALL always to UTF-8. +if [ "$(locale -a | grep ca_ES.utf8)" != "" ]; then + export LC_ALL=ca_ES.utf8 +else + if [ "$(locale -a | grep en_US.utf8)" != "" ]; then + export LC_ALL=en_US.utf8 + else + echo "[Warning] Could not set up a proper locale." \ + "There is probably something missing on your host machine..." + fi +fi + +## +# Basics. + +# Beautifying ls command. +alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' +alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' +alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' +alias lisa='ls -lisa --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' + +# Alias related to cd +alias ..='cd ..' +alias cd..='cd ..' + +## +# Utility functions. + +# Sources the given file if it really exists. +source_maybe() { + if [ -f "$1" ]; then + source "$1" + fi +} + +## +# Editors & terminals. + +# Set GNU Emacs as the default editor. You can find this `emacsclient-a-nw` +# executable in the `bin` directory of my dotfiles. That being said, in the +# `bin` directory there is a globally installed script called `e`. This is the +# script that will be called most of the times from the CLI for reaching out to +# the default editor. +export EDITOR=emacsclient-a-nw +export VISUAL=emacsclient-a-nw +alias vi=vim + +# Alias xdg-open to just xo +alias xo=xdg-open + +# We want a full-fledged 256-color terminal. +TERM=xterm-256color + +# Set the LESS and the PAGER environment variables. +export LESS="FSRX" +export PAGER=less + +# git thingies. +source_maybe "$HOME/.gitcompletion.sh" +alias gti=git + +# Setting up PS1. +PS1='\u:\w$(__git_ps1 "\[\033[0;32m\]@%s\[\033[0m\]\]") $ ' + +## +# Programming languages and environments. + +# Rake completion +if [ -f "$HOME/.rake_completion" ]; then + complete -C "$HOME/.rake_completion" -o default rake +fi + +# Alias bundle exec +alias be='bundle exec' + +# After experimenting with GCC & Clang, I'm sticking with GCC. +export CC=/usr/bin/gcc +export CXX=/usr/bin/g++ + +# Go things +export GOROOT_BOOTSTRAP=/opt/go +export GOROOT=$HOME/Projects/go +export GOPATH=$HOME/Projects/golang +export PATH=$GOROOT/bin:$PATH:$GOPATH/bin + +## +# Misc. + +# The g utility. See: https://github.com/mssola/g +source_maybe "$HOME/.g.sh" +source_maybe "$HOME/.gcompletion.sh" + +# Complete the `docker` command if possible. +source_maybe "$HOME/.dockercompletion.sh" + +# Add the `bin` dir to the path if possible. See: +# https://github.com/mssola/dotfiles. +if [ -d "$HOME/bin" ]; then + export PATH=$HOME/bin:$PATH +fi + +# Some packages install inside of ~/.local/bin +export PATH=$HOME/.local/bin:$PATH + +# Some other misc. alias. +alias iosc="osc -A https://api.suse.de" +alias ag='ag --nocolor --path-to-ignore ~/.agignore' +alias random_string="cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1" + +# Cargo environment. +source_maybe "$HOME/.cargo/env" + +# SUSE +export SALT_DIR="$HOME/Projects/kubic-project/salt" +export SALT_PATH="$HOME/Projects/kubic-project/salt" + +export NODE_VERSION="8" + +# Finally RVM requires it to be the last thing on the PATH for whatever reason. +[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" +export PATH="$PATH:$HOME/.rvm/bin" + +## +# Lastly I had some problems with the GPG agent recently. So I copied a solution +# from https://github.com/jessfraz/dotfiles + +# Use a tty for gpg +GPG_TTY=$(tty) +export GPG_TTY + +# Start the gpg-agent if not already running +if ! pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1; then + gpg-connect-agent /bye >/dev/null 2>&1 + gpg-connect-agent updatestartuptty /bye >/dev/null +fi + +# Set SSH to use gpg-agent +unset SSH_AGENT_PID +if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then + export SSH_AUTH_SOCK="/run/user/$UID/gnupg/S.gpg-agent.ssh" +fi + +# Add alias for ssh to update the tty +alias ssh="gpg-connect-agent updatestartuptty /bye >/dev/null; ssh" + +# Handy alias for the ip command +alias ip="ip --color" +alias ipb="ip --color --brief" diff --git a/.config/dunst/dunstrc b/.config/dunst/dunstrc new file mode 100644 index 0000000..2985a88 --- /dev/null +++ b/.config/dunst/dunstrc @@ -0,0 +1,220 @@ +[global] + font = Monospace 8 + + # The icon has to be on the left + icon_position = left + + # allow a small subset of html markup: + # bold + # italic + # strikethrough + # underline + # + # for a complete reference see http://developer.gnome.org/pango/stable/PangoMarkupFormat.html + # If markup is not allowed, those tags will be stripped out of the message. + allow_markup = yes + + # The format of the message. Possible variables are: + # %a appname + # %s summary + # %b body + # %i iconname (including its path) + # %I iconname (without its path) + # %p progress value if set ([ 0%] to [100%]) or nothing + # Markup is allowed + format = "%s\n%b" + + # Sort messages by urgency + sort = yes + + # Show how many messages are currently hidden (because of geometry) + indicate_hidden = yes + + # alignment of message text. + # Possible values are "left", "center" and "right" + alignment = left + + # The frequency with wich text that is longer than the notification + # window allows bounces back and forth. + # This option conflicts with 'word_wrap'. + # Set to 0 to disable + bounce_freq = 0 + + # show age of message if message is older than show_age_threshold seconds. + # set to -1 to disable + show_age_threshold = 60 + + # split notifications into multiple lines if they don't fit into geometry + word_wrap = yes + + # ignore newlines '\n' in notifications + ignore_newline = no + + + # the geometry of the window + # geometry [{width}]x{height}][+/-{x}+/-{y}] + # The geometry of the message window. + # The height is measured in number of notifications everything else in pixels. If the width + # is omitted but the height is given ("-geometry x2"), the message window + # expands over the whole screen (dmenu-like). If width is 0, + # the window expands to the longest message displayed. + # A positive x is measured from the left, a negative from the + # right side of the screen. Y is measured from the top and down respectevly. + # The width can be negative. In this case the actual width is the + # screen width minus the width defined in within the geometry option. + geometry = "300x5-30+20" + + # The transparency of the window. range: [0; 100] + # This option will only work if a compositing windowmanager is present (e.g. xcompmgr, compiz, etc..) + transparency = 0 + + # Don't remove messages, if the user is idle (no mouse or keyboard input) + # for longer than idle_threshold seconds. + # Set to 0 to disable. + idle_threshold = 120 + + # Which monitor should the notifications be displayed on. + monitor = 0 + + # Display notification on focused monitor. Possible modes are: + # mouse: follow mouse pointer + # keyboard: follow window with keyboard focus + # none: don't follow anything + # + # "keyboard" needs a windowmanager that exports the _NET_ACTIVE_WINDOW property. + # This should be the case for almost all modern windowmanagers. + # + # If this option is set to mouse or keyboard, the monitor option will be + # ignored. + follow = mouse + + # should a notification popped up from history be sticky or + # timeout as if it would normally do. + sticky_history = yes + + # The height of a single line. If the height is smaller than the font height, + # it will get raised to the font height. + # This adds empty space above and under the text. + line_height = 0 + + # Draw a line of 'separatpr_height' pixel height between two notifications. + # Set to 0 to disable + separator_height = 2 + + # padding between text and separator + padding = 8 + + # horizontal padding + horizontal_padding = 8 + + # Define a color for the separator. + # possible values are: + # * auto: dunst tries to find a color fitting to the background + # * foreground: use the same color as the foreground + # * frame: use the same color as the frame. + # * anything else will be interpreted as a X color + separator_color = frame + + # print a notification on startup + # This is mainly for error detection, since dbus (re-)starts dunst + # automatically after a crash. + startup_notification = false + + # dmenu path + dmenu = /usr/bin/dmenu -p dunst: + + # browser for opening urls in context menu + browser = /usr/bin/firefox -new-tab + +[frame] + width = 3 + color = "#aaaaaa" + +[shortcuts] + # shortcuts are specified as [modifier+][modifier+]...key + # available modifiers are 'ctrl', 'mod1' (the alt-key), 'mod2', 'mod3' + # and 'mod4' (windows-key) + # xev might be helpful to find names for keys + + # close notification + close = ctrl+space + + # close all notifications + close_all = ctrl+shift+space + + # redisplay last message(s) + # On the US keyboard layout 'grave' is normally above TAB and left of '1'. + history = ctrl+grave + + # context menu + context = ctrl+shift+period + +[urgency_low] + # IMPORTANT: colors have to be defined in quotation marks. + # Otherwise the '#' and following would be interpreted as a comment. + background = "#222222" + foreground = "#888888" + timeout = 10 + +[urgency_normal] + background = "#285577" + foreground = "#ffffff" + timeout = 10 + +[urgency_critical] + background = "#900000" + foreground = "#ffffff" + timeout = 0 + + +# Every section that isn't one of the above is interpreted as a rules +# to override settings for certain messages. +# Messages can be matched by 'appname', 'summary', 'body' or 'icon' +# and you can override the 'timeout', 'urgency', 'foreground', 'background' +# and 'format'. +# Shell-like globbing will get expanded. +# +# SCRIPTING +# you can specify a script that gets run when the rule matches by setting +# the 'script' option. +# The script will be called as follows: +# script appname summary body icon urgency +# where urgency can be "LOW", "NORMAL" or "CRITICAL". +# +# NOTE: if you don't want a notification to be displayed, set the format to "" +# NOTE: It might be helpful to run dunst -print in a terminal in order to find +# fitting options for rules. + +#[espeak] +# summary = "*" +# script = dunst_espeak.sh + +#[script-test] +# summary = "*script*" +# script = dunst_test.sh + +#[ignore] +## This notification will not be displayed +# summary = "foobar" +# format = "" + +#[signed_on] +# appname = Pidgin +# summary = "*signed on*" +# urgency = low +# +#[signed_off] +# appname = Pidgin +# summary = *signed off* +# urgency = low +# +#[says] +# appname = Pidgin +# summary = *says* +# urgency = critical +# +#[twitter] +# appname = Pidgin +# summary = *twitter.com* +# urgency = normal +# diff --git a/.config/mimeapps.list b/.config/mimeapps.list new file mode 100644 index 0000000..cfe79a0 --- /dev/null +++ b/.config/mimeapps.list @@ -0,0 +1,41 @@ +[Default Applications] +x-scheme-handler/http=firefox.desktop +x-scheme-handler/https=firefox.desktop +x-scheme-handler/ftp=firefox.desktop +x-scheme-handler/chrome=firefox.desktop +text/html=firefox.desktop +application/x-extension-htm=firefox.desktop +application/x-extension-html=firefox.desktop +application/x-extension-shtml=firefox.desktop +application/xhtml+xml=firefox.desktop +application/x-extension-xhtml=firefox.desktop +application/x-extension-xht=firefox.desktop +application/pdf=firefox.desktop +application/x-pdf=firefox.desktop +application/x-bzpdf=firefox.desktop +application/x-gzpdf=firefox.desktop +image/jpeg=kolourpaint.desktop +image/jpg=kolourpaint.desktop +image/png=kolourpaint.desktop + +[Added Associations] +x-scheme-handler/http=firefox.desktop; +x-scheme-handler/https=firefox.desktop; +x-scheme-handler/ftp=firefox.desktop; +x-scheme-handler/chrome=firefox.desktop; +text/html=firefox.desktop; +application/x-extension-htm=firefox.desktop; +application/x-extension-html=firefox.desktop; +application/x-extension-shtml=firefox.desktop; +application/xhtml+xml=firefox.desktop; +application/x-extension-xhtml=firefox.desktop; +application/x-extension-xht=firefox.desktop; +application/pdf=firefox.desktop +application/x-pdf=firefox.desktop +application/x-bzpdf=firefox.desktop +application/x-gzpdf=firefox.desktop +image/jpeg=org.kde.gwenview.desktop;kolourpaint.desktop; +image/jpg=kolourpaint.desktop +image/png=kolourpaint.desktop +application/octet-stream=startcenter.desktop; +application/vnd.oasis.opendocument.text=writer.desktop; diff --git a/.emacs.d/.gitignore b/.emacs.d/.gitignore new file mode 100644 index 0000000..3406897 --- /dev/null +++ b/.emacs.d/.gitignore @@ -0,0 +1,5 @@ +*.html +lisp/*.elc +org-templates/*.pdf +org-templates/*.tex +org-templates/auto \ No newline at end of file diff --git a/.emacs.d/README.org b/.emacs.d/README.org new file mode 100644 index 0000000..517908a --- /dev/null +++ b/.emacs.d/README.org @@ -0,0 +1,94 @@ +#+TITLE: GNU Emacs configuration +#+AUTHOR: Miquel Sabaté Solà +#+EMAIL: mikisabate@gmail.com + +* About this + +I'm following a literate programming approach for my GNU Emacs +configuration. The basic workflow is that on the first run the =init.el= file +will replace itself with a tangled (=org-babel=) version of itself. Therefore, +all changes should go into the =init.org= file. Moreover, I've added a function +that is executed on save which generates and compiles new versions of the +=init.el= file. + +I run GNU Emacs in daemon mode, but I don't use systemd for that. Instead, in +I'm using the =-a= argument of =emacsclient= with an empty string. This +instructs =emacsclient= to spawn a new server if there isn't one already. This +means that the first time around it will take some time, but in the next time +everything will be alright. + +=Supported versions=: GNU Emacs 25.x and 26.x. + +* Dependencies + +First of all, install the [[https://github.com/mssola/soria][soria]] color theme. This should already be handled by +the install script. Then make sure to install the following: + +- =calibre=: a markdown to HTML converter. +- =spell= for spell checking. +- A LaTeX to PDF converter for exporting org files to PDF. In openSUSE this is + fixed by installing the =texlive-pdftex= package. +- =mu= and =mu4e= for email. This should be installed from my [[https://build.opensuse.org/package/show/home:mssola/mu][OBS]] project. + +Last but not least, to get a proper Go environment you need to install the +following: + +#+BEGIN_SRC sh +go get -u golang.org/x/tools/cmd/goimports +go get -u github.com/rogpeppe/godef +go get -u github.com/dougm/goflymake +go get -u github.com/nsf/gocode +#+END_SRC + +* Developing + +I've added a git =pre-push= hook which syncs the =init.html= and the =org.css= +files into my personal server. + +* Installing + +The installation process of my GNU Emacs configuration should already be handled +by the =install.sh= script that can be found in the root of this project. If you +want to do it manually: + +- Create the =~/.emacs.d= directory if it has not been created yet. +- Copy the =init.el= into the =~/.emacs.d= directory. This is the only file that + should be copied instead of linked because it will get replaced on the first run + by =org-babel=. +- Link the =init.org=, =custom.el= and =gtkrc= files into the =~/.emacs.d= + directory. +- Create the =~/.emacs.d/lisp= subdirectory and link the =lisp/g.el= file there. +- Clone the [[https://github.com/mssola/soria][soria]] project and link the =soria-theme.el= file into the + =~/.emacs.d= directory. + +* Credits + +I've built this file by simply scavenging from other people's emacs.d/dotfiles +repositories. I have taken lots of pieces from here and there, but most notably: + +- [[https://github.com/ereslibre/dotfiles][@ereslibre]] +- [[https://github.com/dmacvicar/dotfiles][@dmacvicar]] +- [[https://github.com/bbatsov/emacs.d][@bbatsov]] +- [[https://github.com/aaronbieber/dotfiles][@aaronbieber]] +- [[https://github.com/purcell/emacs.d][@purcell]] +- [[https://github.com/sachac/emacs.d][@sachac]] ([[http://pages.sachachua.com/.emacs.d/Sacha.html][HTML version]]) +- [[https://github.com/larstvei/dot-emacs][@larstvei]] + +* License + +#+BEGIN_SRC text + Copyright (C) 2014-2019 Miquel Sabaté Solà + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +#+END_SRC diff --git a/.emacs.d/custom.el b/.emacs.d/custom.el new file mode 100644 index 0000000..be16428 --- /dev/null +++ b/.emacs.d/custom.el @@ -0,0 +1,24 @@ +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(ansi-color-names-vector + ["#1c1c1c" "#d78787" "#b9dc92" "#ffffaf" "#87afd7" "#875f87" "#dfafdf" "#d0d0d0"]) + '(custom-safe-themes + (quote + ("44c996124982462f61fa04eeccb9e3661fbe995489eacd3b0f289e37aed29c98" "613d432fab88d34f9a4451bdbe714a31749de6c5a4d9d0bf0929399ad50f1ac6" "03f4de3e9d5df2d34dc4085ea2fe4906edf6377bf02eef7eb3430b97155c1398" "c2ea64b5a0d8042da7ff3979fc03e5cc13fc1e4bc839c5ab464f69c2dada0804" "1c79d160e207fcd2193beaf95bf25d55e15f3237f6943cc04f516e7ef600bdd7" "6a32c414a3d1a493d534a28e7814a4d6055bc607bbf45d57196cd6ee9215461b" "da9b51d7ba5c03589a7cb74f0da136cf4c9b2fdc6c58e48d78f077c8ccca39a9" "6a068d53e7b2bf41ac4a3874ea296b78c3f90cd1fd44d1769812c4c578313539" "8ebd5ccdc11c1e53647c9efc153dbcf0b00a61a519825d2698ce065913cecd35" "7e69e41a60afea0bea1e5f7a89416466db331ec45cbafe47ebec694411c997b8" "3762f105d8ea307cec0ee7cc36dcbce1ab0009ca1ae448fd07e8e8e65647431f" "75080b8936556e23444bd76fcfc042e484a50a403ccb7f36fd190c21f7bf8941" "e2669e7d32201debd97395277167b6a1d93606b9445ebce01b9f878eb980e200" "92eb47cefb2f03abaaaa52c60a0b89845361577c2201d3399d19b944828505f4" "62c1fac02f61eaad07bf39fd461f5c78ee3424ba87a1f5fe91b1bea25475f327" "62f08bc59e1ac24e6df5b5b01fea2da24f2fec201b285ccda9991b7052a3a46a" "ce1c38b72f45eed22f3dfaf7f3f0df4b0b6ed975cc5d2012fb1aad13e8055840" "e8b0224a3bd5da096120bf19c976a29cfe67af41bfe73171348bfe99ee0da62d" "ad1c0d9498ad9344082d47e3a1bb6b75f0d004e0ae8361613b0c9963b23fbb4d" "8e6f5b61626315a98a6b38acfe966800777bf6a1841aa2b812b471772cc17114" "5869e98ef7446c9e2283e5788c0f6e2790676bdb52e9e1e112bb74e2415733c4" "5a3f33eefbcf2a3098bafd22d7ad44358e66c3e844797e7bf9ef552a08dfeb6f" default))) + '(delete-selection-mode nil) + '(electric-indent-mode t) + '(magit-commit-arguments (quote ("--all" "--verbose" "--signoff"))) + '(magit-log-arguments (quote ("--graph" "--color" "--decorate" "-n256"))) + '(markdown-command "/usr/bin/markdown-calibre") + '(package-selected-packages + (quote + (py-autopep8 elpy inf-ruby move-text git-timemachine debbugs async-await request emojify auctex diminish bats-mode bool-flip salt-mode flycheck-rust rust-playground rust-mode vue-mode coffee-mode json-reformat erc-hl-nicks emoji-cheat-sheet-plus helm-circe htmlize cmake-mode websocket markdown-mode go-mode magit evil-leader evil helm projectile org-eldoc evil-commentary yasnippet yaml-mode which-key web-mode wc-mode use-package terraform-mode smart-tabs-mode slim-mode scss-mode rainbow-delimiters php-mode org-evil olivetti mu4e-alert mmm-jinja2 markdown-preview-mode helm-projectile helm-ag go-eldoc go-add-tags flycheck evil-surround evil-org evil-numbers evil-mu4e evil-magit evil-args dockerfile-mode disable-mouse default-text-scale crux cmake-font-lock ag)))) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) diff --git a/.emacs.d/gtkrc b/.emacs.d/gtkrc new file mode 100644 index 0000000..19d2109 --- /dev/null +++ b/.emacs.d/gtkrc @@ -0,0 +1,5 @@ +style "emacsfont" +{ + font_name = "Droid Sans Mono Dotted for Powerline 10" +} +widget "*" style "emacsfont" diff --git a/.emacs.d/init.el b/.emacs.d/init.el new file mode 100644 index 0000000..4129a5c --- /dev/null +++ b/.emacs.d/init.el @@ -0,0 +1,22 @@ +;; This file replaces itself with the actual configuration at first run. +;; Idea and file taken from https://github.com/larstvei/dot-emacs. +;; +;; NOTE DO NOT MODIFY THIS FILE. All changes should go into init.org + +;; We can't tangle without org! +(require 'org) + +;; Follow symlinks +(setq vc-follow-symlinks t) + +;; Open the configuration +(find-file (concat user-emacs-directory "init.org")) + +;; Tangle it +(org-babel-tangle) + +;; Load it +(load-file (concat user-emacs-directory "init.el")) + +;; Finally byte-compile it +(byte-compile-file (concat user-emacs-directory "init.el")) diff --git a/.emacs.d/init.org b/.emacs.d/init.org new file mode 100644 index 0000000..66ed281 --- /dev/null +++ b/.emacs.d/init.org @@ -0,0 +1,2349 @@ +#+TITLE: mssola's GNU Emacs configuration +#+AUTHOR: Miquel Sabaté Solà +#+EMAIL: mikisabate@gmail.com +#+BABEL: :cache yes +#+PROPERTY: header-args :tangle ~/.emacs.d/init.el + +* Preface + +This is my attempt of getting my configuration organized with literate +programming and =org-babel=. I took the workflow I'm following from [[https://github.com/larstvei][@larstvei]]. +The idea is that the =init.el= file will replace itself on the first execution +with the tangled version of this file. This first version will also be +byte-compiled. This means that all changes are to be made on the =init.org= +file *always*. The initial contents of the =init.el= are: + +#+BEGIN_SRC elisp :tangle no +;; We can't tangle without org! +(require 'org) + +;; Follow symlinks +(setq vc-follow-symlinks t) + +;; Open the configuration +(find-file (concat user-emacs-directory "init.org")) + +;; Tangle it +(org-babel-tangle) + +;; Load it +(load-file (concat user-emacs-directory "init.el")) + +;; Finally byte-compile it +(byte-compile-file (concat user-emacs-directory "init.el")) +#+END_SRC + +There is no reason to track the init.el file, and no reason to change this +file. In order to ensure this, make sure to apply the following command after +cloning: + +#+BEGIN_SRC sh :tangle no +git update-index --assume-unchanged emacs/init.el +#+END_SRC + +Moreover, in order to avoid manually tangling and compiling the =init.org= file +on each change, the following function is provided: + +#+BEGIN_SRC elisp +(defun tangle-init () + "If the current buffer is 'init.org' the code-blocks are + tangled, and the tangled file is compiled. Morever, an init.html is generated." + + (when (or (equal (buffer-file-name) + (expand-file-name (concat user-emacs-directory "init.org"))) + (string-suffix-p "dotfiles/emacs/init.org" (buffer-file-name))) + + ;; Avoid running hooks when tangling + (let ((prog-mode-hook nil)) + (org-babel-tangle) + (byte-compile-file (concat user-emacs-directory "init.el"))))) + +(add-hook 'after-save-hook 'tangle-init) +#+END_SRC + +* Introduction + +I'm using GNU Emacs 26, but everything should be working in GNU Emacs 24. There +are some exceptions to this (e.g. webkit support), but these cases are +individually handled. + +#+BEGIN_SRC elisp + (unless (>= emacs-major-version 25) + (error "Don't be a cheap bastard and upgrade to at least GNU Emacs 25")) +#+END_SRC + +Temporarily reduce garbage collection so startup time is lower. Idea taken from +[[https://github.com/purcell][@purcell]]. + +#+BEGIN_SRC elisp + (defconst mssola-initial-gc-cons-threshold gc-cons-threshold + "Initial value of `gc-cons-threshold' at start-up time.") + (setq gc-cons-threshold (* 1024 1024 1024)) + (add-hook 'after-init-hook + (lambda () (setq gc-cons-threshold mssola-initial-gc-cons-threshold))) +#+END_SRC + +User name and email. + +#+BEGIN_SRC elisp +(setq user-full-name "Miquel Sabaté Solà" + user-mail-address "mikisabate@gmail.com") +#+END_SRC + +* Lisp packages +** Custom packages + +Compile the =g.el= script and bind it to @@html:M-g@@. + +#+BEGIN_SRC elisp +(if (file-exists-p (concat user-emacs-directory "lisp/g.elc")) + (load-file (concat user-emacs-directory "lisp/g.elc")) + (byte-compile-file (concat user-emacs-directory "lisp/g.el") t)) +(global-set-key (kbd "M-g") 'g) +#+END_SRC + +** use-package + +Initialize package. + +#+BEGIN_SRC elisp +(require 'package) + +(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") + +(add-to-list 'package-archives + '("melpa" . "http://melpa.milkbox.net/packages/") t) +(add-to-list 'package-archives + '("melpa-stable" . "https://stable.melpa.org/packages/") t) + +(package-initialize) +#+END_SRC + +I'm using use-package to handle my installed packages. I don't know if it's +the best option or what because I haven't tested all the package managers +for Emacs out there. After trying some custom functions to handle +package-install, I decided on use-package because I feel more well-organized. + +#+BEGIN_SRC elisp +(unless (package-installed-p 'use-package) + (package-refresh-contents) + (package-install 'use-package)) + +(require 'use-package) +#+END_SRC + +Some =use-package= calls require =diminish.el= to be available. So, let's +require it here on the very top. + +#+BEGIN_SRC elisp +(use-package diminish + :ensure t) +#+END_SRC + +* General + +** GUI + +I like a minimalistic GUI. Because of this, almost all GUI elements have been +disabled or tweaked in some custom way. + +The frame title is ": ". If we are not editing a file, then the +name of the buffer is displayed (e.g. "mssola: *scratch*"). + +#+BEGIN_SRC elisp + (setq frame-title-format + '((:eval + (concat (user-real-login-name) ": " + (if (buffer-file-name) + (abbreviate-file-name (buffer-file-name)) + "%b"))))) +#+END_SRC + +Disable the menu, scroll and tool bars. At the same time, enable line and column +modes. + +#+BEGIN_SRC elisp + (menu-bar-mode -1) + (when (fboundp 'set-scroll-bar-mode) + (set-scroll-bar-mode nil)) + (when (fboundp 'tool-bar-mode) + (tool-bar-mode -1)) + (when (fboundp 'tooltip-mode) + (tooltip-mode 0)) + + (line-number-mode 1) + (column-number-mode 1) + + ;; Nice scrolling + (setq scroll-margin 0 + scroll-conservatively 100000 + scroll-preserve-screen-position 1) +#+END_SRC + +Relative line numbers support is builtin since GNU Emacs 26.1: + +#+BEGIN_SRC elisp +(if (>= emacs-major-version 26) + (progn + (add-hook 'prog-mode-hook 'display-line-numbers-mode) + (setq display-line-numbers-type 'relative) + (global-set-key (kbd "C-c L") 'display-line-numbers-mode))) +#+END_SRC + +** Basic editing configuration + +Use UTF-8 *always*. + +#+BEGIN_SRC elisp + (prefer-coding-system 'utf-8) + (set-default-coding-systems 'utf-8) + (set-terminal-coding-system 'utf-8) + (set-keyboard-coding-system 'utf-8) + (set-language-environment 'utf-8) +#+END_SRC + +Some editing tweaks like tabs vs spaces, maximum column width, etc. + +#+BEGIN_SRC elisp + ;; Emacs modes typically provide a standard means to change the indentation + ;; width (e.g. c-basic-offset). Moreover, even though I prefer tabs over space, + ;; for most coding conventions this is not the case (e.g. ruby). For this + ;; reason, I will disable them by default and enabled them back for each + ;; specific case (e.g. C). I'm also using the smart-tabs-mode package, see + ;; below in the languages section. + (setq-default indent-tabs-mode nil) + (setq-default tab-width 4) + + ;; Maximum 80 columns. + (setq-default fill-column 80) + (setq-default auto-fill-function 'do-auto-fill) + + ;; Do not break lines + (set-default 'truncate-lines t) + + ;; Delete the selection with a keypress. + (delete-selection-mode t) + + ;; Remove whitespaces at the end of line + (add-hook 'before-save-hook 'delete-trailing-whitespace) + + ;; Cursor + (blink-cursor-mode 0) + (global-hl-line-mode -1) + (show-paren-mode 1) +#+END_SRC + +** Font and theme + +I'm using "Droid Sans Mono" simply because I've grown used to it. + +#+BEGIN_SRC elisp +(defconst mssola-font + (if (string= system-type "darwin") + "Droid Sans Mono-12" + "Droid Sans Mono Dotted for Powerline-10") + "The font to be used.") + +(set-frame-font mssola-font) +(add-to-list 'default-frame-alist `(font . ,mssola-font)) + +; Emacs in daemon mode does not like `set-face-attribute` because this is only +; applied if there is a frame in place, which doesn't happen when starting the +; daemon. Thus, we should call that after the frame has been created (e.g. by +; emacsclient). +; See: https://lists.gnu.org/archive/html/help-gnu-emacs/2015-03/msg00016.html +(add-hook 'after-make-frame-functions-hook + (lambda () + (set-face-attribute 'default t :font mssola-font))) +#+END_SRC + +I've hacked my own theme called [[https://github.com/mssola/soria][soria]]. This theme combines the vim theme +[[http://www.vim.org/scripts/script.php?script_id=2140][xoria256]] with the [[http://opensuse.github.io/branding-guidelines/][openSUSE branding guidelines]]. + +#+BEGIN_SRC elisp + (load-theme 'soria t) +#+END_SRC + +When hacking your own theme, sometimes you want to know what face is the one +that you see on the screen right now. This function from [[https://github.com/thblt/DotFiles][@thblt]] allows me to +get exactly that: + +#+BEGIN_SRC elisp +(defun mssola-face-at-point (pos) + "Writes a message with the name of the face at the current point. The POS + argument contains the current position of the cursor." + + (interactive "d") + + (let ((face (or (get-char-property (point) 'read-face-name) + (get-char-property (point) 'face)))) + (if face (message "Face: %s" face) (message "No face at %d" pos)))) + +(global-set-key (kbd "C-c f") 'mssola-face-at-point) +#+END_SRC + +** General global key bindings + +Use kill-this-buffer instead of kill-buffer. + +#+BEGIN_SRC elisp + (global-set-key (kbd "C-x k") 'kill-this-buffer) +#+END_SRC + +Disable C-z. It will later on be picked up by Evil's config as the escape +sequence. This is here to make sure that it will be disabled even if Evil +cannot be loaded due to some error. + +#+BEGIN_SRC elisp + (global-unset-key (kbd "C-z")) +#+END_SRC + +Also disable the =C-x i= binding, since I've never used the default behavior, +and it will be used as a prefix for inferior modes (e.g. /ielm/). + +#+BEGIN_SRC elisp + (global-unset-key (kbd "C-x i")) +#+END_SRC + +Disable all the Fn keys. + +#+BEGIN_SRC elisp + (dotimes (i 12) + (global-unset-key (kbd (format "" (+ i 1))))) +#+END_SRC + +Disable overwrite-mode. + +#+BEGIN_SRC elisp + (define-key global-map [(insert)] nil) +#+END_SRC + +Kill GNU Emacs by hitting =C-x r q= (mnemonic /Really quit/). + +#+BEGIN_SRC elisp + (global-set-key (kbd "C-x r q") 'kill-emacs) +#+END_SRC + +** Others + +Revert buffers automatically when underlying files are changed externally. + +#+BEGIN_SRC elisp + (global-auto-revert-mode t) +#+END_SRC + +Follow symlinks. + +#+BEGIN_SRC elisp + (setq vc-follow-symlinks t) +#+END_SRC + +Remove the initial message from the scratch buffer. + +#+BEGIN_SRC elisp + (setq initial-scratch-message nil) +#+END_SRC + +Never kill the scratch buffer, bury it instead. + +#+BEGIN_SRC elisp +(defadvice kill-buffer (around kill-buffer-around-advice activate) + (let ((buffer-to-kill (ad-get-arg 0))) + (if (equal buffer-to-kill "*scratch*") + (bury-buffer) + ad-do-it))) + +(defadvice kill-this-buffer (around kill-buffer-around-advice activate) + (let ((buffer-to-kill (ad-get-arg 0))) + (if (equal buffer-to-kill "*scratch*") + (bury-buffer) + ad-do-it))) +#+END_SRC + +No backups + +#+BEGIN_SRC elisp + (setq-default make-backup-files nil) + (setq-default auto-save-default nil) +#+END_SRC + +But at least save the list of recently open files. + +#+BEGIN_SRC elisp +(require 'recentf) + +(recentf-mode 1) +(global-set-key "\C-x\ \C-r" 'recentf-open-files) + +; Save the list every 5 minutes +(run-at-time nil (* 5 60) 'recentf-save-list) +#+END_SRC + +No welcome screen + +#+BEGIN_SRC elisp + (setq-default inhibit-startup-message t) +#+END_SRC + +Enable y/n answers + +#+BEGIN_SRC elisp + (fset 'yes-or-no-p 'y-or-n-p) +#+END_SRC + +Let flyspell be performant. + +#+BEGIN_SRC elisp + (defvar flyspell-issue-message-flag nil) +#+END_SRC + +Save custom-variables somewhere else. + +#+BEGIN_SRC elisp + (setq custom-file (expand-file-name "custom.el" user-emacs-directory)) + (if (file-exists-p custom-file) + (load custom-file)) +#+END_SRC + +Disable audio notifications. + +#+BEGIN_SRC elisp +(setq ring-bell-function 'ignore) +#+END_SRC + +* Calendar + +We catalans start our weeks on Monday. + +#+BEGIN_SRC elisp + (defvar calendar-week-start-day 1) +#+END_SRC + +Global key binding. + +#+BEGIN_SRC elisp + (global-set-key (kbd "M-c") 'calendar) +#+END_SRC + +Fix some stuff for evil mode. + +#+BEGIN_SRC elisp +(with-eval-after-load "calendar" + (with-eval-after-load "evil" + (evil-set-initial-state 'calendar-mode 'normal) + (evil-define-key 'normal calendar-mode-map + "j" 'calendar-forward-week + "k" 'calendar-backward-week + "b" 'calendar-backward-day + "h" 'calendar-backward-day + "l" 'calendar-forward-day + "w" 'calendar-forward-day + "q" 'calendar-exit + "\C-h" 'evil-window-left + "\C-l" 'evil-window-right + "\C-j" 'evil-window-down + "\C-k" 'evil-window-up + "\C-n" 'calendar-scroll-left-three-months + "\C-p" 'calendar-scroll-right-three-months))) +#+END_SRC + +* General purpose defuns + +I want to read the latest news. That's why I define a function that downloads +the =NEWS= file from the git server and then opens it in a buffer. + +#+BEGIN_SRC elisp + (defun mssola-view-emacs-latest-news () + "Allow users to fetch the latest Emacs' NEWS file." + (interactive) + + (url-copy-file + "http://git.savannah.gnu.org/cgit/emacs.git/plain/etc/NEWS" + "/tmp/emacs-news" t) + + (find-file-read-only "/tmp/emacs-news" t)) +#+END_SRC + +Sometimes I want to debug my initialization time. + +#+BEGIN_SRC elisp + (defun emacs-init-time () + "Redefine the `emacs-init-time' function so it is more detailed. + Idea taken from @purcell." + + (interactive) + (let ((init-time + (float-time (time-subtract after-init-time before-init-time)))) + (message "%.3fs" init-time))) +#+END_SRC + +* Project + +First of all, load the silver searcher, which is a convenient and fast searcher. +Ayo silver! + +#+BEGIN_SRC elisp + (use-package ag + :ensure t + :config + + ; Avoid some disagreements between ag and evil. + (with-eval-after-load 'evil + (add-hook 'ag-mode-hook + (lambda () + (define-key ag-mode-map (kbd "n") 'evil-search-next) + (define-key ag-mode-map (kbd "N") 'evil-search-previous) + (define-key ag-mode-map (kbd "gg") 'evil-goto-first-line)))) + (setq ag-reuse-buffers t) + (setq ag-reuse-window t)) +#+END_SRC + +Then, for keeping up with my projects I use the Projectile + Helm combination. + +#+BEGIN_SRC elisp + (use-package projectile + :ensure t + :config + (projectile-mode 1)) + + (use-package helm + :ensure t + :config + (setq projectile-completion-system 'helm) + + ; Allow the search pattern to be on the header. Taken from this Reddit thread: + ; https://www.reddit.com/r/emacs/comments/3asbyn/new_and_very_useful_helm_feature_enter_search/ + (setq helm-echo-input-in-header-line t) + + (defun helm-hide-minibuffer-maybe () + "Hide the minibuffer if we are in a Helm session" + + (when (with-helm-buffer helm-echo-input-in-header-line) + (let ((ov (make-overlay (point-min) (point-max) nil nil t))) + (overlay-put ov 'window (selected-window)) + (overlay-put ov 'face (let ((bg-color (face-background 'default nil))) + `(:background ,bg-color :foreground ,bg-color))) + (setq-local cursor-type nil)))) + + (add-hook 'helm-minibuffer-set-up-hook 'helm-hide-minibuffer-maybe) + (setq helm-split-window-inside-p t) + + ; Preview files with tab + (define-key helm-map (kbd "") 'helm-execute-persistent-action) + + ; Show available options + (define-key helm-map (kbd "C-a") 'helm-select-action) + + ; Some vim-like bindings + (define-key helm-map (kbd "C-j") 'helm-next-line) + (define-key helm-map (kbd "C-k") 'helm-previous-line) + + (global-set-key (kbd "M-x") 'helm-M-x) + + (use-package helm-ag + :ensure t)) + + (use-package helm-projectile + :ensure t + :config + (helm-projectile-on) + + ; Define M-p as a way to quickly list all the available projects. + (with-eval-after-load 'evil + (define-key evil-normal-state-map (kbd "M-p") + 'helm-projectile-switch-project))) +#+END_SRC + +I use @@html:C-p@@ as the binding for listing relevant files. This +binding works either by using =helm-projectile= or the regular =helm-find= +function. As a final touch, this binding also works for listing channels in ERC +buffers. + +#+BEGIN_SRC elisp +(defun mssola-erc-helm-buffer-list () + "Returns a list with the ERC buffers." + (mapcar 'buffer-name (erc-buffer-list))) + +(defconst mssola-helm-source-erc-channel-list + '((name . "ERC Channels") + (candidates . mssola-erc-helm-buffer-list) + (action . switch-to-buffer))) + +(defun mssola-erc-helm-switch-buffer () + "Use helm to select an active ERC buffer." + + (interactive) + + (helm :sources '(mssola-helm-source-erc-channel-list) + :buffer "*helm-erc-channels*")) + +(defun mssola-find-file () + "Call the proper Helm function for finding files." + + (interactive) + + (if (string= major-mode "erc-mode") + (mssola-erc-helm-switch-buffer) + (condition-case nil + (helm-projectile-find-file) + (error + (helm-find-files nil))))) + +(with-eval-after-load 'evil + (define-key evil-normal-state-map (kbd "C-p") 'mssola-find-file)) +#+END_SRC + +Similarly, =helm-ag= has two functions for applying =ag= on the project. I'm +binding to @@html:,a@@ a function that calls to the proper function. + +#+BEGIN_SRC elisp + (defun mssola-helm-ag () + "Call the right ag command for helm-ag." + + (interactive) + + (condition-case nil + (helm-ag-project-root) + (error (helm-ag)))) + + (with-eval-after-load 'evil-leader + (evil-leader/set-key "a" 'mssola-helm-ag)) +#+END_SRC + +* Edit + +In this section I define some useful packages for editing. First of all, one of +the coolest packages out there is =undo-tree=. It allows you to navigate through +the undo history in a tree (because GNU Emacs is cool and keeps track of undo +actions in a tree structure instead of in a stack). This package is included in +recent versions of GNU Emacs. + +#+BEGIN_SRC elisp +(with-eval-after-load 'undo-tree + (global-undo-tree-mode 1) + + (setq undo-tree-visualizer-diff t + undo-tree-visualizer-timestamps t + undo-tree-visualizer-relative-timestamps t) + + (require 'diminish) + (diminish 'undo-tree-mode)) +#+END_SRC + +Another important package is =flycheck=, which is an on-the-fly syntax checking +extension. This works with lots of languages with proper glue code. + +#+BEGIN_SRC elisp +(use-package let-alist + :ensure t) + +(use-package flycheck + :ensure t + :diminish + :config + (add-hook 'after-init-hook 'global-flycheck-mode) + + ;; Only show the errors buffer if it isn't there and if I'm saving the + ;; buffer. + (setq flycheck-emacs-lisp-load-path 'inherit) + (setq flycheck-check-syntax-automatically '(mode-enabled save)) + (setq flycheck-display-errors-function + #'flycheck-display-error-messages-unless-error-list)) +#+END_SRC + +A recurring issue in speeches and presentations is that when showing something +with your editor, you have to increase/decrease the fonts. I use the +=default-text-scale= package for this. + +#+BEGIN_SRC elisp + (use-package default-text-scale + :ensure t + :config + (global-set-key (kbd "C-+") 'default-text-scale-increase) + (global-set-key (kbd "C--") 'default-text-scale-decrease)) +#+END_SRC + +Some languages use some delimiters a lot (e.g. lisp languages and +parenthesis). For this reason I'm using the =rainbow-delimiters= package, which +properly highlights each level in a different way (provided that your theme +supports it). + +#+BEGIN_SRC elisp + (use-package rainbow-delimiters + :ensure t) +#+END_SRC + +Enable =electric-pair-mode=, which automatically closes pairs like brackets: + +#+BEGIN_SRC elisp +(electric-pair-mode 1) +#+END_SRC + +I never use the mouse. + +#+BEGIN_SRC elisp +(use-package disable-mouse + :ensure t + :config + (global-disable-mouse-mode) + (setq global-disable-mouse-mode-lighter "")) +#+END_SRC + +Sometimes you begin typing a prefix, but then you forget the following +chord. For this reason =which-key= was created. It will show the available +commands for the current chord as a list. + +#+BEGIN_SRC elisp +(use-package which-key + :ensure t + :diminish which-key-mode + :config + (which-key-mode)) +#+END_SRC + +For some modes it is important to count the number of words in the text. For +this, we have =wc-mode=. + +#+BEGIN_SRC elisp + (use-package wc-mode + :ensure t) +#+END_SRC + +Editing files as root is a bit of a pain because usually the root user doesn't +have the same configuration as the current one, and attempting to do so can be +messy. So, instead of that, we could advice the =find-file= function so if the +file is not writable by the current user, then GNU Emacs will ask for editing +this same file as root: + +#+BEGIN_SRC elisp +(defadvice find-file (after find-file-sudo activate) + "Find file as root if necessary." + (if (and buffer-file-name + (not (file-writable-p buffer-file-name))) + (if (yes-or-no-p "Do you want to edit this file as root?") + (find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))) +#+END_SRC + +=YASnippet= allows people to define shortcuts for writing some common blocks. +Moreover, it comes with a set of builtin snippets already. Since I don't +remember some of these snippets, I've mapped @@html:, h@@ to +=yas-describe-tables=, which shows the available snippets in another buffer. + +#+BEGIN_SRC elisp +(use-package yasnippet + :ensure t + :diminish yas-minor-mode + :init (yas-global-mode) + :config + (yas-global-mode 1)) +#+END_SRC + +=bool-flip= is a very simple utility that toggles truthy/falsey values. + +#+BEGIN_SRC elisp +(use-package bool-flip + :ensure t + :config + (global-set-key (kbd "C-c b") 'bool-flip-do-flip)) +#+END_SRC + +=move-text= is a small package that allows you to move lines with a +keybinding. This might be feasible with Evil mode, but still this might help +when you want to move lines and keep the default registry empty: + +#+BEGIN_SRC elisp +(use-package move-text + :ensure t + :bind + (("M-k" . move-text-up) + ("M-j" . move-text-down))) +#+END_SRC + +* Dired + +I use dired mode mainly for attaching document into emails. That being said, +whenever I use it, I want basic evil movement. + +#+BEGIN_SRC elisp + (with-eval-after-load 'evil + (evil-add-hjkl-bindings dired-mode-map 'normal + (kbd "w") 'evil-forward-word-begin)) +#+END_SRC + +I also extend =dired= with some handy tweaks. + +#+BEGIN_SRC elisp +(setq directory-free-space-args "-Pkh" + dired-dwim-target t + dired-omit-mode nil + dired-recursive-copies 'always + dired-recursive-deletes 'always + delete-old-versions t) +#+END_SRC + +And now instruct dired mode how to attach files when using mu4e. This is taken +from the [[https://www.djcbsoftware.nl/code/mu/mu4e/Dired.html#Dired][mu4e documentation]], and it's available by typing +@@html:C-c RET C-a@@. + +#+BEGIN_SRC elisp + (require 'gnus-dired) + + ;; Make the `gnus-dired-mail-buffers' function also work on message-mode derived + ;; modes, such as mu4e-compose-mode. + (defun gnus-dired-mail-buffers () + "Return a list of active message buffers." + + (let (buffers) + (save-current-buffer + (dolist (buffer (buffer-list t)) + (set-buffer buffer) + (when (and (derived-mode-p 'message-mode) + (null message-sent-message-via)) + (push (buffer-name buffer) buffers)))) + (nreverse buffers))) + + (setq gnus-dired-mail-mode 'mu4e-user-agent) + (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode) +#+END_SRC + +* Evil + +Forgive me, [[https://stallman.org/saint.html][Father]], for I have sinned. I've been exposed to modal editing +through Vim, and that has changed how I view editing for the foreseeable future. +Because of this, I use Evil. The following blocks include some heavy-lifting so +Evil and GNU Emacs work without hitting each other, and it also includes some +Evil extensions. + +First of all, let's define a function that will be called whenever Evil is loaded. + +#+BEGIN_SRC elisp +(defun mssola-evil () + "Configure evil mode." + + ; We can safely remap because the counting will be handled a-la Vim. + (define-key evil-normal-state-map (kbd "C-u") 'evil-scroll-up) + + ; Make window navigation easier. + (define-key evil-normal-state-map (kbd "C-j") 'evil-window-down) + (define-key evil-normal-state-map (kbd "C-k") 'evil-window-up) + (define-key evil-normal-state-map (kbd "C-l") 'evil-window-right) + (define-key evil-normal-state-map (kbd "C-h") 'evil-window-left) + + ; The window navigation tweaks effectively wipe out the help prefix, which + ; is bad. Fortunately we can workaround this by providing "M-h" as the new + ; help prefix. This prefix is only used in emacs mode to mark lines, which is + ; something already handled by Evil. + (define-key global-map (kbd "M-h") 'help-command) + (fset 'help-command help-map) + + ; Go back to Emacs' bindings on beginning/end of line. + (eval-after-load "evil-maps" + (dolist (map '(evil-motion-state-map + evil-insert-state-map + evil-emacs-state-map)) + (define-key (eval map) "\C-a" 'crux-move-beginning-of-line) + (define-key (eval map) "\C-e" 'end-of-line))) + + ; I store macros on the register for convenience, so I used to use the + ; combo to execute this macro in Vim. In Emacs though, this combo is + ; reserved to a rather useful function, and I'd like to keep it that way. So, + ; now the mapping is set to (mnemonic: where the @ symbol is). Moreover, + ; it's applied as many times as specified by the numeric prefix argument. + (define-key evil-normal-state-map (kbd "C-2") + (lambda (n) + (interactive "p") + (evil-execute-macro n "@q"))) + + ; C-s: switch to normal mode and save the buffer. I know :) + (define-key evil-normal-state-map (kbd "C-s") 'save-buffer) + (define-key evil-insert-state-map (kbd "C-s") + (lambda () (interactive) (save-buffer) (evil-force-normal-state)))) +#+END_SRC + +Now make sure that Evil is installed, and call the relevant configuration functions. + +#+BEGIN_SRC elisp +(use-package evil + :ensure t + :config + (add-hook 'evil-mode-hook 'mssola-evil) + (evil-mode 1) + + ;; C-z is unused and it's close to my beloved C-c. Since I don't want to mess + ;; with one of the most sacred Emacs prefixes, I'm moving to C-z. + (define-key key-translation-map (kbd "C-z") [escape]) + (define-key evil-operator-state-map (kbd "C-z") 'keyboard-quit) + + ;; Use the proper initial evil state for the following modes. + (evil-set-initial-state 'help-mode 'normal) + (evil-set-initial-state 'debugger-mode 'normal) + (evil-set-initial-state 'describe-mode 'normal) + (evil-set-initial-state 'Buffer-menu-mode 'normal) +#+END_SRC + +If Evil was properly loaded, then make sure that the following Evil-related +packages are installed and configured as well. I start by defining the +=evil-leader= package, which brings the @@html:leader@@ feature from +Vim into Evil. + +#+BEGIN_SRC elisp + (use-package evil-leader + :ensure t + :config + (global-evil-leader-mode) + (evil-leader/set-leader ",") + (setq evil-leader/in-all-states 1) + (evil-leader/set-key + "c" 'delete-window + "k" 'kill-buffer-and-window + "v" 'split-window-right + "V" (lambda () (interactive) (split-window-right) (other-window 1)) + "f" 'flycheck-list-errors)) +#+END_SRC + +Another handy Vim plugin that has made it into Evil is =evil-surround=, which +defines a new text object for surrounding characters (e.g. change a string from +having double quotes with single quotes in a single command). + +#+BEGIN_SRC elisp + (use-package evil-surround + :ensure t + :config + (global-evil-surround-mode 1)) +#+END_SRC + +Next is another Vim plugin that has been ported to Evil: =evil-commentary=. This +package defines a new motion for comments, which is bound to +@@html:gc@@. So, for example, @@html:gcc@@ will comment +the current line, regardless of the programming language. + +#+BEGIN_SRC elisp + (use-package evil-commentary + :ensure t + :config + (evil-commentary-mode t)) +#+END_SRC + +Another cool package is =evil-args= which defines the argument text object. This +text object can be targeted with the =a= character, and we can move backward and +forward through arguments with @@html:H@@ and @@html:L@@ +respectively. + +#+BEGIN_SRC elisp + (use-package evil-args + :ensure t + :config + ; Configuration taken from the documentation of evil-args. + + ;; Bind evil-args text objects + (define-key evil-inner-text-objects-map "a" 'evil-inner-arg) + (define-key evil-outer-text-objects-map "a" 'evil-outer-arg) + + ;; Bind evil-forward/backward-args + (define-key evil-normal-state-map "L" 'evil-forward-arg) + (define-key evil-normal-state-map "H" 'evil-backward-arg) + (define-key evil-motion-state-map "L" 'evil-forward-arg) + (define-key evil-motion-state-map "H" 'evil-backward-arg)) +#+END_SRC + +Last but not least, =evil-numbers= brings a couple of bindings available to Vim +into Evil: @@html:C-c +@@ for increasing a number, and +@@html:C-c -@@ for decreasing it. + +#+BEGIN_SRC elisp + (use-package evil-numbers + :ensure t + :config + (define-key evil-normal-state-map (kbd "C-c +") 'evil-numbers/inc-at-pt) + (define-key evil-normal-state-map (kbd "C-c -") 'evil-numbers/dec-at-pt))) +#+END_SRC + +* Git + +A git porcelain for GNU Emacs. Even if I'm still using the git CLI, it's +certainly useful for some common tasks (I guess that I still need some learning). + +#+BEGIN_SRC elisp +(use-package magit + :ensure t + :config +#+END_SRC + +Set some global key bindings for Magit. + +#+BEGIN_SRC elisp +(global-set-key (kbd "C-x g") 'magit-status) +(global-set-key (kbd "C-c l") 'magit-log-buffer-file) +#+END_SRC + +And repair some key bindings from Evil mode. + +#+BEGIN_SRC elisp + (with-eval-after-load 'evil + (use-package evil-magit + :ensure t + :config + + ; The magit + evil-magit combo messes up some chords, let's fix this. + (evil-define-key 'normal magit-mode-map + "\C-h" 'evil-window-left + "\C-l" 'evil-window-right + "\C-j" 'evil-window-down + "\C-k" 'evil-window-up)))) +#+END_SRC + +=git-timemachine= is a package that goes hand-in-hand with Magit, and it +provides a very easy way to go through the history of a file (while providing +ways of jumping into Magit): + +#+BEGIN_SRC elisp +(use-package git-timemachine + :ensure t + :bind (("C-x t m" . git-timemachine-toggle))) +#+END_SRC + +* Email + +I use [[http://www.djcbsoftware.nl/code/mu/][mu]] and [[http://www.djcbsoftware.nl/code/mu/mu4e.html][mu4e]] to manage my email. The configuration for this has been taken +mainly from the documentation, plus some cool remarks on Reddit. This +configuration makes quite some assumptions. Read the =emacs/README.org= file as +provided in my [[https://github.com/mssola/dotfiles][dotfiles]] project to get more details. + +I'm using an RPM that I've built on [[https://build.opensuse.org/package/show/home:mssola/mu][OBS]] which installs mu4e globally. + +#+BEGIN_SRC elisp +(unless (file-directory-p "/usr/share/emacs/site-lisp/mu4e") + (message "Skipping mu4e because it's not installed.")) + +(when (file-directory-p "/usr/share/emacs/site-lisp/mu4e") + (add-to-list 'load-path "/usr/share/emacs/site-lisp/mu4e") + (require 'mu4e) + + (when (featurep 'mu4e) +#+END_SRC + +Set =mu4e= as the default user agent. This will be picked up by =compose-mail=. + +#+BEGIN_SRC elisp +(setq mail-user-agent 'mu4e-user-agent) +#+END_SRC + +Diferent SMTP options that will be used for each context. + +#+BEGIN_SRC elisp + (setq message-send-mail-function 'smtpmail-send-it + mu4e-maildir (expand-file-name "~/.mail") + starttls-use-gnutls t) +#+END_SRC + +After that, I am defining some functions that will be used in various parts of +the configuration. + +#+BEGIN_SRC elisp +(defun mssola-smtp (server port) + "Set SMTP variables depending on the given SERVER and PORT." + + (require 'smtpmail) + + (setq smtpmail-starttls-credentials '((server port nil nil)) + smtpmail-auth-credentials (expand-file-name "~/.authinfo.gpg") + smtpmail-default-smtp-server server + smtpmail-smtp-server server + message-send-mail-function 'smtpmail-send-it + smtpmail-smtp-service port)) + +; https://www.reddit.com/r/emacs/comments/47t9ec/share_your_mu4econtext_configs/d0fsih6 +(defun mu4e-message-maildir-matches (msg rx) + "Returns true if the maildir of MSG matches the given regexp RX." + + (when rx + (if (listp rx) + ;; if rx is a list, try each one for a match + (or (mu4e-message-maildir-matches msg (car rx)) + (mu4e-message-maildir-matches msg (cdr rx))) + ;; not a list, check rx + (string-match rx (mu4e-message-field msg :maildir))))) + +(defun suse-refile-folder (key) + "Returns the refile folder for the given SUSE account in the KEY arg" + + (if (string= key "susecom") + (setq archives-dir "/Arxiu/") + (setq archives-dir "/Archives/")) + (concat "/" key archives-dir + (format-time-string "%Y" (current-time)))) +#+END_SRC + +Depending on the context, it's better a signature or another: + +#+BEGIN_SRC elisp +(defun mssola-mu4e-signature (key) + "Returns a string containing the mail signature for the given KEY." + + (if (string= key "ajuntament") + (concat + "Miquel Sabaté Solà,\n" + "Regidor de Joventut, Participació ciutadana i Transparència\n" + "\n" + "Ajuntament de Capellades\n" + "Carrer de Ramon Godó, 9, 08786 - Capellades\n" + "Tel. 93 801 10 01 – mòbil 677 12 72 07\n" + "sabatesm@capellades.cat\n") + (concat + "Miquel Sabaté Solà,\n" + "PGP: 4096R / 1BA5 3C7A C93D CA2A CFDF DA97 96BE 8C6F D89D 6565\n"))) +#+END_SRC + +Now it's time to define the different contexts that I have. Defining contexts +this way is relatively new (since mu 0.9.16). + +#+BEGIN_SRC elisp +(setq mu4e-contexts + `( + ;; GMail + ,(make-mu4e-context + :name "gmail" + :enter-func (lambda () + (mu4e-message "Switching to gmail.com") + (setq mu4e-compose-signature (mssola-mu4e-signature "gmail")) + (setq mu4e-sent-messages-behavior 'delete) + (mssola-smtp "smtp.gmail.com" 587)) + :match-func (lambda (msg) + (when msg + (mu4e-message-maildir-matches msg "^/gmail"))) + :vars '( + (user-mail-address . "mikisabate@gmail.com") + (mu4e-reply-to-address . "mikisabate@gmail.com") + (mu4e-drafts-folder . "/gmail/Drafts") + (mu4e-sent-folder . "/gmail/Sent") + (mu4e-refile-folder . "/gmail/All") + (mu4e-trash-folder . "/gmail/Trash"))) + + ;; City hall + ,(make-mu4e-context + :name "ajuntament" + :enter-func (lambda () + (mu4e-message "Switching to mail.diba.cat") + (setq mu4e-compose-signature (mssola-mu4e-signature "ajuntament")) + (setq mu4e-sent-messages-behavior 'sent) + (mssola-smtp "mail.diba.cat" 587) + (setq smtpmail-local-domain "capellades.cat")) + :match-func (lambda (msg) + (when msg + (mu4e-message-maildir-matches msg "^/ajuntament"))) + :vars '( + (user-mail-address . "sabatesm@capellades.cat") + (mu4e-reply-to-address . "sabatesm@capellades.cat") + (mu4e-drafts-folder . "/ajuntament/Esborranys") + (mu4e-sent-folder . "/ajuntament/Elements enviats") + (mu4e-refile-folder . "/ajuntament/Arxiu") + (mu4e-trash-folder . "/ajuntament/Elements suprimits"))) + + ;; suse.com + ,(make-mu4e-context + :name "comsuse" + :enter-func (lambda () + (mu4e-message "Switching to suse.com") + (setq mu4e-compose-signature (mssola-mu4e-signature "comsuse")) + (setq mu4e-sent-messages-behavior 'sent) + (mssola-smtp "smtp.office365.com" 587)) + :match-func (lambda (msg) + (when msg + (mu4e-message-maildir-matches msg "^/susecom"))) + :vars `( + (user-mail-address . "msabate@suse.com") + (mu4e-reply-to-address . "msabate@suse.com") + (mu4e-drafts-folder . "/susecom/Esborranys") + (mu4e-sent-folder . "/susecom/Elements enviats") + (mu4e-refile-folder . ,(suse-refile-folder "susecom")) + (mu4e-trash-folder . "/susecom/Elements suprimits"))) + + ;; suse.de + ,(make-mu4e-context + :name "desuse" + :enter-func (lambda () + (mu4e-message "Switching to suse.de") + (setq mu4e-compose-signature (mssola-mu4e-signature "desuse")) + (setq mu4e-sent-messages-behavior 'sent) + (mssola-smtp "imap.suse.de" 587)) + :match-func (lambda (msg) + (when msg + (mu4e-message-maildir-matches msg "^/susede"))) + :vars `( + (user-mail-address . "msabate@suse.de") + (mu4e-reply-to-address . "msabate@suse.de") + (mu4e-drafts-folder . "/susede/Drafts") + (mu4e-sent-folder . "/susede/Sent") + (mu4e-refile-folder . ,(suse-refile-folder "susede")) + (mu4e-trash-folder . "/susede/Trash"))))) +#+END_SRC + +If mu4e cannot figure things out, ask me. + +#+BEGIN_SRC elisp + (setq mu4e-context-policy 'ask) + (setq mu4e-compose-context-policy 'ask) +#+END_SRC + +Fill the =mu4e-user-mail-address-list= variable with the contexts. + +#+BEGIN_SRC elisp + (setq mu4e-user-mail-address-list + (delq nil + (mapcar (lambda (context) + (when (mu4e-context-vars context) + (cdr (assq 'user-mail-address + (mu4e-context-vars context))))) + mu4e-contexts))) +#+END_SRC + +Setting my bookmarks + +#+BEGIN_SRC elisp +(setq mu4e-bookmarks + '(("maildir:/gmail/inbox OR maildir:/susecom/inbox OR maildir:/susede/inbox OR maildir:/ajuntament/inbox" "Inbox Folders" ?n) + ("maildir:/gmail/Sent OR maildir:/susecom/Elements\\ enviats OR maildir:/susede/Sent OR maildir:/ajuntament/Elements\\ enviats" "Sent Folders" ?s) + ("flag:unread AND NOT flag:trashed" "Unread messages" ?u) + ("date:today..now" "Today's messages" ?t))) +#+END_SRC + +Sign outgoing emails always. + +#+BEGIN_SRC elisp + (add-hook 'message-send-hook 'mml-secure-message-sign-pgpmime) +#+END_SRC + +To avoid UID clashes. See [[http://pragmaticemacs.com/emacs/fixing-duplicate-uid-errors-when-using-mbsync-and-mu4e/][this]]. + +#+BEGIN_SRC elisp + (setq mu4e-change-filenames-when-moving t) +#+END_SRC + +Miscellaneous settings. + +#+BEGIN_SRC elisp +(setq mu4e-html2text-command "w3m -T text/html" + mu4e-attachment-dir "~/Downloads" + mu4e-headers-date-format "%Y-%m-%d %H:%M" + message-citation-line-format "%N @ %Y-%m-%d %H:%M %Z:\n" + message-citation-line-function 'message-insert-formatted-citation-line + message-kill-buffer-on-exit t + mu4e-get-mail-command "mbsync -aqV" + mu4e-update-interval 600 + mu4e-compose-dont-reply-to-self t + mu4e-compose-format-flowed t + mu4e-view-show-addresses t + mu4e-headers-skip-duplicates t + mu4e-headers-include-related t + mu4e-headers-auto-update t) +#+END_SRC + +The headers to show in the headers list a pair of a field and its width, +with `nil' meaning 'unlimited' (better only use that for the last field. +These are the defaults: + +#+BEGIN_SRC elisp + (setq mu4e-headers-fields + '( (:date . 18) + (:mailing-list . 15) + (:from-or-to . 20) + (:subject . nil))) +#+END_SRC + +Add as a header action to toggle gnus mode for the view mode. I'm doing this +because this is way better to visualize attached .eml emails. + +#+BEGIN_SRC elisp +(defun mssola-toggle-gnus-mode (msg) + "Toggle gnus on view mode from now on." + (if mu4e-view-use-gnus + (setq mu4e-view-use-gnus nil) + (setq mu4e-view-use-gnus t))) + +(add-to-list 'mu4e-headers-actions + '("gnus mode toggle" . mssola-toggle-gnus-mode) t) +#+END_SRC + +Show images + +#+BEGIN_SRC elisp + (setq mu4e-view-show-images t + mu4e-view-image-max-width 800) + + ; Use imagemagick, if available + (when (fboundp 'imagemagick-register-types) + (imagemagick-register-types)) +#+END_SRC + +Correct some key bindings that are screwed up by =evil-mode=: + +#+BEGIN_SRC elisp +(evil-define-key 'normal mu4e-view-mode-map + ";" 'mu4e-context-switch + "e" 'mu4e-view-save-attachment + "F" 'mu4e-compose-forward) +#+END_SRC + +As of 0.9.18 and GNU Emacs 25, the =mu4e-action-with-xwidget= can be used to +render an HTML message with Webkit. + +#+BEGIN_SRC elisp + (if (>= emacs-major-version 25) + (add-to-list 'mu4e-view-actions + '("webkit" . mu4e-action-view-with-xwidget))) +#+END_SRC + +Look for =mu4e-msg2pdf= in the exec path. The reason for this is that the OBS +package installs mu's =toys= into the exec path, but =mu4e= doesn't really count +on it. + +#+BEGIN_SRC elisp + (let ((exec (locate-file "msg2pdf" exec-path exec-suffixes))) + (if exec + (setq mu4e-msg2pdf exec))) +#+END_SRC + +Adding hooks for composing and viewing messages. + +#+BEGIN_SRC elisp + (defun mssola-compose-mode () + "My settings for message composition." + + ; If we are composing an email from scratch, it's more convenient to be in + ; insert mode. Otherwise start with normal mode. + (with-eval-after-load 'evil + (if mu4e-compose-parent-message + (evil-set-initial-state 'mu4e-compose-mode 'normal) + (evil-set-initial-state 'mu4e-compose-mode 'insert))) + + ; Guess hard newlines + (use-hard-newlines t 'guess) + + ; So it's easy to encrypt/decrypt emails. + (epa-mail-mode) + + ; Spellz + (flyspell-mode)) + + (add-hook 'mu4e-compose-mode-hook 'mssola-compose-mode) + + ; I want to read messages in the format that the sender used. I'm also + ; enabling epa-mail-mode, so it's easy to decrypt received emails. + (add-hook 'mu4e-view-mode-hook + (lambda () + (epa-mail-mode) + (visual-line-mode 1))) +#+END_SRC + +I want desktop notifications when receiving email. + +#+BEGIN_SRC elisp + (use-package mu4e-alert + :ensure t + :config + + ; Notify me for unread emails from my inbox. + (mu4e-alert-set-default-style 'libnotify) + (add-hook 'after-init-hook #'mu4e-alert-enable-notifications) + (add-hook 'after-init-hook #'mu4e-alert-enable-mode-line-display) + (setq mu4e-alert-interesting-mail-query + (concat + "(maildir:/gmail/inbox OR maildir:/susecom/inbox OR maildir:/susede/inbox OR maildir:/ajuntament/inbox) " + "AND flag:unread AND NOT flag:trashed")) + (setq mu4e-alert-email-notification-types '(count))) + + ; Evil mode in mu4e + (with-eval-after-load 'evil + (use-package evil-mu4e + :ensure t + :config + + ; Idea taken from evil-mu4e.el + (defvar mssola-evil-mu4e-mode-map-bindings + `((,evil-mu4e-state mu4e-headers-mode-map "\C-u" evil-scroll-up) + (,evil-mu4e-state mu4e-main-mode-map "\C-u" evil-scroll-up) + (,evil-mu4e-state mu4e-view-mode-map "h" evil-backward-char))) + + (dolist (binding mssola-evil-mu4e-mode-map-bindings) + (evil-define-key + (nth 0 binding) (nth 1 binding) (nth 2 binding) (nth 3 binding))))) +#+END_SRC + +And finally define a proper shortcut. + +#+BEGIN_SRC elisp + ; The trailing parenthesis closes the "(when (featurep 'mu4e)" statement from + ; the very beginning. + (global-set-key (kbd "C-c m") 'mu4e))) +#+END_SRC + +* org + +** TODO org template for creating "article" and similar stuff + +[[http://orgmode.org/][org mode]] is an incredible tool that keeps me organized: TODOs, notes, agenda, +etc. Moreover, it's built in GNU Emacs: + +#+BEGIN_SRC elisp +(require 'org) +#+END_SRC + +** General settings + +First of all, let me define some helper functions. + +#+BEGIN_SRC elisp + (defun mssola-org-skip-if-priority (priority &optional subtree) + "Skip an agenda item if it has a priority of PRIORITY. + PRIORITY may be one of the characters ?A, ?B, or ?C. + Skips the current entry unless SUBTREE is not nil. This function has been + copied from @aaronbieber." + + (let ((end (if subtree (save-excursion (org-end-of-subtree t)) + (save-excursion (progn (outline-next-heading) (1- (point)))))) + (pri-value (* 1000 (- org-lowest-priority priority))) + (pri-current (org-get-priority (thing-at-point 'line t)))) + (if (= pri-value pri-current) + end + nil))) + + (defun mssola-org-skip-if-not-closed-in-day (time &optional subtree) + "Skip entries that were not closed in the given TIME. + Skip the current entry unless SUBTREE is not nil, in which case skip + the entire subtree. Idea taken from @aaronbieber" + + (let ((end (if subtree (save-excursion (org-end-of-subtree t)) + (save-excursion (progn (outline-next-heading) (1- (point)))))) + (day-prefix (format-time-string "%Y-%m-%d" time))) + + (if (save-excursion + (and (re-search-forward org-closed-time-regexp end t) + (string= (substring (match-string-no-properties 1) 0 10) day-prefix))) + nil + end))) +#+END_SRC + +Some general UI settings for org mode. + +#+BEGIN_SRC elisp +(setq org-src-tab-acts-natively t + org-confirm-babel-evaluate nil + org-edit-src-content-indentation 0) + +(setq org-todo-keywords + '((sequence "TODO(t)" "|" "DONE(d!)") + (sequence "IDEA(i)" "WORKING(w)" "|" "USED(u@/!)" "DISCARDED(x@/!)"))) + +(setq org-todo-keyword-faces + '(("TODO" . org-todo) + ("IDEA" . font-lock-constant-face) + ("WORKING" . font-lock-constant-face) + ("DONE" . org-done) + ("USED" . org-done) + ("DISCARDED" . org-done))) +#+END_SRC + +Logging settings. + +#+BEGIN_SRC elisp + (setq org-log-done t) + (setq org-log-redeadline (quote time)) + (setq org-log-reschedule (quote time)) +#+END_SRC + +Where org files reside. + +#+BEGIN_SRC elisp + (setq org-agenda-files '("~/org/")) +#+END_SRC + +** Publishing + +In order to publish files into HTML, I would like to have =htmlize= installed. +This package allows org to export to HTML in a better way (e.g. allowing code +blocks to be converted into HTML as well, so we can properly colorize it). + +#+BEGIN_SRC elisp +(use-package htmlize + :ensure t) +#+END_SRC + +And now let's set all the related settings. + +#+BEGIN_SRC elisp +(setq org-src-fontify-natively t + org-html-include-timestamps nil + org-html-toplevel-hlevel 2 + org-html-htmlize-output-type 'css + org-export-with-section-numbers nil + org-export-with-sub-superscripts nil + org-export-htmlize-output-type 'css) +#+END_SRC + +Make sure to use the proper template when exporting to ODT: + +#+BEGIN_SRC elisp +(setq org-odt-styles-file "~/Documents/Templates/mssola.ott") +#+END_SRC + +Sometimes it's useful to export to LaTeX. That is, when you are simply writing a +quick document that will end up being converted into LaTeX and finally into PDF: + +#+BEGIN_SRC elisp +(require 'ox-latex) + +(unless (boundp 'org-latex-classes) + (setq org-latex-classes nil)) + +(add-to-list 'org-latex-classes + '("article" + "\\documentclass{article}" + ("\\section{%s}" . "\\section*{%s}") + ("\\subsection{%s}" . "\\subsection*{%s}") + ("\\subsubsection{%s}" . "\\subsubsection*{%s}") + ("\\paragraph{%s}" . "\\paragraph*{%s}") + ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) +#+END_SRC + +You can also export org documents to man pages. In order to do so, you have to +perform this first: + +#+BEGIN_SRC elisp +(require 'ox-man) +#+END_SRC + +Setup a function to toggle =org-publish-current-file= on save: + +#+BEGIN_SRC elisp +(defun toggle-org-publish-current-file-on-save () + (interactive) + (if (memq 'org-publish-current-file after-save-hook) + (progn + (remove-hook 'after-save-hook 'org-publish-current-file t) + (message "Disabled org-publish-current-file for current buffer...")) + (add-hook 'after-save-hook 'org-publish-current-file nil t) + (message "Enabled org-publish-current-file for current buffer..."))) +#+END_SRC + +Also hide the "Footnotes: " title on footnotes: + +#+BEGIN_SRC elisp +(setq org-html-footnotes-section "
+ +
+%s +
+
") +#+END_SRC + +Last but not least, some handy shortcuts: + +#+BEGIN_SRC elisp +(with-eval-after-load "org" + (define-key org-mode-map (kbd "") 'org-latex-export-to-pdf) + (define-key org-mode-map (kbd "") 'org-odt-export-to-odt)) +#+END_SRC + +** Agenda + +Custom commands for =org-agenda=. + +#+BEGIN_SRC elisp + (setq org-agenda-custom-commands + '(("p" "Printed agenda" + ; Daily agenda with a 2-weeks deadline warning. Tasks are + ; represented as [ ] items. + ((agenda "" + ((org-agenda-ndays 1) + (org-deadline-warning-days 14) + (org-agenda-todo-keyword-format "[ ]") + (org-agenda-scheduled-leaders '("" "")))) + + ; Display a "High Priority" list of tasks on top. + (tags "PRIORITY=\"A\"" + ((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done)) + (org-agenda-sorting-strategy '(tag-up priority-down)) + (org-agenda-todo-keyword-format "") + (org-agenda-overriding-header "\nHigh priority\n--------------\n"))) + + + ; All tasks except those already listed as high priority or + ; ideas. Scheduled and deadlines are also ignored here. + (alltodo "" + ((org-agenda-skip-function '(or (mssola-org-skip-if-priority ?A) + (org-agenda-skip-entry-if 'todo '("IDEA" "WORKING")) + (org-agenda-skip-if nil '(scheduled deadline)))) + (org-agenda-sorting-strategy '(tag-up priority-down)) + (org-agenda-todo-keyword-format "") + (org-agenda-overriding-header "\nAll tasks\n----------\n"))) + + ; List of ideas. + (todo "IDEA" + ((org-agenda-overriding-header "\nIdeas\n------\n") + (org-agenda-todo-keyword-format "")))) + + ((org-agenda-compact-blocks t) + (org-agenda-remove-tags t))) + + ; List of done items. Useful for standups, review meetings, weekly + ; reports, etc. + ("d" "Done items" + ; First show the items done yesterday. Useful for standups. + ((todo "DONE" + ((org-agenda-overriding-header "Done yesterday\n---------------\n") + (org-agenda-skip-function + '(mssola-org-skip-if-not-closed-in-day + (time-subtract (current-time) (seconds-to-time 86400)))) + (org-agenda-todo-keyword-format ""))) + + ; Then show what I've done today. + (todo "DONE" + ((org-agenda-overriding-header "\nDone today\n-----------\n") + (org-agenda-skip-function + '(mssola-org-skip-if-not-closed-in-day + (current-time))) + (org-agenda-todo-keyword-format ""))) + + ; Finally show what I've been doing in the past 15 days. Useful for + ; review meetings and weekly reports. + (todo "DONE" + ((org-agenda-start-day "-15d") + (org-agenda-span 15) + (org-agenda-start-on-weekday nil) + (org-agenda-todo-keyword-format "") + (org-agenda-scheduled-leaders '("" "")) + (org-agenda-overriding-header "\nDone during the past 15 days\n-----------------------------\n")))) + + ((org-agenda-compact-blocks t) + (org-agenda-remove-tags t))))) +#+END_SRC + +The prefix for the different kinds of types being used. + +#+BEGIN_SRC elisp + (setq org-agenda-prefix-format '((agenda . "%t%s") + (tags . "%c:%s") + (todo . "%c:%t%s"))) +#+END_SRC + +Set up a key binding for org-agenda. + +#+BEGIN_SRC elisp +(global-set-key (kbd "C-c a") 'org-agenda) +#+END_SRC + +** Capture + +Set the default notes file and the key binding. + +#+BEGIN_SRC elisp +(setq org-default-notes-file (concat org-directory "/notes.org")) +(define-key global-map "\C-cc" 'org-capture) +#+END_SRC + +And finally set =org-capture-templates=. + +#+BEGIN_SRC elisp +(setq org-capture-templates + `(("t" "todo" entry (file "") "* TODO %?\n%U\n") + ("i" "idea" entry (file "") "* %? :IDEA:\n%U\n%a\n"))) +#+END_SRC + +** Publish project + +I write blog posts with org-mode. Here's the trick: + +#+BEGIN_SRC elisp +(setq org-publish-project-alist + '(("org-mssola" + ;; Path to your org files. + :base-directory "~/src/mssola/jo/org/" + :base-extension "org" + + ;; Path to your Jekyll project. + :publishing-directory "~/src/mssola/jo/_i18n" + :recursive t + :publishing-function org-html-publish-to-html + :headline-levels 4 + :html-extension "html" + :body-only t ;; Only export section between + ) + + ("mssola" :components ("org-mssola")))) +#+END_SRC + +** Other + +Insert a value in org mode. See this [[http://emacs.stackexchange.com/questions/2206/i-want-to-have-the-kbd-tags-for-my-blog-written-in-org-mode][StackExchange answer]]. + +#+BEGIN_SRC elisp +(defun endless/insert-key (key) + "Ask for a key then insert its description. +Will work on both org-mode and any mode that accepts plain html." + (interactive "kType key sequence: ") + (let* ((is-org-mode (derived-mode-p 'org-mode)) + (tag (if is-org-mode + "@@html:%s@@" + "%s"))) + (if (null (equal key "\r")) + (insert + (format tag (help-key-description key nil))) + (insert (format tag "")) + (forward-char (if is-org-mode -8 -6))))) + +(define-key org-mode-map "\C-ck" #'endless/insert-key) +#+END_SRC + +Define profiles. + +#+BEGIN_SRC elisp +;; Variables + +(defvar mssola-org-profiles + '(("minimal" . mssola-org-minimal) + ("monthly" . mssola-org-monthly)) + "Defined profiles for organization matters.") + +(defvar mssola-org-default-profile "minimal" + "The default profile for mssola-org.") + +;; Profiles + +(defun mssola-org-minimal () + "Load a minimal set of files." + (find-file (concat (file-name-as-directory org-directory) "setmana.org"))) + +(defun mssola-org-monthly () + "Load a set of files useful for monthly planning." + (find-file (concat (file-name-as-directory org-directory) "setmana.org")) + (split-window-right) + (windmove-right) + (find-file (concat (file-name-as-directory org-directory) "any.org")) + (windmove-left)) + +;; Functions + +(defun mssola-org (&optional profile) + "Setup a frame for organizational matters. +PROFILE is the profile to be picked when given. If it's not given, then the +user will be prompted to provide it." + (interactive) + + (delete-other-windows) + (unless profile + (setq profile (completing-read "Give me the profile: " + (mapcar 'car mssola-org-profiles) nil t))) + (funcall (cdr (assoc profile mssola-org-profiles)))) + +(defun mssola-org-default () + "Setup a frame for organizational matters given a default profile has been set." + (interactive) + + (mssola-org mssola-org-default-profile)) + +(define-key global-map (kbd "C-c C-o") #'mssola-org-default) +(define-key global-map (kbd "C-c M-o") #'mssola-org) +#+END_SRC + +** TODO shortcut for making an org link, and transforming a link into a proper org link +** TODO make it work with evil +** TODO Proper keybindings for quick access. + +** TODO shortcuts for stuff like: create something urgent for today + +* IRC + +I'm using [[https://www.gnu.org/software/emacs/manual/html_mono/erc.html][ERC]] for IRC. + +#+BEGIN_SRC elisp +(use-package erc + :config +#+END_SRC + +First of all, let's add some basic modules. + +#+BEGIN_SRC elisp + (dolist (mod '(autojoin track truncate)) + (add-to-list 'erc-modules mod)) +#+END_SRC + +Setting up basic stuff. + +#+BEGIN_SRC elisp + (setq erc-hide-list '("PART") + erc-prompt (lambda () (concat (buffer-name) ">")) + erc-track-exclude-types '("JOIN" "NICK" "PART" "QUIT" "MODE") + erc-server-coding-system '(utf-8 . utf-8) + erc-kill-buffer-on-part t + erc-kill-queries-on-quit t + erc-kill-server-buffer-on-quit t + erc-fill-column 100 + erc-fill-prefix "" + erc-timestamp-format "[%H:%M] " + erc-insert-timestamp-function 'erc-insert-timestamp-left + erc-insert-away-timestamp-function 'erc-insert-timestamp-left + erc-hide-timestamps nil + erc-whowas-on-nosuchnick t + erc-public-away-p nil + erc-echo-notice-always-hook '(erc-echo-notice-in-minibuffer) + erc-auto-set-away nil + erc-autoaway-message "%i seconds out..." + erc-away-nickname "msabate" + erc-enable-logging t + erc-query-on-unjoined-chan-privmsg t) +#+END_SRC + +Let's log messages whenever I receive/send them. The other option is to only do +that on =/quit= or =/part=, but it's better to be safe than sorry. + +#+BEGIN_SRC elisp + (require 'erc-log) + (erc-log-enable) + + (setq erc-log-channels-directory "~/.emacs.d/erc" + erc-save-buffer-on-part nil + erc-save-queries-on-quit nil + erc-log-write-after-send t + erc-log-write-after-insert t) +#+END_SRC + +Servers and channels to auto-join. + +#+BEGIN_SRC elisp + (setq erc-autojoin-channels-alist + '(("irc.freenode.net" "#gnu" "#emacs") + ("irc.nue.suse.com" "#suse" "#docker"))) +#+END_SRC + +Use the =erc-hl-nicks= package, so highlight support for nicknames is better. + +#+BEGIN_SRC elisp +(use-package erc-hl-nicks + :ensure t + :init + (with-eval-after-load 'erc + (add-to-list 'erc-modules 'hl-nicks))) +#+END_SRC + +I want to have a desktop notification whenever someone mentions my name. For +this, I'm using the =erc-notifications= package which is built in ERC since +GNU Emacs 24.3. + +#+BEGIN_SRC elisp +(with-eval-after-load 'erc + (setq erc-notifications-icon + (concat + "/usr/share/emacs/" + (format "%s.%s" emacs-major-version emacs-minor-version) + "/etc/images/icons/hicolor/24x24/apps/emacs.png")) + (add-to-list 'erc-modules 'notifications)) +#+END_SRC + +At this point, we can safely update all the loaded ERC modules. + +#+BEGIN_SRC elisp + (add-hook 'erc-connect-pre-hook + (lambda (x) (erc-update-modules))) +#+END_SRC + +Start some modules which won't do it by default. Moreover, according to the [[https://www.emacswiki.org/emacs/ErcFilling][wiki]] +=auto-fill-mode= should be disabled if I'm using =erc-fill-mode=. + +#+BEGIN_SRC elisp + (add-hook 'erc-mode-hook + '(lambda () + (erc-track-mode t) + (auto-fill-mode -1) + (erc-log-mode 1) + (erc-autojoin-mode 1))) +#+END_SRC + +And now define a function to connect to both IRC servers. + +#+BEGIN_SRC elisp + (defun mssola-erc () + "Join pre-specified servers and channels." + + (interactive) + + (erc :server "irc.freenode.net" :port 6667 :nick "mssola") + (erc-tls :server "irc.nue.suse.com" :port 6697 :nick "mssola")) + + (global-set-key (kbd "C-c i") 'mssola-erc)) +#+END_SRC + +* Languages + +** General + +First of all, define a function that identifies some warning keywords +(e.g. TODO). This function can then be applied to the proper mode. + +#+BEGIN_SRC elisp + (defun warnings-mode-hook () + "Hook for enabling the warning face on strings with a warning prefix." + + (font-lock-add-keywords nil + '(("\\(XXX\\|FIXME\\|TODO\\|HACK\\|NOTE\\|BUG\\)" + 1 font-lock-warning-face prepend)))) +#+END_SRC + +Text mode is not a programming language, but it's used quite often in this +context too. In this case, I want spell check and =wc-mode= activated. + +#+BEGIN_SRC elisp + (add-hook 'text-mode-hook + (lambda () + (flyspell-mode 1) + (wc-mode 1))) +#+END_SRC + +** Shell + +#+BEGIN_SRC elisp +(use-package bats-mode + :ensure t) +#+END_SRC + +** Lisp + +Emacs lisp needs =rainbow-delimiters=, so the amount of parenthesis is less +confusing. Moreover, I'm also enabling =eldoc-mode= and the aforementioned +=warnings-mode-hook=. + +#+BEGIN_SRC elisp + (add-hook 'emacs-lisp-mode-hook + (lambda () + (eldoc-mode 1) + (warnings-mode-hook) + (rainbow-delimiters-mode 1) + ; https://github.com/jhenahan/emacs.d/blob/master/emacs-init.org#emacs-lisp + (setq mode-name "ξ"))) +#+END_SRC + +Configure =ielm= with the proper ELisp utilities: + +#+BEGIN_SRC elisp +(use-package ielm + :config + (add-hook 'ielm-mode-hook #'eldoc-mode) + (add-hook 'ielm-mode-hook #'rainbow-delimiters-mode) + (global-set-key (kbd "C-x i e") 'ielm) + (global-set-key (kbd "C-x i l") 'ielm)) +#+END_SRC + +** C and C++ + +C and C++ only require the =warnings-mode-hook= function, spell checking for the +comments and the usage of tabs instead of spaces. + +#+BEGIN_SRC elisp +; Note that C-common includes languages with a similar syntax of C. +(add-hook 'c-mode-common-hook 'warnings-mode-hook) +(add-hook 'c-mode-common-hook (lambda() (flyspell-prog-mode))) + +;; C +(add-hook 'c-mode-hook + (lambda () (setq indent-tabs-mode t))) + +;; C++ +(add-hook 'c++-mode-hook + (lambda () (setq indent-tabs-mode t))) +#+END_SRC + +CMake for y'all. + +#+BEGIN_SRC elisp + (use-package cmake-mode + :ensure t + :config + + (setq auto-mode-alist + (append + '(("CMakeLists\\.txt\\'" . cmake-mode)) + '(("\\.cmake\\'" . cmake-mode)) + auto-mode-alist)) + + (use-package cmake-font-lock + :ensure t + :config + + (add-hook 'cmake-mode-hook 'cmake-font-lock-activate) + (add-hook 'yaml-mode-hook 'warnings-mode-hook))) +#+END_SRC + +** Ruby + +Include warning keywords in Ruby and do not automatically include the encoding +magic comment: + +#+BEGIN_SRC elisp +(use-package ruby-mode + :config + (setq ruby-insert-encoding-magic-comment nil) + (add-hook 'ruby-mode-hook #'subword-mode) + (add-hook 'ruby-mode-hook 'warnings-mode-hook)) +#+END_SRC + +And give me an IRB instance: + +#+BEGIN_SRC elisp +(use-package inf-ruby + :ensure t + :config + (add-hook 'ruby-mode-hook #'inf-ruby-minor-mode) + (global-set-key (kbd "C-x i r") 'inf-ruby)) +#+END_SRC + +** Go + +And now my Go configuration. This includes stuff like the usage of =goimports=, +=gofmt= on save, among many other useful things. + +#+BEGIN_SRC elisp + (defun mssola-go-mode () + "My configuration for Go mode." + + ; Use goimports instead of go-fmt + (setq gofmt-command "goimports") + + ; Call Gofmt before saving + (add-hook 'before-save-hook 'gofmt-before-save) + + ; Integration flycheck with Go + (add-to-list 'load-path + (concat (getenv "GOPATH") "/src/github.com/dougm/goflymake")) + (require 'go-flycheck) + + (setq indent-tabs-mode t) + (flyspell-prog-mode) + + ; eldoc support + (use-package go-eldoc + :ensure t + :config + (require 'go-eldoc))) + + ;; Go + (use-package go-mode + :ensure t + :pin melpa-stable + :config + + (add-hook 'go-mode-hook 'warnings-mode-hook) + (add-hook 'go-mode-hook 'go-eldoc-setup) + (add-hook 'go-mode-hook 'mssola-go-mode)) +#+END_SRC + +** Python + +Install =elpy= as the environment for Python support: + +#+BEGIN_SRC elisp +(use-package elpy + :ensure t + :config + (advice-add 'python-mode :before 'elpy-enable) + (when (require 'flycheck nil t) + (setq elpy-modules (delq 'elpy-module-flymake elpy-modules)) + (add-hook 'elpy-mode-hook 'flycheck-mode))) +#+END_SRC + +Automatically use =autopep8= on save: + +#+BEGIN_SRC elisp +(use-package py-autopep8 + :ensure t + :config + (add-hook 'elpy-mode-hook 'py-autopep8-enable-on-save)) +#+END_SRC + +** Rust + +Install =rust-mode= and add some hooks to make it friendlier. + +#+BEGIN_SRC elisp +(use-package rust-mode + :ensure t + :config + + (add-hook 'before-save-hook + #'(lambda () + (when (eq major-mode 'rust-mode) + (rust-format-buffer)))) + + (use-package flycheck-rust + :ensure t + :config + + (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))) +#+END_SRC + +** Tabs vs spaces + +Tabs or spaces? [[https://www.emacswiki.org/emacs/TabsSpacesBoth][Both]]. The =smart-tabs-mode= has the philosophy of: tabs for +indentation, spaces for alignment. This is only applied in languages where I'm +usings tabs for indentation (C, C++ and Go). + +#+BEGIN_SRC elisp + (use-package smart-tabs-mode + :ensure t + :config + (smart-tabs-add-language-support golang go-mode-hook + ((c-indent-line . c-basic-offset) + (c-indent-region . c-basic-offset))) + (smart-tabs-insinuate 'c 'c++ 'golang)) +#+END_SRC + +** Inferior markup languages. + +#+BEGIN_SRC elisp + ;; Markdown mode with preview mode in the browser. + (use-package markdown-mode + :ensure t + :config + + ; This is the one that I got from openSUSE. + (custom-set-variables + '(markdown-command "/usr/bin/markdown-calibre")) + + ; Preview mode does its things through websockets, so it's a requirement. + ; After that, we can safely require it. + (use-package websocket + :ensure t + :config + (use-package markdown-preview-mode + :ensure t))) + + ; YAML + (use-package yaml-mode + :ensure t + :config + + (add-hook 'yaml-mode-hook 'warnings-mode-hook)) +#+END_SRC + +** Web-related stuff. + +Slim and SCSS. + +#+BEGIN_SRC elisp +(use-package slim-mode + :ensure t) + +(use-package scss-mode + :ensure t + :config + + (setq scss-compile-at-save nil) + (add-hook 'yaml-mode-hook 'warnings-mode-hook)) + +(use-package coffee-mode + :ensure t) +#+END_SRC + +Languages specific for backend code like PHP, and =web-mode=, which provides a +bundle of features which are interesting for web-related stuff. + +#+BEGIN_SRC elisp +(use-package php-mode + :ensure t) + +(use-package web-mode + :ensure t + :config + + (add-to-list 'auto-mode-alist '("\\.erb\\'" . web-mode)) + (add-to-list 'auto-mode-alist '("\\.jinja\\'" . web-mode)) + (add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode)) + + (add-hook 'web-mode-hook + (lambda () + (setq web-mode-markup-indent-offset 2) + (setq web-mode-css-indent-offset 2) + (setq web-mode-code-indent-offset 2))) + + (add-hook 'js-mode-hook + (lambda () + (setq js-indent-level 2) + (rainbow-delimiters-mode 1))) + + (use-package vue-mode + :ensure t + :config + (setq mmm-submode-decoration-level 0)) + + ; React: treat it as a derived mode. Idea taken from spacemacs. + (define-derived-mode react-mode web-mode "react") + (add-to-list 'auto-mode-alist '("\\.jsx\\'" . react-mode)) + (add-to-list 'auto-mode-alist '("\\.react.js\\'" . react-mode)) + + (add-hook 'react-mode-hook + (lambda () + (yas-activate-extra-mode 'js-mode) + (web-mode-set-content-type "jsx") + (setq-local web-mode-enable-auto-quoting nil) + (rainbow-delimiters 1)))) +#+END_SRC + +The =json-reformat= package provides functions for reformatting JSON strings. It +happens from time to time that I have to read JSON output from responses, and it +can be frustrating without proper formatting. + +#+BEGIN_SRC elisp +(use-package json-reformat + :ensure t) +#+END_SRC + +** Devops + +Highlighting for Dockerfiles. + +#+BEGIN_SRC elisp + (use-package dockerfile-mode + :ensure t + :config + + (add-to-list 'auto-mode-alist '("Dockerfile" . dockerfile-mode))) +#+END_SRC + +Stuff from Hashicorp like terraform and HCL. + +#+BEGIN_SRC elisp +(use-package terraform-mode + :ensure t + :config + + (terraform-format-on-save-mode)) + +(use-package hcl-mode + :ensure t) +#+END_SRC + +#+BEGIN_SRC elisp +(use-package salt-mode + :ensure t) +#+END_SRC + +** Others + +The [[https;//github.com/mssola/soria][soria]] theme has the =soria-purple-identifiers= hook. This hook instructs +the theme to use purple for identifiers instead of the default color. This is a +remnant from my Vim times, and I only apply it to some languages (random +criteria really). + +#+BEGIN_SRC elisp + (dolist (lang-hook '(ruby-mode-hook + php-mode-hook + perl-mode-hook + emacs-lisp-mode-hook)) + (add-hook lang-hook 'soria-purple-identifiers)) +#+END_SRC + +** LaTeX + +Let's use [[https://www.gnu.org/software/auctex/][Auctex]] for LaTeX files. + +#+BEGIN_SRC elisp +(use-package tex + :ensure auctex + :config + (setq TeX-auto-save t) + (setq TeX-parse-self t) + (setq-default TeX-master nil)) +#+END_SRC + +* WoMan + +=WoMan= is a package that is included inside of GNU Emacs by default, and that +takes care of visualizing man pages. Let's properly setup Evil mode for this: + +#+BEGIN_SRC elisp +(with-eval-after-load "evil" + (evil-set-initial-state 'woman-mode 'normal) + (evil-define-key 'normal woman-mode-map + "J" 'Man-next-section + "K" 'Man-previous-section + "\C-h" 'evil-window-left + "\C-l" 'evil-window-right + "\C-j" 'evil-window-down + "\C-k" 'evil-window-up + "\C-u" 'evil-scroll-up)) +#+END_SRC + +Finally, I want man pages to fill all the frame: + +#+BEGIN_SRC elisp +(setq woman-fill-frame t) +#+END_SRC + +Start =WoMan= as a subcommand of the help command: + +#+BEGIN_SRC elisp +(define-key 'help-command (kbd "M-m") #'woman) +#+END_SRC + +* Misc + +Install a set of useful functions from [[https://github.com/bbatsov][@bbatsov]]. The bindings are following +Emacs style instead of being more Vim-like on purpose (I don't want to put +too many things into my leader and these shortcuts look sensible to me). + +#+BEGIN_SRC elisp +(use-package crux + :ensure t + :config + + (global-set-key (kbd "C-c d") 'crux-delete-file-and-buffer) + (global-set-key (kbd "C-c r") 'crux-rename-file-and-buffer) + (global-set-key (kbd "C-c n") 'crux-cleanup-buffer-or-region) + (global-set-key (kbd "C-") 'crux-kill-line-backwards) + (global-set-key [remap move-beginning-of-line] 'crux-move-beginning-of-line) + (global-set-key (kbd "C-c o") 'crux-open-with)) +#+END_SRC + +** Emojis + +Display emojis in buffer! + +#+BEGIN_SRC elisp +(use-package emojify + :ensure t + :config + + (add-hook 'after-init-hook #'global-emojify-mode) + (setq emojify-composed-text-p nil) + (setq emojify-emoji-styles '(unicode github))) +#+END_SRC + +* Credits + +I've built this file by simply scavenging from other people's emacs.d/dotfiles +repositories. I have taken lots of pieces from here and there, but most notably: + +- [[https://github.com/ereslibre/dotfiles][@ereslibre]] +- [[https://github.com/dmacvicar/dotfiles][@dmacvicar]] +- [[https://github.com/bbatsov/emacs.d][@bbatsov]] +- [[https://github.com/aaronbieber/dotfiles][@aaronbieber]] +- [[https://github.com/purcell/emacs.d][@purcell]] +- [[https://github.com/sachac/.emacs.d][@sachac]] ([[http://pages.sachachua.com/.emacs.d/Sacha.html][HTML version]]) +- [[https://github.com/larstvei/dot-emacs][@larstvei]] + +* License + +#+BEGIN_SRC text :tangle no + Copyright (C) 2014-2019 Miquel Sabaté Solà + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . +#+END_SRC diff --git a/.emacs.d/lisp/README.md b/.emacs.d/lisp/README.md new file mode 100644 index 0000000..64e6da0 --- /dev/null +++ b/.emacs.d/lisp/README.md @@ -0,0 +1,18 @@ +## GNU Emacs Modules written by Miquel Sabaté Solà + +This directory contains Lisp modules I've written. + +### g.el + +A port of my [g](https://github.com/mssola/g) script for GNU Emacs. This is not +helpful all the time, but it does help whenever Projectile does not cover me. +This module implements the following interactive functions: + +- `g`: allows users to jump through a shortcut. After performing the jump, the + user will be presented with the `dired` mode. +- `g-add`: add a new shortcut that points to a valid path. +- `g-remove`: remove an existing shortcut. +- `g-list`: list all the available shortcuts. + +This module is completely compatible with the `g.sh` script, which means that +they both can be run side by side without any problems. diff --git a/.emacs.d/lisp/g.el b/.emacs.d/lisp/g.el new file mode 100644 index 0000000..3a4660a --- /dev/null +++ b/.emacs.d/lisp/g.el @@ -0,0 +1,134 @@ +;;; g.el --- Adding shortcuts to GNU Emacs + +;; Copyright (C) 2016-2019 Miquel Sabaté Solà +;; +;; This program is free software: you can redistribute it and/or modify +;; it under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. +;; +;; This program is distributed in the hope that it will be useful, +;; but WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +;; GNU General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with this program. If not, see . + +;; Author: Miquel Sabaté Solà +;; Version: 0.1 +;; URL: https://github.com/mssola/dotfiles/emacs/site-lisp/g.el + +;;; Commentary: +;; +;; This is a GNU Emacs port of my g.sh bash script that can be found here: +;; https://github.com/mssola/g. This package can be seen as useless given the +;; fantastic Helm + Projectile combo, but it still comes in handy when you want +;; to edit: +;; - A file which is in a project unknown to Projectile. +;; - A file that does not really belong to a real project. + +;;; Code: + +(defvar g-file "~/.gfile" + "The path to the gfile.") + +;; Utils + +(defun g-read-file (file) + "Read the given FILE and return it as a list of lines." + + (if (file-exists-p file) + (with-temp-buffer + (insert-file-contents file) + (split-string (buffer-string) "\n" t)) + "")) + +(defun g-write (shortcuts) + "Write the given SHORTCUTS into the gfile." + + (let ((output "")) + (maphash (lambda (key value) + (setq output + (concat output (format "%s\n%s\n" key value)))) + shortcuts) + (write-region output nil g-file))) + +(defun g-read () + "Read all the shortcuts as defined by the gfile. +The returned object is a hash table." + + (let ((shortcuts (make-hash-table :test 'equal)) + (list (g-read-file g-file))) + + ; The format of the file is a bit special because it was meant to be easily + ; parseable by Bash. It consists of pairs of lines, where n is the key, and + ; n+1 is the value. + (dotimes (i (/ (length list) 2)) + (let ((n (* i 2))) + (puthash + (nth n list) + (nth (+ n 1) list) + shortcuts))) + shortcuts)) + +;; Interactive functions + +(defun g () + "Go to the given directory with the supplied alias." + + (interactive) + + (if (file-exists-p g-file) + (progn + (let* ((shortcuts (g-read)) + (alias (completing-read + "Give me the name: " shortcuts nil t))) + (find-file (gethash alias shortcuts)))) + (message "Add a shortcut first!"))) + +(defun g-list () + "List all the available shortcuts." + + (interactive) + + (let ((output "")) + (maphash (lambda (key value) + (setq output + (concat output (format "%s => %s\n" key value)))) + (g-read)) + (message output))) + +(defun g-add () + "Add a new shortcut." + + (interactive) + + (let ((shortcuts (g-read)) + (to-create (read-string "Shortcut to create: "))) + (if (gethash to-create shortcuts) + (message "Error: shortcut already exists.") + (let ((path (read-file-name "Path: " nil nil t))) + (if (file-exists-p path) + (progn + (puthash to-create (file-truename path) shortcuts) + (g-write shortcuts)) + (message "Error: given path does not exist.")))))) + +(defun g-remove () + "Remove an existing shortcut." + + (interactive) + + (if (file-exists-p g-file) + (progn + (let* ((shortcuts (g-read)) + (alias (completing-read + "Give me the shortcut to remove: " shortcuts nil t))) + (remhash alias shortcuts) + (g-write shortcuts))) + (message "There are no shortcuts!"))) + +(provide 'g) + +;;; g.el ends here diff --git a/.emacs.d/org-templates/README.org b/.emacs.d/org-templates/README.org new file mode 100644 index 0000000..b3cc271 --- /dev/null +++ b/.emacs.d/org-templates/README.org @@ -0,0 +1,22 @@ +* org + +Helper files that are included in some way or another into my =org= file. + +* License + +#+BEGIN_SRC text +Copyright (C) 2019 Miquel Sabaté Solà + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +#+END_SRC diff --git a/.emacs.d/org-templates/article-full.org b/.emacs.d/org-templates/article-full.org new file mode 100644 index 0000000..839e1d8 --- /dev/null +++ b/.emacs.d/org-templates/article-full.org @@ -0,0 +1,20 @@ +#+AUTHOR: Miquel Sabaté Solà +#+DESCRIPTION: +#+KEYWORDS: +#+LANGUAGE: ca + +#+OPTIONS: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline +#+OPTIONS: author:t c:nil creator:nil d:(not LOGBOOK) date:t title:t e:t +#+OPTIONS: email:nil f:t inline:t num:t p:nil pri:nil stat:t tags:nil +#+OPTIONS: tasks:t tex:t timestamp:t toc:t todo:t |:t + +#+LaTeX_CLASS_OPTIONS: [catalan,a4paper,12pt] +#+LATEX_HEADER: \usepackage{babel} +#+LATEX_HEADER: \usepackage[a4paper, portrait, margin=1in]{geometry} +#+LATEX_HEADER: \renewcommand{\baselinestretch}{1.5} +#+LATEX_HEADER: \usepackage{newtxtext,newtxmath} + +#+LATEX_HEADER: \usepackage{xcolor} +#+LATEX_HEADER: \hypersetup{colorlinks=false, pdfborderstyle={/S/U/W 1}, urlbordercolor=gray, pdfborder=0 0 1} + +#+SELECT_TAGS: export diff --git a/.emacs.d/org-templates/article.org b/.emacs.d/org-templates/article.org new file mode 100644 index 0000000..463ec2f --- /dev/null +++ b/.emacs.d/org-templates/article.org @@ -0,0 +1,20 @@ +#+AUTHOR: Miquel Sabaté Solà +#+DESCRIPTION: +#+KEYWORDS: +#+LANGUAGE: ca + +#+OPTIONS: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline +#+OPTIONS: author:nil c:nil creator:nil d:(not LOGBOOK) date:nil title:nil e:t +#+OPTIONS: email:nil f:t inline:t num:t p:nil pri:nil stat:t tags:nil +#+OPTIONS: tasks:t tex:t timestamp:t toc:nil todo:t |:t + +#+LaTeX_CLASS_OPTIONS: [a4paper, 12pt] +#+LATEX_HEADER: \usepackage[a4paper, portrait, margin=1in]{geometry} +#+LATEX_HEADER: \renewcommand{\baselinestretch}{1.5} +#+LATEX_HEADER: \usepackage{newtxtext,newtxmath} +#+LATEX_HEADER: \usepackage[catalan]{babel} + +#+LATEX_HEADER: \usepackage{xcolor} +#+LATEX_HEADER: \hypersetup{colorlinks=false, pdfborderstyle={/S/U/W 1}, urlbordercolor=gray, pdfborder=0 0 1} + +#+SELECT_TAGS: export diff --git a/.emacs.d/org.css b/.emacs.d/org.css new file mode 100644 index 0000000..98110e5 --- /dev/null +++ b/.emacs.d/org.css @@ -0,0 +1,66 @@ +/* + * Copyright (C) 2017-2019 Miquel Sabaté Solà + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +/* + * This file tries to mimick what we have in the soria theme. That being said, + * the HTML exporter of org-mode is not perfect, so there's tons of stuff that + * are not highlighted in the same way as in GNU Emacs. Anyways, the colors are + * as follows: + * + * soria-purple "#dfafdf" + * soria-darkpurple "#875f87" + * soria-white "#d0d0d0" + * soria-darkgray "#1c1c1c" + * soria-brightgreen "#81c13b" + * soria-green "#b9dc92" + * soria-darkgreen "#2f5361" + * soria-gray "#808080" + * soria-linegray "#3a3a3a" + * soria-statusgray "#4e4e4e" + * soria-statusncgray "#b2b2b2" + * soria-black "#000000" + * soria-whitest "#eeeeee" + * soria-yellow "#ffffaf" + * soria-orange "#d7af87" + * soria-redpastel "#d78787" + * soria-blue "#87afd7" + */ + +.org-src-container pre { + color: #d0d0d0; + background-color: #1c1c1c; + border-left: 0px; +} + +.org-warning { color: #b9dc92; } +.org-keyword { color: #87afd7; } +.org-function-name { color: #87afd7; } +.org-builtin { color: #87afd7; } +.org-constant { color: #ffffaf; } +.org-string { color: #ffffaf; } +.org-doc { color: #808080; } +.org-comment { color: #808080; } +.org-comment-delimiter { color: #808080; } +.org-rainbow-delimiters-depth-1 { color: #81c13b; } +.org-rainbow-delimiters-depth-2 { color: #d78787; } +.org-rainbow-delimiters-depth-3 { color: #d7af87; } +.org-rainbow-delimiters-depth-4 { color: #87afd7; } +.org-rainbow-delimiters-depth-5 { color: #d0d0d0; } +.org-rainbow-delimiters-depth-6 { color: #d0d0d0; } +.org-rainbow-delimiters-depth-7 { color: #d0d0d0; } +.org-rainbow-delimiters-depth-8 { color: #d0d0d0; } +.org-rainbow-delimiters-depth-9 { color: #d0d0d0; } diff --git a/.emacs.d/pre-push b/.emacs.d/pre-push new file mode 100755 index 0000000..dcc8dce --- /dev/null +++ b/.emacs.d/pre-push @@ -0,0 +1,79 @@ +#!/bin/sh +# Copyright (C) 2017-2019 Miquel Sabaté Solà +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Most of the code is taken from the default pre-push.sample file. + +# From the documentation, if the foreign ref does not yet exist the +# will be 40 0. +z40=0000000000000000000000000000000000000000 + +# The path where the files are to be stored on the server. +__mssola_remote_path=/home/mssola/static + +# Safely join paths. +__mssola_join_path() { + local IFS="/"; echo "$*"; +} + +# This function does the actual syncing. It takes one argument, which is the +# file to be synced. Note that this function assumes that the given file is +# under the "emacs" directory. +__mssola_sync_cheato() { + path=$(realpath .) + + src=$(__mssola_join_path $path "emacs" $1) + dst=$(__mssola_join_path "cheato.mssola.com:$__mssola_remote_path" $1) + + echo "Syncing $(__mssola_join_path emacs $1)" + rsync $src $dst +} + +# Copy the files that I want to my server. +__mssola_sync() { + __mssola_sync_cheato "init.html" + __mssola_sync_cheato "org.css" +} + +# This block iterates through all the given info provided by git. If there is +# a change on a GNU Emacs file, then it needs to by synced with my server. +while read local_ref local_sha remote_ref remote_sha +do + if [ "$local_sha" = $z40 ] + then + # Handle delete + : + else + if [ "$remote_sha" = $z40 ] + then + # New branch, examine all commits + range="$local_sha" + else + # Update to existing branch, examine new commits + range="$remote_sha..$local_sha" + fi + + # Commits afecting GNU Emacs are prefixed with "emacs: ". It's a + # convention that I always follow. + commit=`git rev-list -n 1 --grep '^emacs:' "$range"` + if [ -n "$commit" ] + then + #__mssola_sync + exit 0 + fi + fi +done + +exit 0 diff --git a/.emacs.d/snippets/org-mode/header b/.emacs.d/snippets/org-mode/header new file mode 100644 index 0000000..a3f7fca --- /dev/null +++ b/.emacs.d/snippets/org-mode/header @@ -0,0 +1,8 @@ +# -*- mode: snippet -*- +#name : header +# -- +#+TITLE: ${1:} +#+AUTHOR: `(user-full-name)` +#+EMAIL: `user-mail-address` + +* $0 \ No newline at end of file diff --git a/.emacs.d/test-startup.sh b/.emacs.d/test-startup.sh new file mode 100755 index 0000000..d8f3547 --- /dev/null +++ b/.emacs.d/test-startup.sh @@ -0,0 +1,22 @@ +#!/bin/sh -ex +# Kindly taken from: https://github.com/purcell/emacs.d + +if [ -n "$TRAVIS" ]; then + # We still need to have an .emacs.d directory, so emacs-async (dependency of + # some other package) is happy. + export HOME=$PWD/.. + ln -s emacs ../.emacs.d +fi + +echo "Attempting startup..." + +${EMACS:=emacs} -nw --batch \ + --eval '(let ((debug-on-error t) + (url-show-status nil) + (user-emacs-directory default-directory) + (package-user-dir (expand-file-name (concat "elpa-" emacs-version))) + (custom-theme-directory default-directory) + (user-init-file (expand-file-name "init.el"))) + (load-file user-init-file) + (run-hooks (quote after-init-hook)))' +echo "Startup successful" diff --git a/.fonts/fonts/ClickerScript-Regular.ttf b/.fonts/fonts/ClickerScript-Regular.ttf new file mode 100644 index 0000000..dd1be83 Binary files /dev/null and b/.fonts/fonts/ClickerScript-Regular.ttf differ diff --git a/.fonts/fonts/DroidSansMono-Powerline.ttf b/.fonts/fonts/DroidSansMono-Powerline.ttf new file mode 100644 index 0000000..fafb790 Binary files /dev/null and b/.fonts/fonts/DroidSansMono-Powerline.ttf differ diff --git a/.fonts/fonts/DroidSansMonoDotted-Powerline.ttf b/.fonts/fonts/DroidSansMonoDotted-Powerline.ttf new file mode 100644 index 0000000..3f941e9 Binary files /dev/null and b/.fonts/fonts/DroidSansMonoDotted-Powerline.ttf differ diff --git a/.fonts/fonts/DroidSansMonoSlashed-Powerline.ttf b/.fonts/fonts/DroidSansMonoSlashed-Powerline.ttf new file mode 100644 index 0000000..af42b83 Binary files /dev/null and b/.fonts/fonts/DroidSansMonoSlashed-Powerline.ttf differ diff --git a/.fonts/fonts/Inconsolata-dz-Powerline.otf b/.fonts/fonts/Inconsolata-dz-Powerline.otf new file mode 100644 index 0000000..51bdd74 Binary files /dev/null and b/.fonts/fonts/Inconsolata-dz-Powerline.otf differ diff --git a/.fonts/fonts/Inconsolata-dz.otf b/.fonts/fonts/Inconsolata-dz.otf new file mode 100644 index 0000000..8ff3104 Binary files /dev/null and b/.fonts/fonts/Inconsolata-dz.otf differ diff --git a/.fonts/fonts/Menlo-Powerline.otf b/.fonts/fonts/Menlo-Powerline.otf new file mode 100644 index 0000000..417a3fa Binary files /dev/null and b/.fonts/fonts/Menlo-Powerline.otf differ diff --git a/.fonts/fonts/fonts.dir b/.fonts/fonts/fonts.dir new file mode 100644 index 0000000..573541a --- /dev/null +++ b/.fonts/fonts/fonts.dir @@ -0,0 +1 @@ +0 diff --git a/.fonts/fonts/mensch-Powerline.otf b/.fonts/fonts/mensch-Powerline.otf new file mode 100644 index 0000000..2eb2232 Binary files /dev/null and b/.fonts/fonts/mensch-Powerline.otf differ diff --git a/.gemrc b/.gemrc new file mode 100644 index 0000000..8198640 --- /dev/null +++ b/.gemrc @@ -0,0 +1,3 @@ +install: --no-document +update: --no-document + diff --git a/.gitcompletion.sh b/.gitcompletion.sh new file mode 100644 index 0000000..9f71bcd --- /dev/null +++ b/.gitcompletion.sh @@ -0,0 +1,3096 @@ +# bash/zsh completion support for core Git. +# +# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org> +# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). +# Distributed under the GNU General Public License, version 2.0. +# +# The contained completion routines provide support for completing: +# +# *) local and remote branch names +# *) local and remote tag names +# *) .git/remotes file names +# *) git 'subcommands' +# *) git email aliases for git-send-email +# *) tree paths within 'ref:path/to/file' expressions +# *) file paths within current working directory and index +# *) common --long-options +# +# To use these routines: +# +# 1) Copy this file to somewhere (e.g. ~/.git-completion.bash). +# 2) Add the following line to your .bashrc/.zshrc: +# source ~/.git-completion.bash +# 3) Consider changing your PS1 to also show the current branch, +# see git-prompt.sh for details. +# +# If you use complex aliases of form '!f() { ... }; f', you can use the null +# command ':' as the first command in the function body to declare the desired +# completion style. For example '!f() { : git commit ; ... }; f' will +# tell the completion to use commit completion. This also works with aliases +# of form "!sh -c '...'". For example, "!sh -c ': git commit ; ... '". +# +# Compatible with bash 3.2.57. +# +# You can set the following environment variables to influence the behavior of +# the completion routines: +# +# GIT_COMPLETION_CHECKOUT_NO_GUESS +# +# When set to "1", do not include "DWIM" suggestions in git-checkout +# completion (e.g., completing "foo" when "origin/foo" exists). + +case "$COMP_WORDBREAKS" in +*:*) : great ;; +*) COMP_WORDBREAKS="$COMP_WORDBREAKS:" +esac + +# Discovers the path to the git repository taking any '--git-dir=<path>' and +# '-C <path>' options into account and stores it in the $__git_repo_path +# variable. +__git_find_repo_path () +{ + if [ -n "$__git_repo_path" ]; then + # we already know where it is + return + fi + + if [ -n "${__git_C_args-}" ]; then + __git_repo_path="$(git "${__git_C_args[@]}" \ + ${__git_dir:+--git-dir="$__git_dir"} \ + rev-parse --absolute-git-dir 2>/dev/null)" + elif [ -n "${__git_dir-}" ]; then + test -d "$__git_dir" && + __git_repo_path="$__git_dir" + elif [ -n "${GIT_DIR-}" ]; then + test -d "${GIT_DIR-}" && + __git_repo_path="$GIT_DIR" + elif [ -d .git ]; then + __git_repo_path=.git + else + __git_repo_path="$(git rev-parse --git-dir 2>/dev/null)" + fi +} + +# Deprecated: use __git_find_repo_path() and $__git_repo_path instead +# __gitdir accepts 0 or 1 arguments (i.e., location) +# returns location of .git repo +__gitdir () +{ + if [ -z "${1-}" ]; then + __git_find_repo_path || return 1 + echo "$__git_repo_path" + elif [ -d "$1/.git" ]; then + echo "$1/.git" + else + echo "$1" + fi +} + +# Runs git with all the options given as argument, respecting any +# '--git-dir=<path>' and '-C <path>' options present on the command line +__git () +{ + git ${__git_C_args:+"${__git_C_args[@]}"} \ + ${__git_dir:+--git-dir="$__git_dir"} "$@" 2>/dev/null +} + +# Removes backslash escaping, single quotes and double quotes from a word, +# stores the result in the variable $dequoted_word. +# 1: The word to dequote. +__git_dequote () +{ + local rest="$1" len ch + + dequoted_word="" + + while test -n "$rest"; do + len=${#dequoted_word} + dequoted_word="$dequoted_word${rest%%[\\\'\"]*}" + rest="${rest:$((${#dequoted_word}-$len))}" + + case "${rest:0:1}" in + \\) + ch="${rest:1:1}" + case "$ch" in + $'\n') + ;; + *) + dequoted_word="$dequoted_word$ch" + ;; + esac + rest="${rest:2}" + ;; + \') + rest="${rest:1}" + len=${#dequoted_word} + dequoted_word="$dequoted_word${rest%%\'*}" + rest="${rest:$((${#dequoted_word}-$len+1))}" + ;; + \") + rest="${rest:1}" + while test -n "$rest" ; do + len=${#dequoted_word} + dequoted_word="$dequoted_word${rest%%[\\\"]*}" + rest="${rest:$((${#dequoted_word}-$len))}" + case "${rest:0:1}" in + \\) + ch="${rest:1:1}" + case "$ch" in + \"|\\|\$|\`) + dequoted_word="$dequoted_word$ch" + ;; + $'\n') + ;; + *) + dequoted_word="$dequoted_word\\$ch" + ;; + esac + rest="${rest:2}" + ;; + \") + rest="${rest:1}" + break + ;; + esac + done + ;; + esac + done +} + +# The following function is based on code from: +# +# bash_completion - programmable completion functions for bash 3.2+ +# +# Copyright © 2006-2008, Ian Macdonald <ian@caliban.org> +# © 2009-2010, Bash Completion Maintainers +# <bash-completion-devel@lists.alioth.debian.org> +# +# This program is free software; you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation; either version 2, or (at your option) +# any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, see <http://www.gnu.org/licenses/>. +# +# The latest version of this software can be obtained here: +# +# http://bash-completion.alioth.debian.org/ +# +# RELEASE: 2.x + +# This function can be used to access a tokenized list of words +# on the command line: +# +# __git_reassemble_comp_words_by_ref '=:' +# if test "${words_[cword_-1]}" = -w +# then +# ... +# fi +# +# The argument should be a collection of characters from the list of +# word completion separators (COMP_WORDBREAKS) to treat as ordinary +# characters. +# +# This is roughly equivalent to going back in time and setting +# COMP_WORDBREAKS to exclude those characters. The intent is to +# make option types like --date=<type> and <rev>:<path> easy to +# recognize by treating each shell word as a single token. +# +# It is best not to set COMP_WORDBREAKS directly because the value is +# shared with other completion scripts. By the time the completion +# function gets called, COMP_WORDS has already been populated so local +# changes to COMP_WORDBREAKS have no effect. +# +# Output: words_, cword_, cur_. + +__git_reassemble_comp_words_by_ref() +{ + local exclude i j first + # Which word separators to exclude? + exclude="${1//[^$COMP_WORDBREAKS]}" + cword_=$COMP_CWORD + if [ -z "$exclude" ]; then + words_=("${COMP_WORDS[@]}") + return + fi + # List of word completion separators has shrunk; + # re-assemble words to complete. + for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do + # Append each nonempty word consisting of just + # word separator characters to the current word. + first=t + while + [ $i -gt 0 ] && + [ -n "${COMP_WORDS[$i]}" ] && + # word consists of excluded word separators + [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ] + do + # Attach to the previous token, + # unless the previous token is the command name. + if [ $j -ge 2 ] && [ -n "$first" ]; then + ((j--)) + fi + first= + words_[$j]=${words_[j]}${COMP_WORDS[i]} + if [ $i = $COMP_CWORD ]; then + cword_=$j + fi + if (($i < ${#COMP_WORDS[@]} - 1)); then + ((i++)) + else + # Done. + return + fi + done + words_[$j]=${words_[j]}${COMP_WORDS[i]} + if [ $i = $COMP_CWORD ]; then + cword_=$j + fi + done +} + +if ! type _get_comp_words_by_ref >/dev/null 2>&1; then +_get_comp_words_by_ref () +{ + local exclude cur_ words_ cword_ + if [ "$1" = "-n" ]; then + exclude=$2 + shift 2 + fi + __git_reassemble_comp_words_by_ref "$exclude" + cur_=${words_[cword_]} + while [ $# -gt 0 ]; do + case "$1" in + cur) + cur=$cur_ + ;; + prev) + prev=${words_[$cword_-1]} + ;; + words) + words=("${words_[@]}") + ;; + cword) + cword=$cword_ + ;; + esac + shift + done +} +fi + +# Fills the COMPREPLY array with prefiltered words without any additional +# processing. +# Callers must take care of providing only words that match the current word +# to be completed and adding any prefix and/or suffix (trailing space!), if +# necessary. +# 1: List of newline-separated matching completion words, complete with +# prefix and suffix. +__gitcomp_direct () +{ + local IFS=$'\n' + + COMPREPLY=($1) +} + +__gitcompappend () +{ + local x i=${#COMPREPLY[@]} + for x in $1; do + if [[ "$x" == "$3"* ]]; then + COMPREPLY[i++]="$2$x$4" + fi + done +} + +__gitcompadd () +{ + COMPREPLY=() + __gitcompappend "$@" +} + +# Generates completion reply, appending a space to possible completion words, +# if necessary. +# It accepts 1 to 4 arguments: +# 1: List of possible completion words. +# 2: A prefix to be added to each possible completion word (optional). +# 3: Generate possible completion matches for this word (optional). +# 4: A suffix to be appended to each possible completion word (optional). +__gitcomp () +{ + local cur_="${3-$cur}" + + case "$cur_" in + --*=) + ;; + --no-*) + local c i=0 IFS=$' \t\n' + for c in $1; do + if [[ $c == "--" ]]; then + continue + fi + c="$c${4-}" + if [[ $c == "$cur_"* ]]; then + case $c in + --*=*|*.) ;; + *) c="$c " ;; + esac + COMPREPLY[i++]="${2-}$c" + fi + done + ;; + *) + local c i=0 IFS=$' \t\n' + for c in $1; do + if [[ $c == "--" ]]; then + c="--no-...${4-}" + if [[ $c == "$cur_"* ]]; then + COMPREPLY[i++]="${2-}$c " + fi + break + fi + c="$c${4-}" + if [[ $c == "$cur_"* ]]; then + case $c in + --*=*|*.) ;; + *) c="$c " ;; + esac + COMPREPLY[i++]="${2-}$c" + fi + done + ;; + esac +} + +# Clear the variables caching builtins' options when (re-)sourcing +# the completion script. +if [[ -n ${ZSH_VERSION-} ]]; then + unset $(set |sed -ne 's/^\(__gitcomp_builtin_[a-zA-Z0-9_][a-zA-Z0-9_]*\)=.*/\1/p') 2>/dev/null +else + unset $(compgen -v __gitcomp_builtin_) +fi + +# This function is equivalent to +# +# __gitcomp "$(git xxx --git-completion-helper) ..." +# +# except that the output is cached. Accept 1-3 arguments: +# 1: the git command to execute, this is also the cache key +# 2: extra options to be added on top (e.g. negative forms) +# 3: options to be excluded +__gitcomp_builtin () +{ + # spaces must be replaced with underscore for multi-word + # commands, e.g. "git remote add" becomes remote_add. + local cmd="$1" + local incl="$2" + local excl="$3" + + local var=__gitcomp_builtin_"${cmd/-/_}" + local options + eval "options=\$$var" + + if [ -z "$options" ]; then + # leading and trailing spaces are significant to make + # option removal work correctly. + options=" $incl $(__git ${cmd/_/ } --git-completion-helper) " + for i in $excl; do + options="${options/ $i / }" + done + eval "$var=\"$options\"" + fi + + __gitcomp "$options" +} + +# Variation of __gitcomp_nl () that appends to the existing list of +# completion candidates, COMPREPLY. +__gitcomp_nl_append () +{ + local IFS=$'\n' + __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }" +} + +# Generates completion reply from newline-separated possible completion words +# by appending a space to all of them. +# It accepts 1 to 4 arguments: +# 1: List of possible completion words, separated by a single newline. +# 2: A prefix to be added to each possible completion word (optional). +# 3: Generate possible completion matches for this word (optional). +# 4: A suffix to be appended to each possible completion word instead of +# the default space (optional). If specified but empty, nothing is +# appended. +__gitcomp_nl () +{ + COMPREPLY=() + __gitcomp_nl_append "$@" +} + +# Fills the COMPREPLY array with prefiltered paths without any additional +# processing. +# Callers must take care of providing only paths that match the current path +# to be completed and adding any prefix path components, if necessary. +# 1: List of newline-separated matching paths, complete with all prefix +# path components. +__gitcomp_file_direct () +{ + local IFS=$'\n' + + COMPREPLY=($1) + + # use a hack to enable file mode in bash < 4 + compopt -o filenames +o nospace 2>/dev/null || + compgen -f /non-existing-dir/ >/dev/null || + true +} + +# Generates completion reply with compgen from newline-separated possible +# completion filenames. +# It accepts 1 to 3 arguments: +# 1: List of possible completion filenames, separated by a single newline. +# 2: A directory prefix to be added to each possible completion filename +# (optional). +# 3: Generate possible completion matches for this word (optional). +__gitcomp_file () +{ + local IFS=$'\n' + + # XXX does not work when the directory prefix contains a tilde, + # since tilde expansion is not applied. + # This means that COMPREPLY will be empty and Bash default + # completion will be used. + __gitcompadd "$1" "${2-}" "${3-$cur}" "" + + # use a hack to enable file mode in bash < 4 + compopt -o filenames +o nospace 2>/dev/null || + compgen -f /non-existing-dir/ >/dev/null || + true +} + +# Execute 'git ls-files', unless the --committable option is specified, in +# which case it runs 'git diff-index' to find out the files that can be +# committed. It return paths relative to the directory specified in the first +# argument, and using the options specified in the second argument. +__git_ls_files_helper () +{ + if [ "$2" == "--committable" ]; then + __git -C "$1" -c core.quotePath=false diff-index \ + --name-only --relative HEAD -- "${3//\\/\\\\}*" + else + # NOTE: $2 is not quoted in order to support multiple options + __git -C "$1" -c core.quotePath=false ls-files \ + --exclude-standard $2 -- "${3//\\/\\\\}*" + fi +} + + +# __git_index_files accepts 1 or 2 arguments: +# 1: Options to pass to ls-files (required). +# 2: A directory path (optional). +# If provided, only files within the specified directory are listed. +# Sub directories are never recursed. Path must have a trailing +# slash. +# 3: List only paths matching this path component (optional). +__git_index_files () +{ + local root="$2" match="$3" + + __git_ls_files_helper "$root" "$1" "$match" | + awk -F / -v pfx="${2//\\/\\\\}" '{ + paths[$1] = 1 + } + END { + for (p in paths) { + if (substr(p, 1, 1) != "\"") { + # No special characters, easy! + print pfx p + continue + } + + # The path is quoted. + p = dequote(p) + if (p == "") + continue + + # Even when a directory name itself does not contain + # any special characters, it will still be quoted if + # any of its (stripped) trailing path components do. + # Because of this we may have seen the same direcory + # both quoted and unquoted. + if (p in paths) + # We have seen the same directory unquoted, + # skip it. + continue + else + print pfx p + } + } + function dequote(p, bs_idx, out, esc, esc_idx, dec) { + # Skip opening double quote. + p = substr(p, 2) + + # Interpret backslash escape sequences. + while ((bs_idx = index(p, "\\")) != 0) { + out = out substr(p, 1, bs_idx - 1) + esc = substr(p, bs_idx + 1, 1) + p = substr(p, bs_idx + 2) + + if ((esc_idx = index("abtvfr\"\\", esc)) != 0) { + # C-style one-character escape sequence. + out = out substr("\a\b\t\v\f\r\"\\", + esc_idx, 1) + } else if (esc == "n") { + # Uh-oh, a newline character. + # We cant reliably put a pathname + # containing a newline into COMPREPLY, + # and the newline would create a mess. + # Skip this path. + return "" + } else { + # Must be a \nnn octal value, then. + dec = esc * 64 + \ + substr(p, 1, 1) * 8 + \ + substr(p, 2, 1) + out = out sprintf("%c", dec) + p = substr(p, 3) + } + } + # Drop closing double quote, if there is one. + # (There isnt any if this is a directory, as it was + # already stripped with the trailing path components.) + if (substr(p, length(p), 1) == "\"") + out = out substr(p, 1, length(p) - 1) + else + out = out p + + return out + }' +} + +# __git_complete_index_file requires 1 argument: +# 1: the options to pass to ls-file +# +# The exception is --committable, which finds the files appropriate commit. +__git_complete_index_file () +{ + local dequoted_word pfx="" cur_ + + __git_dequote "$cur" + + case "$dequoted_word" in + ?*/*) + pfx="${dequoted_word%/*}/" + cur_="${dequoted_word##*/}" + ;; + *) + cur_="$dequoted_word" + esac + + __gitcomp_file_direct "$(__git_index_files "$1" "$pfx" "$cur_")" +} + +# Lists branches from the local repository. +# 1: A prefix to be added to each listed branch (optional). +# 2: List only branches matching this word (optional; list all branches if +# unset or empty). +# 3: A suffix to be appended to each listed branch (optional). +__git_heads () +{ + local pfx="${1-}" cur_="${2-}" sfx="${3-}" + + __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \ + "refs/heads/$cur_*" "refs/heads/$cur_*/**" +} + +# Lists tags from the local repository. +# Accepts the same positional parameters as __git_heads() above. +__git_tags () +{ + local pfx="${1-}" cur_="${2-}" sfx="${3-}" + + __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \ + "refs/tags/$cur_*" "refs/tags/$cur_*/**" +} + +# Lists refs from the local (by default) or from a remote repository. +# It accepts 0, 1 or 2 arguments: +# 1: The remote to list refs from (optional; ignored, if set but empty). +# Can be the name of a configured remote, a path, or a URL. +# 2: In addition to local refs, list unique branches from refs/remotes/ for +# 'git checkout's tracking DWIMery (optional; ignored, if set but empty). +# 3: A prefix to be added to each listed ref (optional). +# 4: List only refs matching this word (optional; list all refs if unset or +# empty). +# 5: A suffix to be appended to each listed ref (optional; ignored, if set +# but empty). +# +# Use __git_complete_refs() instead. +__git_refs () +{ + local i hash dir track="${2-}" + local list_refs_from=path remote="${1-}" + local format refs + local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}" + local match="${4-}" + local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers + + __git_find_repo_path + dir="$__git_repo_path" + + if [ -z "$remote" ]; then + if [ -z "$dir" ]; then + return + fi + else + if __git_is_configured_remote "$remote"; then + # configured remote takes precedence over a + # local directory with the same name + list_refs_from=remote + elif [ -d "$remote/.git" ]; then + dir="$remote/.git" + elif [ -d "$remote" ]; then + dir="$remote" + else + list_refs_from=url + fi + fi + + if [ "$list_refs_from" = path ]; then + if [[ "$cur_" == ^* ]]; then + pfx="$pfx^" + fer_pfx="$fer_pfx^" + cur_=${cur_#^} + match=${match#^} + fi + case "$cur_" in + refs|refs/*) + format="refname" + refs=("$match*" "$match*/**") + track="" + ;; + *) + for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD REBASE_HEAD; do + case "$i" in + $match*) + if [ -e "$dir/$i" ]; then + echo "$pfx$i$sfx" + fi + ;; + esac + done + format="refname:strip=2" + refs=("refs/tags/$match*" "refs/tags/$match*/**" + "refs/heads/$match*" "refs/heads/$match*/**" + "refs/remotes/$match*" "refs/remotes/$match*/**") + ;; + esac + __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \ + "${refs[@]}" + if [ -n "$track" ]; then + # employ the heuristic used by git checkout + # Try to find a remote branch that matches the completion word + # but only output if the branch name is unique + __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \ + --sort="refname:strip=3" \ + "refs/remotes/*/$match*" "refs/remotes/*/$match*/**" | \ + uniq -u + fi + return + fi + case "$cur_" in + refs|refs/*) + __git ls-remote "$remote" "$match*" | \ + while read -r hash i; do + case "$i" in + *^{}) ;; + *) echo "$pfx$i$sfx" ;; + esac + done + ;; + *) + if [ "$list_refs_from" = remote ]; then + case "HEAD" in + $match*) echo "${pfx}HEAD$sfx" ;; + esac + __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \ + "refs/remotes/$remote/$match*" \ + "refs/remotes/$remote/$match*/**" + else + local query_symref + case "HEAD" in + $match*) query_symref="HEAD" ;; + esac + __git ls-remote "$remote" $query_symref \ + "refs/tags/$match*" "refs/heads/$match*" \ + "refs/remotes/$match*" | + while read -r hash i; do + case "$i" in + *^{}) ;; + refs/*) echo "$pfx${i#refs/*/}$sfx" ;; + *) echo "$pfx$i$sfx" ;; # symbolic refs + esac + done + fi + ;; + esac +} + +# Completes refs, short and long, local and remote, symbolic and pseudo. +# +# Usage: __git_complete_refs [<option>]... +# --remote=<remote>: The remote to list refs from, can be the name of a +# configured remote, a path, or a URL. +# --track: List unique remote branches for 'git checkout's tracking DWIMery. +# --pfx=<prefix>: A prefix to be added to each ref. +# --cur=<word>: The current ref to be completed. Defaults to the current +# word to be completed. +# --sfx=<suffix>: A suffix to be appended to each ref instead of the default +# space. +__git_complete_refs () +{ + local remote track pfx cur_="$cur" sfx=" " + + while test $# != 0; do + case "$1" in + --remote=*) remote="${1##--remote=}" ;; + --track) track="yes" ;; + --pfx=*) pfx="${1##--pfx=}" ;; + --cur=*) cur_="${1##--cur=}" ;; + --sfx=*) sfx="${1##--sfx=}" ;; + *) return 1 ;; + esac + shift + done + + __gitcomp_direct "$(__git_refs "$remote" "$track" "$pfx" "$cur_" "$sfx")" +} + +# __git_refs2 requires 1 argument (to pass to __git_refs) +# Deprecated: use __git_complete_fetch_refspecs() instead. +__git_refs2 () +{ + local i + for i in $(__git_refs "$1"); do + echo "$i:$i" + done +} + +# Completes refspecs for fetching from a remote repository. +# 1: The remote repository. +# 2: A prefix to be added to each listed refspec (optional). +# 3: The ref to be completed as a refspec instead of the current word to be +# completed (optional) +# 4: A suffix to be appended to each listed refspec instead of the default +# space (optional). +__git_complete_fetch_refspecs () +{ + local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }" + + __gitcomp_direct "$( + for i in $(__git_refs "$remote" "" "" "$cur_") ; do + echo "$pfx$i:$i$sfx" + done + )" +} + +# __git_refs_remotes requires 1 argument (to pass to ls-remote) +__git_refs_remotes () +{ + local i hash + __git ls-remote "$1" 'refs/heads/*' | \ + while read -r hash i; do + echo "$i:refs/remotes/$1/${i#refs/heads/}" + done +} + +__git_remotes () +{ + __git_find_repo_path + test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes" + __git remote +} + +# Returns true if $1 matches the name of a configured remote, false otherwise. +__git_is_configured_remote () +{ + local remote + for remote in $(__git_remotes); do + if [ "$remote" = "$1" ]; then + return 0 + fi + done + return 1 +} + +__git_list_merge_strategies () +{ + LANG=C LC_ALL=C git merge -s help 2>&1 | + sed -n -e '/[Aa]vailable strategies are: /,/^$/{ + s/\.$// + s/.*:// + s/^[ ]*// + s/[ ]*$// + p + }' +} + +__git_merge_strategies= +# 'git merge -s help' (and thus detection of the merge strategy +# list) fails, unfortunately, if run outside of any git working +# tree. __git_merge_strategies is set to the empty string in +# that case, and the detection will be repeated the next time it +# is needed. +__git_compute_merge_strategies () +{ + test -n "$__git_merge_strategies" || + __git_merge_strategies=$(__git_list_merge_strategies) +} + +__git_merge_strategy_options="ours theirs subtree subtree= patience + histogram diff-algorithm= ignore-space-change ignore-all-space + ignore-space-at-eol renormalize no-renormalize no-renames + find-renames find-renames= rename-threshold=" + +__git_complete_revlist_file () +{ + local dequoted_word pfx ls ref cur_="$cur" + case "$cur_" in + *..?*:*) + return + ;; + ?*:*) + ref="${cur_%%:*}" + cur_="${cur_#*:}" + + __git_dequote "$cur_" + + case "$dequoted_word" in + ?*/*) + pfx="${dequoted_word%/*}" + cur_="${dequoted_word##*/}" + ls="$ref:$pfx" + pfx="$pfx/" + ;; + *) + cur_="$dequoted_word" + ls="$ref" + ;; + esac + + case "$COMP_WORDBREAKS" in + *:*) : great ;; + *) pfx="$ref:$pfx" ;; + esac + + __gitcomp_file "$(__git ls-tree "$ls" \ + | sed 's/^.* // + s/$//')" \ + "$pfx" "$cur_" + ;; + *...*) + pfx="${cur_%...*}..." + cur_="${cur_#*...}" + __git_complete_refs --pfx="$pfx" --cur="$cur_" + ;; + *..*) + pfx="${cur_%..*}.." + cur_="${cur_#*..}" + __git_complete_refs --pfx="$pfx" --cur="$cur_" + ;; + *) + __git_complete_refs + ;; + esac +} + +__git_complete_file () +{ + __git_complete_revlist_file +} + +__git_complete_revlist () +{ + __git_complete_revlist_file +} + +__git_complete_remote_or_refspec () +{ + local cur_="$cur" cmd="${words[1]}" + local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0 + if [ "$cmd" = "remote" ]; then + ((c++)) + fi + while [ $c -lt $cword ]; do + i="${words[c]}" + case "$i" in + --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;; + -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;; + --all) + case "$cmd" in + push) no_complete_refspec=1 ;; + fetch) + return + ;; + *) ;; + esac + ;; + --multiple) no_complete_refspec=1; break ;; + -*) ;; + *) remote="$i"; break ;; + esac + ((c++)) + done + if [ -z "$remote" ]; then + __gitcomp_nl "$(__git_remotes)" + return + fi + if [ $no_complete_refspec = 1 ]; then + return + fi + [ "$remote" = "." ] && remote= + case "$cur_" in + *:*) + case "$COMP_WORDBREAKS" in + *:*) : great ;; + *) pfx="${cur_%%:*}:" ;; + esac + cur_="${cur_#*:}" + lhs=0 + ;; + +*) + pfx="+" + cur_="${cur_#+}" + ;; + esac + case "$cmd" in + fetch) + if [ $lhs = 1 ]; then + __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_" + else + __git_complete_refs --pfx="$pfx" --cur="$cur_" + fi + ;; + pull|remote) + if [ $lhs = 1 ]; then + __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_" + else + __git_complete_refs --pfx="$pfx" --cur="$cur_" + fi + ;; + push) + if [ $lhs = 1 ]; then + __git_complete_refs --pfx="$pfx" --cur="$cur_" + else + __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_" + fi + ;; + esac +} + +__git_complete_strategy () +{ + __git_compute_merge_strategies + case "$prev" in + -s|--strategy) + __gitcomp "$__git_merge_strategies" + return 0 + ;; + -X) + __gitcomp "$__git_merge_strategy_options" + return 0 + ;; + esac + case "$cur" in + --strategy=*) + __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}" + return 0 + ;; + --strategy-option=*) + __gitcomp "$__git_merge_strategy_options" "" "${cur##--strategy-option=}" + return 0 + ;; + esac + return 1 +} + +__git_all_commands= +__git_compute_all_commands () +{ + test -n "$__git_all_commands" || + __git_all_commands=$(__git --list-cmds=main,others,alias,nohelpers) +} + +# Lists all set config variables starting with the given section prefix, +# with the prefix removed. +__git_get_config_variables () +{ + local section="$1" i IFS=$'\n' + for i in $(__git config --name-only --get-regexp "^$section\..*"); do + echo "${i#$section.}" + done +} + +__git_pretty_aliases () +{ + __git_get_config_variables "pretty" +} + +# __git_aliased_command requires 1 argument +__git_aliased_command () +{ + local word cmdline=$(__git config --get "alias.$1") + for word in $cmdline; do + case "$word" in + \!gitk|gitk) + echo "gitk" + return + ;; + \!*) : shell command alias ;; + -*) : option ;; + *=*) : setting env ;; + git) : git itself ;; + \(\)) : skip parens of shell function definition ;; + {) : skip start of shell helper function ;; + :) : skip null command ;; + \'*) : skip opening quote after sh -c ;; + *) + echo "$word" + return + esac + done +} + +# __git_find_on_cmdline requires 1 argument +__git_find_on_cmdline () +{ + local word subcommand c=1 + while [ $c -lt $cword ]; do + word="${words[c]}" + for subcommand in $1; do + if [ "$subcommand" = "$word" ]; then + echo "$subcommand" + return + fi + done + ((c++)) + done +} + +# Echo the value of an option set on the command line or config +# +# $1: short option name +# $2: long option name including = +# $3: list of possible values +# $4: config string (optional) +# +# example: +# result="$(__git_get_option_value "-d" "--do-something=" \ +# "yes no" "core.doSomething")" +# +# result is then either empty (no option set) or "yes" or "no" +# +# __git_get_option_value requires 3 arguments +__git_get_option_value () +{ + local c short_opt long_opt val + local result= values config_key word + + short_opt="$1" + long_opt="$2" + values="$3" + config_key="$4" + + ((c = $cword - 1)) + while [ $c -ge 0 ]; do + word="${words[c]}" + for val in $values; do + if [ "$short_opt$val" = "$word" ] || + [ "$long_opt$val" = "$word" ]; then + result="$val" + break 2 + fi + done + ((c--)) + done + + if [ -n "$config_key" ] && [ -z "$result" ]; then + result="$(__git config "$config_key")" + fi + + echo "$result" +} + +__git_has_doubledash () +{ + local c=1 + while [ $c -lt $cword ]; do + if [ "--" = "${words[c]}" ]; then + return 0 + fi + ((c++)) + done + return 1 +} + +# Try to count non option arguments passed on the command line for the +# specified git command. +# When options are used, it is necessary to use the special -- option to +# tell the implementation were non option arguments begin. +# XXX this can not be improved, since options can appear everywhere, as +# an example: +# git mv x -n y +# +# __git_count_arguments requires 1 argument: the git command executed. +__git_count_arguments () +{ + local word i c=0 + + # Skip "git" (first argument) + for ((i=1; i < ${#words[@]}; i++)); do + word="${words[i]}" + + case "$word" in + --) + # Good; we can assume that the following are only non + # option arguments. + ((c = 0)) + ;; + "$1") + # Skip the specified git command and discard git + # main options + ((c = 0)) + ;; + ?*) + ((c++)) + ;; + esac + done + + printf "%d" $c +} + +__git_whitespacelist="nowarn warn error error-all fix" +__git_patchformat="mbox stgit stgit-series hg mboxrd" +__git_am_inprogress_options="--skip --continue --resolved --abort --quit --show-current-patch" + +_git_am () +{ + __git_find_repo_path + if [ -d "$__git_repo_path"/rebase-apply ]; then + __gitcomp "$__git_am_inprogress_options" + return + fi + case "$cur" in + --whitespace=*) + __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" + return + ;; + --patch-format=*) + __gitcomp "$__git_patchformat" "" "${cur##--patch-format=}" + return + ;; + --*) + __gitcomp_builtin am "" \ + "$__git_am_inprogress_options" + return + esac +} + +_git_apply () +{ + case "$cur" in + --whitespace=*) + __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" + return + ;; + --*) + __gitcomp_builtin apply + return + esac +} + +_git_add () +{ + case "$cur" in + --chmod=*) + __gitcomp "+x -x" "" "${cur##--chmod=}" + return + ;; + --*) + __gitcomp_builtin add + return + esac + + local complete_opt="--others --modified --directory --no-empty-directory" + if test -n "$(__git_find_on_cmdline "-u --update")" + then + complete_opt="--modified" + fi + __git_complete_index_file "$complete_opt" +} + +_git_archive () +{ + case "$cur" in + --format=*) + __gitcomp "$(git archive --list)" "" "${cur##--format=}" + return + ;; + --remote=*) + __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}" + return + ;; + --*) + __gitcomp " + --format= --list --verbose + --prefix= --remote= --exec= --output + " + return + ;; + esac + __git_complete_file +} + +_git_bisect () +{ + __git_has_doubledash && return + + local subcommands="start bad good skip reset visualize replay log run" + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + __git_find_repo_path + if [ -f "$__git_repo_path"/BISECT_START ]; then + __gitcomp "$subcommands" + else + __gitcomp "replay start" + fi + return + fi + + case "$subcommand" in + bad|good|reset|skip|start) + __git_complete_refs + ;; + *) + ;; + esac +} + +__git_ref_fieldlist="refname objecttype objectsize objectname upstream push HEAD symref" + +_git_branch () +{ + local i c=1 only_local_ref="n" has_r="n" + + while [ $c -lt $cword ]; do + i="${words[c]}" + case "$i" in + -d|--delete|-m|--move) only_local_ref="y" ;; + -r|--remotes) has_r="y" ;; + esac + ((c++)) + done + + case "$cur" in + --set-upstream-to=*) + __git_complete_refs --cur="${cur##--set-upstream-to=}" + ;; + --*) + __gitcomp_builtin branch + ;; + *) + if [ $only_local_ref = "y" -a $has_r = "n" ]; then + __gitcomp_direct "$(__git_heads "" "$cur" " ")" + else + __git_complete_refs + fi + ;; + esac +} + +_git_bundle () +{ + local cmd="${words[2]}" + case "$cword" in + 2) + __gitcomp "create list-heads verify unbundle" + ;; + 3) + # looking for a file + ;; + *) + case "$cmd" in + create) + __git_complete_revlist + ;; + esac + ;; + esac +} + +_git_checkout () +{ + __git_has_doubledash && return + + case "$cur" in + --conflict=*) + __gitcomp "diff3 merge" "" "${cur##--conflict=}" + ;; + --*) + __gitcomp_builtin checkout + ;; + *) + # check if --track, --no-track, or --no-guess was specified + # if so, disable DWIM mode + local flags="--track --no-track --no-guess" track_opt="--track" + if [ "$GIT_COMPLETION_CHECKOUT_NO_GUESS" = "1" ] || + [ -n "$(__git_find_on_cmdline "$flags")" ]; then + track_opt='' + fi + __git_complete_refs $track_opt + ;; + esac +} + +__git_cherry_pick_inprogress_options="--continue --quit --abort" + +_git_cherry_pick () +{ + __git_find_repo_path + if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then + __gitcomp "$__git_cherry_pick_inprogress_options" + return + fi + + __git_complete_strategy && return + + case "$cur" in + --*) + __gitcomp_builtin cherry-pick "" \ + "$__git_cherry_pick_inprogress_options" + ;; + *) + __git_complete_refs + ;; + esac +} + +_git_clean () +{ + case "$cur" in + --*) + __gitcomp_builtin clean + return + ;; + esac + + # XXX should we check for -x option ? + __git_complete_index_file "--others --directory" +} + +_git_clone () +{ + case "$cur" in + --*) + __gitcomp_builtin clone + return + ;; + esac +} + +__git_untracked_file_modes="all no normal" + +_git_commit () +{ + case "$prev" in + -c|-C) + __git_complete_refs + return + ;; + esac + + case "$cur" in + --cleanup=*) + __gitcomp "default scissors strip verbatim whitespace + " "" "${cur##--cleanup=}" + return + ;; + --reuse-message=*|--reedit-message=*|\ + --fixup=*|--squash=*) + __git_complete_refs --cur="${cur#*=}" + return + ;; + --untracked-files=*) + __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}" + return + ;; + --*) + __gitcomp_builtin commit + return + esac + + if __git rev-parse --verify --quiet HEAD >/dev/null; then + __git_complete_index_file "--committable" + else + # This is the first commit + __git_complete_index_file "--cached" + fi +} + +_git_describe () +{ + case "$cur" in + --*) + __gitcomp_builtin describe + return + esac + __git_complete_refs +} + +__git_diff_algorithms="myers minimal patience histogram" + +__git_diff_submodule_formats="diff log short" + +__git_diff_common_options="--stat --numstat --shortstat --summary + --patch-with-stat --name-only --name-status --color + --no-color --color-words --no-renames --check + --full-index --binary --abbrev --diff-filter= + --find-copies-harder --ignore-cr-at-eol + --text --ignore-space-at-eol --ignore-space-change + --ignore-all-space --ignore-blank-lines --exit-code + --quiet --ext-diff --no-ext-diff + --no-prefix --src-prefix= --dst-prefix= + --inter-hunk-context= + --patience --histogram --minimal + --raw --word-diff --word-diff-regex= + --dirstat --dirstat= --dirstat-by-file + --dirstat-by-file= --cumulative + --diff-algorithm= + --submodule --submodule= --ignore-submodules +" + +_git_diff () +{ + __git_has_doubledash && return + + case "$cur" in + --diff-algorithm=*) + __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" + return + ;; + --submodule=*) + __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}" + return + ;; + --*) + __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex + --base --ours --theirs --no-index + $__git_diff_common_options + " + return + ;; + esac + __git_complete_revlist_file +} + +__git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff + tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc + codecompare smerge +" + +_git_difftool () +{ + __git_has_doubledash && return + + case "$cur" in + --tool=*) + __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}" + return + ;; + --*) + __gitcomp_builtin difftool "$__git_diff_common_options + --base --cached --ours --theirs + --pickaxe-all --pickaxe-regex + --relative --staged + " + return + ;; + esac + __git_complete_revlist_file +} + +__git_fetch_recurse_submodules="yes on-demand no" + +_git_fetch () +{ + case "$cur" in + --recurse-submodules=*) + __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}" + return + ;; + --filter=*) + __gitcomp "blob:none blob:limit= sparse:oid=" "" "${cur##--filter=}" + return + ;; + --*) + __gitcomp_builtin fetch + return + ;; + esac + __git_complete_remote_or_refspec +} + +__git_format_patch_extra_options=" + --full-index --not --all --no-prefix --src-prefix= + --dst-prefix= --notes +" + +_git_format_patch () +{ + case "$cur" in + --thread=*) + __gitcomp " + deep shallow + " "" "${cur##--thread=}" + return + ;; + --*) + __gitcomp_builtin format-patch "$__git_format_patch_extra_options" + return + ;; + esac + __git_complete_revlist +} + +_git_fsck () +{ + case "$cur" in + --*) + __gitcomp_builtin fsck + return + ;; + esac +} + +_git_gitk () +{ + _gitk +} + +# Lists matching symbol names from a tag (as in ctags) file. +# 1: List symbol names matching this word. +# 2: The tag file to list symbol names from. +# 3: A prefix to be added to each listed symbol name (optional). +# 4: A suffix to be appended to each listed symbol name (optional). +__git_match_ctag () { + awk -v pfx="${3-}" -v sfx="${4-}" " + /^${1//\//\\/}/ { print pfx \$1 sfx } + " "$2" +} + +# Complete symbol names from a tag file. +# Usage: __git_complete_symbol [<option>]... +# --tags=<file>: The tag file to list symbol names from instead of the +# default "tags". +# --pfx=<prefix>: A prefix to be added to each symbol name. +# --cur=<word>: The current symbol name to be completed. Defaults to +# the current word to be completed. +# --sfx=<suffix>: A suffix to be appended to each symbol name instead +# of the default space. +__git_complete_symbol () { + local tags=tags pfx="" cur_="${cur-}" sfx=" " + + while test $# != 0; do + case "$1" in + --tags=*) tags="${1##--tags=}" ;; + --pfx=*) pfx="${1##--pfx=}" ;; + --cur=*) cur_="${1##--cur=}" ;; + --sfx=*) sfx="${1##--sfx=}" ;; + *) return 1 ;; + esac + shift + done + + if test -r "$tags"; then + __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")" + fi +} + +_git_grep () +{ + __git_has_doubledash && return + + case "$cur" in + --*) + __gitcomp_builtin grep + return + ;; + esac + + case "$cword,$prev" in + 2,*|*,-*) + __git_complete_symbol && return + ;; + esac + + __git_complete_refs +} + +_git_help () +{ + case "$cur" in + --*) + __gitcomp_builtin help + return + ;; + esac + if test -n "$GIT_TESTING_ALL_COMMAND_LIST" + then + __gitcomp "$GIT_TESTING_ALL_COMMAND_LIST $(__git --list-cmds=alias,list-guide) gitk" + else + __gitcomp "$(__git --list-cmds=main,nohelpers,alias,list-guide) gitk" + fi +} + +_git_init () +{ + case "$cur" in + --shared=*) + __gitcomp " + false true umask group all world everybody + " "" "${cur##--shared=}" + return + ;; + --*) + __gitcomp_builtin init + return + ;; + esac +} + +_git_ls_files () +{ + case "$cur" in + --*) + __gitcomp_builtin ls-files + return + ;; + esac + + # XXX ignore options like --modified and always suggest all cached + # files. + __git_complete_index_file "--cached" +} + +_git_ls_remote () +{ + case "$cur" in + --*) + __gitcomp_builtin ls-remote + return + ;; + esac + __gitcomp_nl "$(__git_remotes)" +} + +_git_ls_tree () +{ + case "$cur" in + --*) + __gitcomp_builtin ls-tree + return + ;; + esac + + __git_complete_file +} + +# Options that go well for log, shortlog and gitk +__git_log_common_options=" + --not --all + --branches --tags --remotes + --first-parent --merges --no-merges + --max-count= + --max-age= --since= --after= + --min-age= --until= --before= + --min-parents= --max-parents= + --no-min-parents --no-max-parents +" +# Options that go well for log and gitk (not shortlog) +__git_log_gitk_options=" + --dense --sparse --full-history + --simplify-merges --simplify-by-decoration + --left-right --notes --no-notes +" +# Options that go well for log and shortlog (not gitk) +__git_log_shortlog_options=" + --author= --committer= --grep= + --all-match --invert-grep +" + +__git_log_pretty_formats="oneline short medium full fuller email raw format: mboxrd" +__git_log_date_formats="relative iso8601 iso8601-strict rfc2822 short local default raw unix format:" + +_git_log () +{ + __git_has_doubledash && return + __git_find_repo_path + + local merge="" + if [ -f "$__git_repo_path/MERGE_HEAD" ]; then + merge="--merge" + fi + case "$prev,$cur" in + -L,:*:*) + return # fall back to Bash filename completion + ;; + -L,:*) + __git_complete_symbol --cur="${cur#:}" --sfx=":" + return + ;; + -G,*|-S,*) + __git_complete_symbol + return + ;; + esac + case "$cur" in + --pretty=*|--format=*) + __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) + " "" "${cur#*=}" + return + ;; + --date=*) + __gitcomp "$__git_log_date_formats" "" "${cur##--date=}" + return + ;; + --decorate=*) + __gitcomp "full short no" "" "${cur##--decorate=}" + return + ;; + --diff-algorithm=*) + __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" + return + ;; + --submodule=*) + __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}" + return + ;; + --*) + __gitcomp " + $__git_log_common_options + $__git_log_shortlog_options + $__git_log_gitk_options + --root --topo-order --date-order --reverse + --follow --full-diff + --abbrev-commit --abbrev= + --relative-date --date= + --pretty= --format= --oneline + --show-signature + --cherry-mark + --cherry-pick + --graph + --decorate --decorate= + --walk-reflogs + --parents --children + $merge + $__git_diff_common_options + --pickaxe-all --pickaxe-regex + " + return + ;; + -L:*:*) + return # fall back to Bash filename completion + ;; + -L:*) + __git_complete_symbol --cur="${cur#-L:}" --sfx=":" + return + ;; + -G*) + __git_complete_symbol --pfx="-G" --cur="${cur#-G}" + return + ;; + -S*) + __git_complete_symbol --pfx="-S" --cur="${cur#-S}" + return + ;; + esac + __git_complete_revlist +} + +_git_merge () +{ + __git_complete_strategy && return + + case "$cur" in + --*) + __gitcomp_builtin merge + return + esac + __git_complete_refs +} + +_git_mergetool () +{ + case "$cur" in + --tool=*) + __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}" + return + ;; + --*) + __gitcomp "--tool= --prompt --no-prompt --gui --no-gui" + return + ;; + esac +} + +_git_merge_base () +{ + case "$cur" in + --*) + __gitcomp_builtin merge-base + return + ;; + esac + __git_complete_refs +} + +_git_mv () +{ + case "$cur" in + --*) + __gitcomp_builtin mv + return + ;; + esac + + if [ $(__git_count_arguments "mv") -gt 0 ]; then + # We need to show both cached and untracked files (including + # empty directories) since this may not be the last argument. + __git_complete_index_file "--cached --others --directory" + else + __git_complete_index_file "--cached" + fi +} + +_git_notes () +{ + local subcommands='add append copy edit get-ref list merge prune remove show' + local subcommand="$(__git_find_on_cmdline "$subcommands")" + + case "$subcommand,$cur" in + ,--*) + __gitcomp_builtin notes + ;; + ,*) + case "$prev" in + --ref) + __git_complete_refs + ;; + *) + __gitcomp "$subcommands --ref" + ;; + esac + ;; + *,--reuse-message=*|*,--reedit-message=*) + __git_complete_refs --cur="${cur#*=}" + ;; + *,--*) + __gitcomp_builtin notes_$subcommand + ;; + prune,*|get-ref,*) + # this command does not take a ref, do not complete it + ;; + *) + case "$prev" in + -m|-F) + ;; + *) + __git_complete_refs + ;; + esac + ;; + esac +} + +_git_pull () +{ + __git_complete_strategy && return + + case "$cur" in + --recurse-submodules=*) + __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}" + return + ;; + --*) + __gitcomp_builtin pull + + return + ;; + esac + __git_complete_remote_or_refspec +} + +__git_push_recurse_submodules="check on-demand only" + +__git_complete_force_with_lease () +{ + local cur_=$1 + + case "$cur_" in + --*=) + ;; + *:*) + __git_complete_refs --cur="${cur_#*:}" + ;; + *) + __git_complete_refs --cur="$cur_" + ;; + esac +} + +_git_push () +{ + case "$prev" in + --repo) + __gitcomp_nl "$(__git_remotes)" + return + ;; + --recurse-submodules) + __gitcomp "$__git_push_recurse_submodules" + return + ;; + esac + case "$cur" in + --repo=*) + __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}" + return + ;; + --recurse-submodules=*) + __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}" + return + ;; + --force-with-lease=*) + __git_complete_force_with_lease "${cur##--force-with-lease=}" + return + ;; + --*) + __gitcomp_builtin push + return + ;; + esac + __git_complete_remote_or_refspec +} + +_git_range_diff () +{ + case "$cur" in + --*) + __gitcomp " + --creation-factor= --no-dual-color + $__git_diff_common_options + " + return + ;; + esac + __git_complete_revlist +} + +_git_rebase () +{ + __git_find_repo_path + if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then + __gitcomp "--continue --skip --abort --quit --edit-todo --show-current-patch" + return + elif [ -d "$__git_repo_path"/rebase-apply ] || \ + [ -d "$__git_repo_path"/rebase-merge ]; then + __gitcomp "--continue --skip --abort --quit --show-current-patch" + return + fi + __git_complete_strategy && return + case "$cur" in + --whitespace=*) + __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" + return + ;; + --*) + __gitcomp " + --onto --merge --strategy --interactive + --rebase-merges --preserve-merges --stat --no-stat + --committer-date-is-author-date --ignore-date + --ignore-whitespace --whitespace= + --autosquash --no-autosquash + --fork-point --no-fork-point + --autostash --no-autostash + --verify --no-verify + --keep-empty --root --force-rebase --no-ff + --rerere-autoupdate + --exec + " + + return + esac + __git_complete_refs +} + +_git_reflog () +{ + local subcommands="show delete expire" + local subcommand="$(__git_find_on_cmdline "$subcommands")" + + if [ -z "$subcommand" ]; then + __gitcomp "$subcommands" + else + __git_complete_refs + fi +} + +__git_send_email_confirm_options="always never auto cc compose" +__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all" + +_git_send_email () +{ + case "$prev" in + --to|--cc|--bcc|--from) + __gitcomp "$(__git send-email --dump-aliases)" + return + ;; + esac + + case "$cur" in + --confirm=*) + __gitcomp " + $__git_send_email_confirm_options + " "" "${cur##--confirm=}" + return + ;; + --suppress-cc=*) + __gitcomp " + $__git_send_email_suppresscc_options + " "" "${cur##--suppress-cc=}" + + return + ;; + --smtp-encryption=*) + __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}" + return + ;; + --thread=*) + __gitcomp " + deep shallow + " "" "${cur##--thread=}" + return + ;; + --to=*|--cc=*|--bcc=*|--from=*) + __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}" + return + ;; + --*) + __gitcomp_builtin send-email "--annotate --bcc --cc --cc-cmd --chain-reply-to + --compose --confirm= --dry-run --envelope-sender + --from --identity + --in-reply-to --no-chain-reply-to --no-signed-off-by-cc + --no-suppress-from --no-thread --quiet --reply-to + --signed-off-by-cc --smtp-pass --smtp-server + --smtp-server-port --smtp-encryption= --smtp-user + --subject --suppress-cc= --suppress-from --thread --to + --validate --no-validate + $__git_format_patch_extra_options" + return + ;; + esac + __git_complete_revlist +} + +_git_stage () +{ + _git_add +} + +_git_status () +{ + local complete_opt + local untracked_state + + case "$cur" in + --ignore-submodules=*) + __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}" + return + ;; + --untracked-files=*) + __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}" + return + ;; + --column=*) + __gitcomp " + always never auto column row plain dense nodense + " "" "${cur##--column=}" + return + ;; + --*) + __gitcomp_builtin status + return + ;; + esac + + untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \ + "$__git_untracked_file_modes" "status.showUntrackedFiles")" + + case "$untracked_state" in + no) + # --ignored option does not matter + complete_opt= + ;; + all|normal|*) + complete_opt="--cached --directory --no-empty-directory --others" + + if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then + complete_opt="$complete_opt --ignored --exclude=*" + fi + ;; + esac + + __git_complete_index_file "$complete_opt" +} + +__git_config_get_set_variables () +{ + local prevword word config_file= c=$cword + while [ $c -gt 1 ]; do + word="${words[c]}" + case "$word" in + --system|--global|--local|--file=*) + config_file="$word" + break + ;; + -f|--file) + config_file="$word $prevword" + break + ;; + esac + prevword=$word + c=$((--c)) + done + + __git config $config_file --name-only --list +} + +__git_config_vars= +__git_compute_config_vars () +{ + test -n "$__git_config_vars" || + __git_config_vars="$(git help --config-for-completion | sort | uniq)" +} + +_git_config () +{ + local varname + + if [ "${BASH_VERSINFO[0]:-0}" -ge 4 ]; then + varname="${prev,,}" + else + varname="$(echo "$prev" |tr A-Z a-z)" + fi + + case "$varname" in + branch.*.remote|branch.*.pushremote) + __gitcomp_nl "$(__git_remotes)" + return + ;; + branch.*.merge) + __git_complete_refs + return + ;; + branch.*.rebase) + __gitcomp "false true merges preserve interactive" + return + ;; + remote.pushdefault) + __gitcomp_nl "$(__git_remotes)" + return + ;; + remote.*.fetch) + local remote="${prev#remote.}" + remote="${remote%.fetch}" + if [ -z "$cur" ]; then + __gitcomp_nl "refs/heads/" "" "" "" + return + fi + __gitcomp_nl "$(__git_refs_remotes "$remote")" + return + ;; + remote.*.push) + local remote="${prev#remote.}" + remote="${remote%.push}" + __gitcomp_nl "$(__git for-each-ref \ + --format='%(refname):%(refname)' refs/heads)" + return + ;; + pull.twohead|pull.octopus) + __git_compute_merge_strategies + __gitcomp "$__git_merge_strategies" + return + ;; + color.branch|color.diff|color.interactive|\ + color.showbranch|color.status|color.ui) + __gitcomp "always never auto" + return + ;; + color.pager) + __gitcomp "false true" + return + ;; + color.*.*) + __gitcomp " + normal black red green yellow blue magenta cyan white + bold dim ul blink reverse + " + return + ;; + diff.submodule) + __gitcomp "$__git_diff_submodule_formats" + return + ;; + help.format) + __gitcomp "man info web html" + return + ;; + log.date) + __gitcomp "$__git_log_date_formats" + return + ;; + sendemail.aliasfiletype) + __gitcomp "mutt mailrc pine elm gnus" + return + ;; + sendemail.confirm) + __gitcomp "$__git_send_email_confirm_options" + return + ;; + sendemail.suppresscc) + __gitcomp "$__git_send_email_suppresscc_options" + return + ;; + sendemail.transferencoding) + __gitcomp "7bit 8bit quoted-printable base64" + return + ;; + --get|--get-all|--unset|--unset-all) + __gitcomp_nl "$(__git_config_get_set_variables)" + return + ;; + *.*) + return + ;; + esac + case "$cur" in + --*) + __gitcomp_builtin config + return + ;; + branch.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "remote pushRemote merge mergeOptions rebase" "$pfx" "$cur_" + return + ;; + branch.*) + local pfx="${cur%.*}." cur_="${cur#*.}" + __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")" + __gitcomp_nl_append $'autoSetupMerge\nautoSetupRebase\n' "$pfx" "$cur_" + return + ;; + guitool.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp " + argPrompt cmd confirm needsFile noConsole noRescan + prompt revPrompt revUnmerged title + " "$pfx" "$cur_" + return + ;; + difftool.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "cmd path" "$pfx" "$cur_" + return + ;; + man.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "cmd path" "$pfx" "$cur_" + return + ;; + mergetool.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "cmd path trustExitCode" "$pfx" "$cur_" + return + ;; + pager.*) + local pfx="${cur%.*}." cur_="${cur#*.}" + __git_compute_all_commands + __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_" + return + ;; + remote.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp " + url proxy fetch push mirror skipDefaultUpdate + receivepack uploadpack tagOpt pushurl + " "$pfx" "$cur_" + return + ;; + remote.*) + local pfx="${cur%.*}." cur_="${cur#*.}" + __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "." + __gitcomp_nl_append "pushDefault" "$pfx" "$cur_" + return + ;; + url.*.*) + local pfx="${cur%.*}." cur_="${cur##*.}" + __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_" + return + ;; + *.*) + __git_compute_config_vars + __gitcomp "$__git_config_vars" + ;; + *) + __git_compute_config_vars + __gitcomp "$(echo "$__git_config_vars" | sed 's/\.[^ ]*/./g')" + esac +} + +_git_remote () +{ + local subcommands=" + add rename remove set-head set-branches + get-url set-url show prune update + " + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + case "$cur" in + --*) + __gitcomp_builtin remote + ;; + *) + __gitcomp "$subcommands" + ;; + esac + return + fi + + case "$subcommand,$cur" in + add,--*) + __gitcomp_builtin remote_add + ;; + add,*) + ;; + set-head,--*) + __gitcomp_builtin remote_set-head + ;; + set-branches,--*) + __gitcomp_builtin remote_set-branches + ;; + set-head,*|set-branches,*) + __git_complete_remote_or_refspec + ;; + update,--*) + __gitcomp_builtin remote_update + ;; + update,*) + __gitcomp "$(__git_remotes) $(__git_get_config_variables "remotes")" + ;; + set-url,--*) + __gitcomp_builtin remote_set-url + ;; + get-url,--*) + __gitcomp_builtin remote_get-url + ;; + prune,--*) + __gitcomp_builtin remote_prune + ;; + *) + __gitcomp_nl "$(__git_remotes)" + ;; + esac +} + +_git_replace () +{ + case "$cur" in + --format=*) + __gitcomp "short medium long" "" "${cur##--format=}" + return + ;; + --*) + __gitcomp_builtin replace + return + ;; + esac + __git_complete_refs +} + +_git_rerere () +{ + local subcommands="clear forget diff remaining status gc" + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if test -z "$subcommand" + then + __gitcomp "$subcommands" + return + fi +} + +_git_reset () +{ + __git_has_doubledash && return + + case "$cur" in + --*) + __gitcomp_builtin reset + return + ;; + esac + __git_complete_refs +} + +__git_revert_inprogress_options="--continue --quit --abort" + +_git_revert () +{ + __git_find_repo_path + if [ -f "$__git_repo_path"/REVERT_HEAD ]; then + __gitcomp "$__git_revert_inprogress_options" + return + fi + __git_complete_strategy && return + case "$cur" in + --*) + __gitcomp_builtin revert "" \ + "$__git_revert_inprogress_options" + return + ;; + esac + __git_complete_refs +} + +_git_rm () +{ + case "$cur" in + --*) + __gitcomp_builtin rm + return + ;; + esac + + __git_complete_index_file "--cached" +} + +_git_shortlog () +{ + __git_has_doubledash && return + + case "$cur" in + --*) + __gitcomp " + $__git_log_common_options + $__git_log_shortlog_options + --numbered --summary --email + " + return + ;; + esac + __git_complete_revlist +} + +_git_show () +{ + __git_has_doubledash && return + + case "$cur" in + --pretty=*|--format=*) + __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) + " "" "${cur#*=}" + return + ;; + --diff-algorithm=*) + __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" + return + ;; + --submodule=*) + __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}" + return + ;; + --*) + __gitcomp "--pretty= --format= --abbrev-commit --oneline + --show-signature + $__git_diff_common_options + " + return + ;; + esac + __git_complete_revlist_file +} + +_git_show_branch () +{ + case "$cur" in + --*) + __gitcomp_builtin show-branch + return + ;; + esac + __git_complete_revlist +} + +_git_stash () +{ + local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked' + local subcommands='push list show apply clear drop pop create branch' + local subcommand="$(__git_find_on_cmdline "$subcommands save")" + if [ -n "$(__git_find_on_cmdline "-p")" ]; then + subcommand="push" + fi + if [ -z "$subcommand" ]; then + case "$cur" in + --*) + __gitcomp "$save_opts" + ;; + sa*) + if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then + __gitcomp "save" + fi + ;; + *) + if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then + __gitcomp "$subcommands" + fi + ;; + esac + else + case "$subcommand,$cur" in + push,--*) + __gitcomp "$save_opts --message" + ;; + save,--*) + __gitcomp "$save_opts" + ;; + apply,--*|pop,--*) + __gitcomp "--index --quiet" + ;; + drop,--*) + __gitcomp "--quiet" + ;; + list,--*) + __gitcomp "--name-status --oneline --patch-with-stat" + ;; + show,--*|branch,--*) + ;; + branch,*) + if [ $cword -eq 3 ]; then + __git_complete_refs + else + __gitcomp_nl "$(__git stash list \ + | sed -n -e 's/:.*//p')" + fi + ;; + show,*|apply,*|drop,*|pop,*) + __gitcomp_nl "$(__git stash list \ + | sed -n -e 's/:.*//p')" + ;; + *) + ;; + esac + fi +} + +_git_submodule () +{ + __git_has_doubledash && return + + local subcommands="add status init deinit update set-branch summary foreach sync absorbgitdirs" + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + case "$cur" in + --*) + __gitcomp "--quiet" + ;; + *) + __gitcomp "$subcommands" + ;; + esac + return + fi + + case "$subcommand,$cur" in + add,--*) + __gitcomp "--branch --force --name --reference --depth" + ;; + status,--*) + __gitcomp "--cached --recursive" + ;; + deinit,--*) + __gitcomp "--force --all" + ;; + update,--*) + __gitcomp " + --init --remote --no-fetch + --recommend-shallow --no-recommend-shallow + --force --rebase --merge --reference --depth --recursive --jobs + " + ;; + set-branch,--*) + __gitcomp "--default --branch" + ;; + summary,--*) + __gitcomp "--cached --files --summary-limit" + ;; + foreach,--*|sync,--*) + __gitcomp "--recursive" + ;; + *) + ;; + esac +} + +_git_svn () +{ + local subcommands=" + init fetch clone rebase dcommit log find-rev + set-tree commit-diff info create-ignore propget + proplist show-ignore show-externals branch tag blame + migrate mkdirs reset gc + " + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + __gitcomp "$subcommands" + else + local remote_opts="--username= --config-dir= --no-auth-cache" + local fc_opts=" + --follow-parent --authors-file= --repack= + --no-metadata --use-svm-props --use-svnsync-props + --log-window-size= --no-checkout --quiet + --repack-flags --use-log-author --localtime + --add-author-from + --ignore-paths= --include-paths= $remote_opts + " + local init_opts=" + --template= --shared= --trunk= --tags= + --branches= --stdlayout --minimize-url + --no-metadata --use-svm-props --use-svnsync-props + --rewrite-root= --prefix= $remote_opts + " + local cmt_opts=" + --edit --rmdir --find-copies-harder --copy-similarity= + " + + case "$subcommand,$cur" in + fetch,--*) + __gitcomp "--revision= --fetch-all $fc_opts" + ;; + clone,--*) + __gitcomp "--revision= $fc_opts $init_opts" + ;; + init,--*) + __gitcomp "$init_opts" + ;; + dcommit,--*) + __gitcomp " + --merge --strategy= --verbose --dry-run + --fetch-all --no-rebase --commit-url + --revision --interactive $cmt_opts $fc_opts + " + ;; + set-tree,--*) + __gitcomp "--stdin $cmt_opts $fc_opts" + ;; + create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\ + show-externals,--*|mkdirs,--*) + __gitcomp "--revision=" + ;; + log,--*) + __gitcomp " + --limit= --revision= --verbose --incremental + --oneline --show-commit --non-recursive + --authors-file= --color + " + ;; + rebase,--*) + __gitcomp " + --merge --verbose --strategy= --local + --fetch-all --dry-run $fc_opts + " + ;; + commit-diff,--*) + __gitcomp "--message= --file= --revision= $cmt_opts" + ;; + info,--*) + __gitcomp "--url" + ;; + branch,--*) + __gitcomp "--dry-run --message --tag" + ;; + tag,--*) + __gitcomp "--dry-run --message" + ;; + blame,--*) + __gitcomp "--git-format" + ;; + migrate,--*) + __gitcomp " + --config-dir= --ignore-paths= --minimize + --no-auth-cache --username= + " + ;; + reset,--*) + __gitcomp "--revision= --parent" + ;; + *) + ;; + esac + fi +} + +_git_tag () +{ + local i c=1 f=0 + while [ $c -lt $cword ]; do + i="${words[c]}" + case "$i" in + -d|--delete|-v|--verify) + __gitcomp_direct "$(__git_tags "" "$cur" " ")" + return + ;; + -f) + f=1 + ;; + esac + ((c++)) + done + + case "$prev" in + -m|-F) + ;; + -*|tag) + if [ $f = 1 ]; then + __gitcomp_direct "$(__git_tags "" "$cur" " ")" + fi + ;; + *) + __git_complete_refs + ;; + esac + + case "$cur" in + --*) + __gitcomp_builtin tag + ;; + esac +} + +_git_whatchanged () +{ + _git_log +} + +_git_worktree () +{ + local subcommands="add list lock move prune remove unlock" + local subcommand="$(__git_find_on_cmdline "$subcommands")" + if [ -z "$subcommand" ]; then + __gitcomp "$subcommands" + else + case "$subcommand,$cur" in + add,--*) + __gitcomp_builtin worktree_add + ;; + list,--*) + __gitcomp_builtin worktree_list + ;; + lock,--*) + __gitcomp_builtin worktree_lock + ;; + prune,--*) + __gitcomp_builtin worktree_prune + ;; + remove,--*) + __gitcomp "--force" + ;; + *) + ;; + esac + fi +} + +__git_complete_common () { + local command="$1" + + case "$cur" in + --*) + __gitcomp_builtin "$command" + ;; + esac +} + +__git_cmds_with_parseopt_helper= +__git_support_parseopt_helper () { + test -n "$__git_cmds_with_parseopt_helper" || + __git_cmds_with_parseopt_helper="$(__git --list-cmds=parseopt)" + + case " $__git_cmds_with_parseopt_helper " in + *" $1 "*) + return 0 + ;; + *) + return 1 + ;; + esac +} + +__git_complete_command () { + local command="$1" + local completion_func="_git_${command//-/_}" + if ! declare -f $completion_func >/dev/null 2>/dev/null && + declare -f _completion_loader >/dev/null 2>/dev/null + then + _completion_loader "git-$command" + fi + if declare -f $completion_func >/dev/null 2>/dev/null + then + $completion_func + return 0 + elif __git_support_parseopt_helper "$command" + then + __git_complete_common "$command" + return 0 + else + return 1 + fi +} + +__git_main () +{ + local i c=1 command __git_dir __git_repo_path + local __git_C_args C_args_count=0 + + while [ $c -lt $cword ]; do + i="${words[c]}" + case "$i" in + --git-dir=*) __git_dir="${i#--git-dir=}" ;; + --git-dir) ((c++)) ; __git_dir="${words[c]}" ;; + --bare) __git_dir="." ;; + --help) command="help"; break ;; + -c|--work-tree|--namespace) ((c++)) ;; + -C) __git_C_args[C_args_count++]=-C + ((c++)) + __git_C_args[C_args_count++]="${words[c]}" + ;; + -*) ;; + *) command="$i"; break ;; + esac + ((c++)) + done + + if [ -z "$command" ]; then + case "$prev" in + --git-dir|-C|--work-tree) + # these need a path argument, let's fall back to + # Bash filename completion + return + ;; + -c|--namespace) + # we don't support completing these options' arguments + return + ;; + esac + case "$cur" in + --*) __gitcomp " + --paginate + --no-pager + --git-dir= + --bare + --version + --exec-path + --exec-path= + --html-path + --man-path + --info-path + --work-tree= + --namespace= + --no-replace-objects + --help + " + ;; + *) + if test -n "$GIT_TESTING_PORCELAIN_COMMAND_LIST" + then + __gitcomp "$GIT_TESTING_PORCELAIN_COMMAND_LIST" + else + __gitcomp "$(__git --list-cmds=list-mainporcelain,others,nohelpers,alias,list-complete,config)" + fi + ;; + esac + return + fi + + __git_complete_command "$command" && return + + local expansion=$(__git_aliased_command "$command") + if [ -n "$expansion" ]; then + words[1]=$expansion + __git_complete_command "$expansion" + fi +} + +__gitk_main () +{ + __git_has_doubledash && return + + local __git_repo_path + __git_find_repo_path + + local merge="" + if [ -f "$__git_repo_path/MERGE_HEAD" ]; then + merge="--merge" + fi + case "$cur" in + --*) + __gitcomp " + $__git_log_common_options + $__git_log_gitk_options + $merge + " + return + ;; + esac + __git_complete_revlist +} + +if [[ -n ${ZSH_VERSION-} ]] && + # Don't define these functions when sourced from 'git-completion.zsh', + # it has its own implementations. + [[ -z ${GIT_SOURCING_ZSH_COMPLETION-} ]]; then + echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2 + + autoload -U +X compinit && compinit + + __gitcomp () + { + emulate -L zsh + + local cur_="${3-$cur}" + + case "$cur_" in + --*=) + ;; + *) + local c IFS=$' \t\n' + local -a array + for c in ${=1}; do + c="$c${4-}" + case $c in + --*=*|*.) ;; + *) c="$c " ;; + esac + array[${#array[@]}+1]="$c" + done + compset -P '*[=:]' + compadd -Q -S '' -p "${2-}" -a -- array && _ret=0 + ;; + esac + } + + __gitcomp_direct () + { + emulate -L zsh + + local IFS=$'\n' + compset -P '*[=:]' + compadd -Q -- ${=1} && _ret=0 + } + + __gitcomp_nl () + { + emulate -L zsh + + local IFS=$'\n' + compset -P '*[=:]' + compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 + } + + __gitcomp_file_direct () + { + emulate -L zsh + + local IFS=$'\n' + compset -P '*[=:]' + compadd -f -- ${=1} && _ret=0 + } + + __gitcomp_file () + { + emulate -L zsh + + local IFS=$'\n' + compset -P '*[=:]' + compadd -p "${2-}" -f -- ${=1} && _ret=0 + } + + _git () + { + local _ret=1 cur cword prev + cur=${words[CURRENT]} + prev=${words[CURRENT-1]} + let cword=CURRENT-1 + emulate ksh -c __${service}_main + let _ret && _default && _ret=0 + return _ret + } + + compdef _git git gitk + return +fi + +__git_func_wrap () +{ + local cur words cword prev + _get_comp_words_by_ref -n =: cur words cword prev + $1 +} + +# Setup completion for certain functions defined above by setting common +# variables and workarounds. +# This is NOT a public function; use at your own risk. +__git_complete () +{ + local wrapper="__git_wrap${2}" + eval "$wrapper () { __git_func_wrap $2 ; }" + complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \ + || complete -o default -o nospace -F $wrapper $1 +} + +# wrapper for backwards compatibility +_git () +{ + __git_wrap__git_main +} + +# wrapper for backwards compatibility +_gitk () +{ + __git_wrap__gitk_main +} + +__git_complete git __git_main +__git_complete gitk __gitk_main + +# The following are necessary only for Cygwin, and only are needed +# when the user has tab-completed the executable name and consequently +# included the '.exe' suffix. +# +if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then +__git_complete git.exe __git_main +fi diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000..40dda5e --- /dev/null +++ b/.gitconfig @@ -0,0 +1,35 @@ +[user] + name = Miquel Sabaté Solà + email = msabate@suse.com + signingkey = 0x96BE8C6FD89D6565 + +[core] + editor = emacsclient-a-nw + excludesfile = ~/.gitignore + whitespace = trailing-space,space-before-tab + abbrev = 12 + +[help] + autocorrect = 1 + +[http] + sslVerify = true + +[alias] + a = commit -a -s -v + down = pull --rebase --stat + +[format] + signoff = true + +[push] + default = matching + +[apply] + whitespace = fix + +[color] + ui = true + +[merge] + tool = vimdiff diff --git a/.gitignore b/.gitignore index 43dea4c..3f20e1d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1 @@ -emacs/init.html -org/*.pdf -org/*.tex -org/auto \ No newline at end of file +.vim/bundle/* \ No newline at end of file diff --git a/.gitmodules b/.gitmodules index aec4ca9..29d0cb4 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "vim/bundle/Vundle.vim"] - path = vim/bundle/Vundle.vim +[submodule ".vim/bundle/Vundle.vim.git"] + path = .vim/bundle/Vundle.vim.git url = https://github.com/gmarik/Vundle.vim.git diff --git a/.global.gitignore b/.global.gitignore new file mode 100644 index 0000000..9656fcb --- /dev/null +++ b/.global.gitignore @@ -0,0 +1,20 @@ +*.~ +*.swp +*.lvimrc + +.sass-cache + +# Ruby thingies +.rbx/ +.rake_tasks + +# KDE +build/ +.kdev4/ +*.kdev4 +.kdev_include_paths +.directory +*.kate-swp +LLEGEIXME.txt +*.kilepr +.kateconfig diff --git a/.gnupg/gpg-agent.conf b/.gnupg/gpg-agent.conf new file mode 100644 index 0000000..67c7dae --- /dev/null +++ b/.gnupg/gpg-agent.conf @@ -0,0 +1,5 @@ +pinentry-program /usr/bin/pinentry-qt4 +max-cache-ttl 720000 +default-cache-ttl 720000 +enable-ssh-support +use-standard-socket \ No newline at end of file diff --git a/.gnupg/gpg.conf b/.gnupg/gpg.conf new file mode 100644 index 0000000..9c5cf0c --- /dev/null +++ b/.gnupg/gpg.conf @@ -0,0 +1,103 @@ +# Options for GnuPG +# Copyright 1998-2003, 2010 Free Software Foundation, Inc. +# Copyright 1998-2003, 2010 Werner Koch +# +# This file is free software; as a special exception the author gives +# unlimited permission to copy and/or distribute it, with or without +# modifications, as long as this notice is preserved. +# +# This file is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the +# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. +# +# Unless you specify which option file to use (with the command line +# option "--options filename"), GnuPG uses the file ~/.gnupg/gpg.conf +# by default. +# +# An options file can contain any long options which are available in +# GnuPG. If the first non white space character of a line is a '#', +# this line is ignored. Empty lines are also ignored. +# +# See the man page for a list of options. + +# Config based on https://github.com/jfrazelle/dotfiles + +# +# default key +# + +default-key 0x96BE8C6FD89D6565 + +# +# behavior +# + +# Disable inclusion of the version string in ASCII armored output +no-emit-version + +# Disable comment string in clear text signatures and ASCII armored messages +no-comments + +# Display long key IDs +keyid-format 0xlong + +# List all keys (or the specified ones) along with their fingerprints +with-fingerprint + +# Display the calculated validity of user IDs during key listings +list-options show-uid-validity +verify-options show-uid-validity + +# +# keyserver +# + +keyserver hkp://keys.gnupg.net + +# When using --refresh-keys, if the key in question has a preferred keyserver +# URL, then disable use of that preferred keyserver to refresh the key from +keyserver-options no-honor-keyserver-url + +# When searching for a key with --search-keys, include keys that are marked on +# the keyserver as revoked +keyserver-options include-revoked + +# +# other +# + +# When verifying a signature made from a subkey, ensure that the cross +# certification "back signature" on the subkey is present and valid. +# This protects against a subtle attack against subkeys that can sign. +# Defaults to --no-require-cross-certification. However for new +# installations it should be enabled. + +require-cross-certification + +# If you do not use the Latin-1 (ISO-8859-1) charset, you should tell +# GnuPG which is the native character set. Please check the man page +# for supported character sets. This character set is only used for +# metadata and not for the actual message which does not undergo any +# translation. Note that future version of GnuPG will change to UTF-8 +# as default character set. + +charset utf-8 + +# +# algorithm and ciphers +# + +# list of personal digest preferences. When multiple digests are supported by +# all recipients, choose the strongest one +personal-cipher-preferences AES256 AES192 AES CAST5 + +# list of personal digest preferences. When multiple ciphers are supported by +# all recipients, choose the strongest one +personal-digest-preferences SHA512 SHA384 SHA256 SHA224 + +# message digest algorithm used when signing a key +cert-digest-algo SHA512 + +# This preference list is used for new keys and becomes the default for +# "setpref" in the edit menu +default-preference-list SHA512 SHA384 SHA256 SHA224 AES256 AES192 AES CAST5 ZLIB BZIP2 ZIP Uncompressed diff --git a/.hgrc b/.hgrc new file mode 100644 index 0000000..02b2893 --- /dev/null +++ b/.hgrc @@ -0,0 +1,28 @@ +[ui] +username = Miquel Sabaté Solà <mikisabate@gmail.com> +ignore = ~/.hgignore + +[hooks] +preupdate = hg status --rev .:$HG_PARENT1 + +[alias] +show = log -pr +down = !$HG pull --rebase; $HG update +blame = annotate --user -c + +[pager] +pager = LESS='FSRX' less + +[extensions] +pager = +color = +rebase = +shelve = +progress = + +[color] +status.added = green +status.modified = red +status.removed = red +status.deleted = red +status.unknown = blue bold diff --git a/.i3/config b/.i3/config new file mode 100644 index 0000000..b2915ae --- /dev/null +++ b/.i3/config @@ -0,0 +1,244 @@ +# Largely based on https://github.com/flavio/dotfiles. + +# i3 config file (v4) +# +# Please see http://i3wm.org/docs/userguide.html for a complete reference! + +set $mod Mod4 + +# Font for window titles. Will also be used by the bar unless a different font +# is used in the bar {} block below. ISO 10646 = Unicode +font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1 +# The font above is very space-efficient, that is, it looks good, sharp and +# clear in small sizes. However, if you need a lot of unicode glyphs or +# right-to-left text rendering, you should instead use pango for rendering and +# chose a FreeType font, such as: +font pango:DejaVu Sans Mono 10 + +#class border backgr. text indicator +client.focused #888888 #dddddd #222222 #2e9ef4 +client.focused_inactive #333333 #555555 #bbbbbb #484e50 +client.unfocused #333333 #333333 #888888 #292d2e +client.urgent #2f343a #900000 #ffffff #900000 + + +# Use Mouse+$mod to drag floating windows to their wanted position +floating_modifier $mod + +# start a terminal +bindsym $mod+Return exec konsole + +# kill focused window +bindsym $mod+Shift+q kill + +# Start dmenu (a program launcher) +bindsym $mod+d exec --no-startup-id i3-dmenu-desktop + +# Change focus +bindsym $mod+Up focus up +bindsym $mod+Down focus down +bindsym $mod+Left focus left +bindsym $mod+Right focus right +bindsym $mod+j focus left +bindsym $mod+k focus right + +# Move focused window +bindsym $mod+Shift+Up move up +bindsym $mod+Shift+Down move down +bindsym $mod+Shift+Left move left +bindsym $mod+Shift+Right move right +bindsym $mod+Shift+j move left +bindsym $mod+Shift+k move right + +# split in horizontal orientation +bindsym $mod+h split h + +# split in vertical orientation +bindsym $mod+v split v + +# enter fullscreen mode for the focused container +bindsym $mod+f fullscreen + +# Cool lock. Thanks franky! +bindsym $mod+l exec xlock -mode eyes + +# change container layout (stacked, tabbed, toggle split) +bindsym $mod+s layout stacking +bindsym $mod+w layout tabbed +bindsym $mod+e layout toggle split + +# toggle tiling / floating +bindsym $mod+Shift+space floating toggle + +# change focus between tiling / floating windows +bindsym $mod+space focus mode_toggle + +# focus the parent container +bindsym $mod+a focus parent + +# Go to workspace +bindsym $mod+1 workspace 1 +bindsym $mod+2 workspace 2 +bindsym $mod+3 workspace 3 +bindsym $mod+4 workspace 4 +bindsym $mod+5 workspace 5 +bindsym $mod+6 workspace 6 +bindsym $mod+7 workspace 7 +bindsym $mod+8 workspace 8 +bindsym $mod+9 workspace 9 +bindsym $mod+0 workspace 10 + +# move focused container to workspace +bindsym $mod+Shift+1 move container to workspace 1 +bindsym $mod+Shift+2 move container to workspace 2 +bindsym $mod+Shift+3 move container to workspace 3 +bindsym $mod+Shift+4 move container to workspace 4 +bindsym $mod+Shift+5 move container to workspace 5 +bindsym $mod+Shift+6 move container to workspace 6 +bindsym $mod+Shift+7 move container to workspace 7 +bindsym $mod+Shift+8 move container to workspace 8 +bindsym $mod+Shift+9 move container to workspace 9 +bindsym $mod+Shift+0 move container to workspace 10 + +# reload the configuration file +bindsym $mod+Shift+c reload + +# restart i3 inplace (preserves your layout/session, can be used to upgrade i3) +bindsym $mod+Shift+r restart + +# exit i3 (logs you out of your X session) +bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'" + +# resize window (you can also use the mouse for that) +mode "resize" { + # These bindings trigger as soon as you enter the resize mode + + # Pressing left will shrink the window’s width. + # Pressing right will grow the window’s width. + # Pressing up will shrink the window’s height. + # Pressing down will grow the window’s height. + bindsym j resize shrink width 10 px or 10 ppt + bindsym k resize grow height 10 px or 10 ppt + bindsym l resize shrink height 10 px or 10 ppt + bindsym semicolon resize grow width 10 px or 10 ppt + + # same bindings, but for the arrow keys + bindsym Left resize shrink width 10 px or 10 ppt + bindsym Down resize grow height 10 px or 10 ppt + bindsym Up resize shrink height 10 px or 10 ppt + bindsym Right resize grow width 10 px or 10 ppt + + # back to normal: Enter or Escape + bindsym Return mode "default" + bindsym Escape mode "default" +} + +bindsym $mod+r mode "resize" + +# Get volume keys working +bindsym XF86AudioRaiseVolume exec amixer -q set Master 5%+ unmute +bindsym XF86AudioLowerVolume exec amixer -q set Master 5%- unmute +bindsym XF86AudioMute exec amixer -q set Master toggle + +# Back & Forth support + $mod+z shortcut. +workspace_auto_back_and_forth yes +bindsym $mod+z workspace back_and_forth +bindsym $mod+Shift+z move container to workspace back_and_forth; workspace back_and_forth + +# Disallow the mouse from changing the focus. I prefer to be explicit with the +# mouse and click to get focus if I'm using it. +focus_follows_mouse no + +# Bindings for specific applications. +bindsym $mod+Shift+f [class="Firefox"] focus +bindsym $mod+Shift+t [class="Tor"] focus + +# Scrot +bindsym Print exec scrot -u + +# Toggle keyboard layout US <-> CAT +bindsym $mod+F1 exec ~/bin/toggle-keyboard-layout.sh + +# Emacs. By default we go with daemon mode, but if something is wrong, it's +# cool to have a safe way to start Emacs. +bindsym $mod+m exec emacsclient -c -a "" +bindsym $mod+Shift+m exec emacs + +# Start i3bar to display a workspace bar (plus the system information i3status +# finds out, if available). This setup has DP-1 as the monitor on the right, +# and DVI-I-1 as the monitor on the left. The tray will only be shown to the +# right. +bar { + output DP-1 + position top + status_command i3status + workspace_buttons yes + tray_output DP-1 + + colors { + separator #666666 + background #333333 + statusline #bbbbbb + focused_workspace #888888 #dddddd #222222 + active_workspace #333333 #555555 #bbbbbb + inactive_workspace #333333 #555555 #bbbbbb + urgent_workspace #2f343a #900000 #ffffff + } +} + +bar { + output DVI-I-1 + position top + status_command i3status + workspace_buttons yes + tray_output DP-1 + + colors { + separator #666666 + background #333333 + statusline #bbbbbb + focused_workspace #888888 #dddddd #222222 + active_workspace #333333 #555555 #bbbbbb + inactive_workspace #333333 #555555 #bbbbbb + urgent_workspace #2f343a #900000 #ffffff + } +} + +# NOTE: If you are using a laptop, use this bar config. +#bar { +#position top +#status_command i3status +#workspace_buttons yes +#tray_output eDP1 +# +#colors { +#separator #666666 +#background #333333 +#statusline #bbbbbb +#focused_workspace #888888 #dddddd #222222 +#active_workspace #333333 #555555 #bbbbbb +#inactive_workspace #333333 #555555 #bbbbbb +#urgent_workspace #2f343a #900000 #ffffff +#} +#} + +# Start dunst notification manager at boot +exec --no-startup-id dunst + +# Proper configuration of multi monitor +# NOTE: remove this if you are using a laptop. +exec --no-startup-id xrandr --output DP-1 --right-of DVI-I-1 + +# Disable system bell +exec --no-startup-id xset b off + +# Disable screensaver and power saving feature: they may crash on Tumbleweed. +exec --no-startup-id xset -dpms +exec --no-startup-id xset s off + +# Network manager +# NOTE: uncomment this if you are in a laptop +# exec --no-startup-id nm-applet + +# Wallpaper +exec --no-startup-id nitrogen --restore diff --git a/.i3status.conf b/.i3status.conf new file mode 100644 index 0000000..b8fc77b --- /dev/null +++ b/.i3status.conf @@ -0,0 +1,84 @@ +# i3status configuration file. +# see "man i3status" for documentation. +# Largely based on https://github.com/flavio/dotfiles. + +# It is important that this file is edited as UTF-8. +# The following line should contain a sharp s: +# ß +# If the above line is not correctly displayed, fix your editor first! + +general { + colors = true + color_good = "#859900" + color_degraded = "#b58900" + color_bad = "#dc322f" + interval = 5 +} + +order += "disk /" +order += "disk /home" +order += "ethernet br0" +# NOTE: uncomment this and remove the previous line if you are using a laptop. +#order += "wireless wlan0" +order += "load" +order += "volume master" +# NOTE: use these two if you are using a laptop. +#order += "battery 0" +#order += "battery 1" +order += "tztime local" + +# Yes, I'm weird :P Use whatever ethernet interface you have here. +# NOTE: remove this if you are using a laptop. +ethernet br0 { + format_up = "E: %ip" + format_down = "E: down" +} + +# NOTE: use this if you are using a laptop. +#wireless wlp3s0 { +#format_up = "W: (%quality at %essid) %ip" +#format_down = "W: down" +#} + +# NOTE: use this if you are using a laptop. +#battery 0 { +#format = "%status %percentage" +#format_down = "No battery" +#status_chr = "⚇ CHR" +#status_bat = "⚡ BAT" +#status_full = "☻ FULL" +#low_threshold = 10 +#} + +# NOTE: use this if you are using a laptop. +#battery 1 { +#format = "%status %percentage" +#format_down = "No battery" +#status_chr = "⚇ CHR" +#status_bat = "⚡ BAT" +#status_full = "☻ FULL" +#low_threshold = 10 +#} + +tztime local { + format = "%Y-%m-%d %H:%M" +} + +load { + format = "%1min" +} + +disk "/" { + format = "/ %free" +} + +disk "/home" { + format = "/home %free" +} + +volume master { + format = "♪: %volume" + device = "default" + mixer = "Master" + mixer_idx = 0 +} diff --git a/.inputrc b/.inputrc new file mode 100644 index 0000000..67b1389 --- /dev/null +++ b/.inputrc @@ -0,0 +1,8 @@ + "\e[1~": beginning-of-line +"\e[4~": end-of-line +"\e[7~": beginning-of-line +"\e[8~": end-of-line +"\eOH": beginning-of-line +"\eOF": end-of-line +"\e[H": beginning-of-line +"\e[F": end-of-line diff --git a/.irbrc b/.irbrc new file mode 100644 index 0000000..176ed74 --- /dev/null +++ b/.irbrc @@ -0,0 +1,46 @@ +#!/usr/bin/env ruby +# +# Author: Miquel Sabaté +# http://github.com/mssola/dotfiles + + +require 'irb/completion' +require 'irb/ext/save-history' +require 'rubygems' +require 'pp' +require 'wirble' + + +# Colorize! +Wirble.init +Wirble.colorize + +# Simple prompt +IRB.conf[:PROMPT_MODE] = :SIMPLE + +# History +IRB.conf[:SAVE_HISTORY] = 100 +IRB.conf[:HISTORY_FILE] = File.expand_path('~/.irb_history') + +# Auto-indentation +IRB.conf[:AUTO_INDENT] = true + +# Use readline +IRB.conf[:USE_READLINE] = true + +# List object methods +def local_methods(obj = self) + (obj.methods - obj.class.superclass.instance_methods).sort +end + +# Reload this .irbrc +def reload! + load __FILE__ +end + +# Beautify ls +def ls + %x{ls}.split("\n") +end + +alias p pp diff --git a/.mbsyncrc b/.mbsyncrc new file mode 100644 index 0000000..b80c0a1 --- /dev/null +++ b/.mbsyncrc @@ -0,0 +1,119 @@ +# My credentials are encrypted with my GPG keys symmetrically. The login is done +# through SSL and the certificate file is located where openSUSE puts it. This +# configuration requires mbsync 1.3 (or current git master). I'm doing this +# because: +# 1. I need to increase the timeout for imap.novell.com +# 2. I need the improvements for subdirectories handling + +## +# GMail + +IMAPAccount gmail +Host imap.gmail.com +User mikisabate@gmail.com +PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.mbsyncpassgmail.gpg" +SSLType IMAPS +AuthMechs Login +CertificateFile /etc/ssl/ca-bundle.pem + +# Use the account specified above as the remote storage. +IMAPStore gmail-remote +Account gmail + +# Let's use ~/.mail as the prefix for the local storage. +MaildirStore gmail-local +Path ~/.mail/gmail/ +Inbox ~/.mail/gmail/inbox +SubFolders Verbatim + +# We could have one only channel, and filter them through the Patterns +# directive. I prefer having multiple channels and then group them. + +Channel gmail-inbox +Master :gmail-remote: +Slave :gmail-local: +Patterns "INBOX" +Create Both +Expunge Both +Sync All +SyncState * + +Channel gmail-all +Master :gmail-remote:"[Gmail]/Tot el correu" +Slave :gmail-local:"All" +Create Both +Expunge Both +Sync All +SyncState * + +Channel gmail-sent +Master :gmail-remote:"[Gmail]/Enviats" +Slave :gmail-local:"Sent" +Create Both +Expunge Both +Sync All +SyncState * + +# And finally group everything here. + +Group gmail +Channel gmail-inbox +Channel gmail-all +Channel gmail-sent + +## +# suse.de + +IMAPAccount susede +Host imap.suse.de +User msabate +PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.mbsyncpasssusede.gpg" +SSLType IMAPS +AuthMechs Login +CertificateFile /etc/ssl/ca-bundle.pem + +IMAPStore susede-remote +Account susede + +MaildirStore susede-local +Path ~/.mail/susede/ +Inbox ~/.mail/susede/inbox +SubFolders Verbatim + +Channel susede +Master :susede-remote: +Slave :susede-local: +Patterns * +Create Both +Sync All +Expunge Both +SyncState * + +## +# suse.com + +IMAPAccount susecom +Host gwmail.emea.novell.com +User msabate +PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.mbsyncpasssusecom.gpg" +SSLType IMAPS +AuthMechs Login +CertificateFile /etc/ssl/ca-bundle.pem +Timeout 0 + +IMAPStore susecom-remote +Account susecom + +MaildirStore susecom-local +Path ~/.mail/susecom/ +Inbox ~/.mail/susecom/inbox +SubFolders Verbatim + +Channel susecom +Master :susecom-remote: +Slave :susecom-local: +Patterns * !Calendar +Create Both +Sync All +Expunge Both +SyncState * diff --git a/.psqlrc b/.psqlrc new file mode 100644 index 0000000..ff0e7ba --- /dev/null +++ b/.psqlrc @@ -0,0 +1,20 @@ + +\set QUIET ON + +-- Show null values to NULL so we can distinguish them from empty strings. +\pset null NULL + +-- Set expanded display on (why isn't this the default behaviour ?) +\x auto + +-- Show how long a query took to be executed. +\timing + +-- Because everybody loves unicode. +\encoding unicode + +-- Set a beautiful prompt :P +\set PROMPT1 '%n@%/ > ' +\set PROMPT2 '' + +\set QUIET OFF diff --git a/.rails.gitignore b/.rails.gitignore new file mode 100644 index 0000000..4a32be0 --- /dev/null +++ b/.rails.gitignore @@ -0,0 +1,16 @@ +.bundle +*.gem +pkg +db/*.sqlite3 +log/* +tmp/* +tmp/**/* +doc/app +doc/api +*.sassc +.sass-cache/ +vendor/bundle +config/*.yml +Gemfile.lock +.rvmrc +.rake_tasks diff --git a/.rake_completion b/.rake_completion new file mode 100755 index 0000000..a142dc7 --- /dev/null +++ b/.rake_completion @@ -0,0 +1,69 @@ +#!/usr/bin/env ruby + +# to install, add the following line to your .bash_profile or .bashrc +# complete -C path/to/rake_completion -o default rake + +# Rake completion will return matching rake tasks given typed text. This way +# you can auto-complete tasks as you are typing them by hitting [tab] or [tab][tab] +# This also caches the rake tasks for optimium speed +class RakeCompletion + CACHE_FILE_NAME = '.rake_tasks' + + def initialize(command) + @command = command + end + + def matches + exit 0 if rakefile.nil? + matching_tasks.map do |task| + task.sub(typed_before_colon, '') + end + end + + private + + def typed + @command[/\s(.+?)$/, 1] || '' + end + + def typed_before_colon + typed[/.+\:/] || '' + end + + def matching_tasks + all_tasks.select do |task| + task[0, typed.length] == typed + end + end + + def all_tasks + cache_current? ? tasks_from_cache : generate_tasks + end + + def cache_current? + File.exist?(cache_file) && File.mtime(cache_file) >= File.mtime(rakefile) + end + + def rakefile + ['rakefile', 'Rakefile', 'rakefile.rb', 'Rakefile.rb'].detect do |file| + File.file? File.join(Dir.pwd, file) + end + end + + def cache_file + File.join(Dir.pwd, CACHE_FILE_NAME) + end + + def tasks_from_cache + IO.read(cache_file).split + end + + def generate_tasks + tasks = `rake --tasks`.split("\n")[1..-1].collect {|line| line.split[1]} + File.open(cache_file, 'w') { |f| f.write tasks.join("\n") } + tasks + end +end + +puts RakeCompletion.new(ENV["COMP_LINE"]).matches +exit 0 diff --git a/.rvmrc b/.rvmrc new file mode 100644 index 0000000..72035cc --- /dev/null +++ b/.rvmrc @@ -0,0 +1 @@ +rvm_autoupdate_flag=2 diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..70e483b --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,123 @@ +# tmux configuration based on: https://github.com/0xAX/my-dotfiles + +# +# Keybindings +# +set -g prefix C-x +bind C-x send-prefix +unbind C-x + +unbind C-b +unbind C-a +unbind % +unbind , +unbind . +unbind n +unbind p +unbind [ +unbind '"' +unbind l +unbind & +unbind "'" +unbind w + +# +# vi +# + +# vi status keys +set-window-option -g mode-keys vi +set-option -g status-keys vi + +# copy & paste like vim +unbind [ +bind Escape copy-mode +unbind p +bind p paste-buffer +bind-key -t vi-copy 'v' begin-selection +bind-key -t vi-copy 'y' copy-selection + + +# move tmux copy buffer into x clipboard +bind-key C-y save-buffer /tmp/tmux-buffer \; run-shell "cat /tmp/tmux-buffer | xclip" + +# +# manage windows +# +bind-key n new-window +bind-key k kill-window +bind-key 2 split-window -h +bind-key 3 split-window + +bind -n C-Right next-window +bind -n C-Left previous-window + +# +# manage panes +# +bind-key x kill-pane + +bind -n S-Up select-pane -U +bind -n S-Down select-pane -D +bind -n S-Left select-pane -L +bind -n S-Right select-pane -R + +bind -n M-S-Up resize-pane -U +bind -n M-S-Down resize-pane -D +bind -n M-S-Left resize-pane -L +bind -n M-S-Right resize-pane -R + +# +# window title +# +set-window-option -g automatic-rename on +set-option -g set-titles on +set-option -g set-titles-string '#S:#I.#P #W' # window number,program name,active (or not) + +# +# misc +# +set -g history-limit 1500 +set -g default-terminal "screen-256color" +set -g bell-action none + +setw -g monitor-activity on +set -g base-index 1 +setw -g pane-base-index 1 + +# +# ui: shamelessly taken from: https://github.com/magarcia/dotfiles +# +set -g status-bg "colour0" +set -g message-command-fg "colour15" +set -g status-justify "left" +set -g status-left-length "100" +set -g status "on" +set -g pane-active-border-fg "colour10" +set -g message-bg "colour8" +set -g status-right-length "100" +set -g status-right-attr "none" +set -g message-fg "colour15" +set -g message-command-bg "colour8" +set -g status-attr "none" +set -g pane-border-fg "colour8" +set -g status-left-attr "none" +setw -g window-status-fg "colour7" +setw -g window-status-attr "none" +setw -g window-status-activity-bg "colour0" +setw -g window-status-activity-attr "none" +setw -g window-status-activity-fg "colour10" +setw -g window-status-separator "" +setw -g window-status-bg "colour0" +set -g status-left "#[fg=colour234,bg=colour10] #S #[fg=colour10,bg=colour0,nobold,nounderscore,noitalics]▓▒░" +set -g status-right "#[fg=colour7,bg=colour0,nobold,nounderscore,noitalics]░▒▓#[fg=colour234,bg=colour7] %Y-%m-%d | %H:%M #[fg=colour7,bg=colour7,nobold,nounderscore,noitalics]░▒▓#[fg=colour234,bg=colour7] #h " +setw -g window-status-format "#[fg=colour7,bg=colour0] #I |#[fg=colour7,bg=colour0] #W " +setw -g window-status-current-format "#[fg=colour0,bg=colour8,nobold,nounderscore,noitalics]▓▒░#[fg=colour15,bg=colour8] #I |#[fg=colour15,bg=colour8] #W #[fg=colour8,bg=colour0,nobold,nounderscore,noitalics]▓▒░" + +# coping inside tmux +bind c copy-mode +bind p paste-buffer +# copy from system to tmux +bind C-p run "tmux set-buffer \"$(xclip -o)\"; tmux paste-buffer" +# copy from tmux to system +bind C-v run-shell "tmux show-buffer | xclip -sel clip -i > /dev/null" diff --git a/.travis.yml b/.travis.yml index aa57f08..2e041e7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,6 +17,9 @@ before_install: - evm config path /tmp - evm install $EVM_EMACS --use --skip + # shellcheck + - sudo apt-get install -y shellcheck + env: - EVM_EMACS=emacs-25.1-travis - EVM_EMACS=emacs-25.2-travis @@ -37,3 +40,9 @@ script: # Testing scripts - cd ../bin/test && ./test.sh + + # Shellcheck + # TODO: don't skip stuff like bashrc and many others + - cd ../.. && find . -name "*.sh" ! -name "gitcompletion.sh" ! -name "hgcompletion.sh" -exec shellcheck \{\} \+ + + # TODO: linters for emacs, perl, ruby diff --git a/.valgrindrc b/.valgrindrc new file mode 100644 index 0000000..63d9609 --- /dev/null +++ b/.valgrindrc @@ -0,0 +1,12 @@ +--memcheck:leak-check=full +--memcheck:show-reachable=yes +--memcheck:track-origins=yes +--memcheck:smc-check=all +--memcheck:log-file=/tmp/memcheck.txt +--callgrind:dump-instr=yes +--callgrind:compress-strings=no +--callgrind:compress-pos=no +--massif:time-unit=B +--massif:max-snapshots=128 +--massif:stacks=yes +--massif:peak-inaccuracy=0.5 diff --git a/.vim/autocmd.vim b/.vim/autocmd.vim new file mode 100644 index 0000000..cbba932 --- /dev/null +++ b/.vim/autocmd.vim @@ -0,0 +1,22 @@ +" Indentation rules for different languages. + +" Some rules regarding indentation on different languages. +autocmd FileType sh setlocal shiftwidth=4 tabstop=4 +autocmd FileType perl setlocal shiftwidth=4 tabstop=4 +autocmd FileType c setlocal noexpandtab shiftwidth=4 tabstop=4 +autocmd FileType yacc setlocal shiftwidth=4 tabstop=4 +autocmd FileType go setlocal noexpandtab shiftwidth=4 tabstop=4 +autocmd FileType ruby setlocal shiftwidth=2 tabstop=2 +autocmd FileType cpp setlocal noexpandtab shiftwidth=4 tabstop=4 +autocmd FileType php setlocal noexpandtab shiftwidth=4 tabstop=4 +autocmd FileType javascript setlocal shiftwidth=2 tabstop=2 + +" Clean up trailing whitespaces on save. +autocmd BufWritePre * :%s/\s\+$//e +au BufRead,BufNewFile Vagrantfile set filetype=ruby + +" If there is a .lvimrc, source it. Note that this works best by calling vim on +" the root of your project. +if filereadable(".lvimrc") + so .lvimrc +endif diff --git a/.vim/bundle/Vundle.vim b/.vim/bundle/Vundle.vim new file mode 160000 index 0000000..b255382 --- /dev/null +++ b/.vim/bundle/Vundle.vim @@ -0,0 +1 @@ +Subproject commit b255382d6242d7ea3877bf059d2934125e0c4d95 diff --git a/.vim/bundle/Vundle.vim.git b/.vim/bundle/Vundle.vim.git new file mode 160000 index 0000000..b255382 --- /dev/null +++ b/.vim/bundle/Vundle.vim.git @@ -0,0 +1 @@ +Subproject commit b255382d6242d7ea3877bf059d2934125e0c4d95 diff --git a/.vim/bundles.vim b/.vim/bundles.vim new file mode 100644 index 0000000..8d012ac --- /dev/null +++ b/.vim/bundles.vim @@ -0,0 +1,38 @@ +" Vundle setup +set rtp+=~/.vim/bundle/Vundle.vim.git +call vundle#begin() + +Plugin 'gmarik/Vundle.vim' + +" My list of plugins. +Plugin 'tpope/vim-surround.git' +Plugin 'kien/ctrlp.vim.git' +Plugin 'derekwyatt/vim-scala.git' +Plugin 'fatih/vim-go' +Plugin 'Glench/Vim-Jinja2-Syntax' +Plugin 'saltstack/salt-vim' +Plugin 'b4b4r07/vim-hcl' +Plugin 'fatih/vim-hclfmt' + +call vundle#end() + +"" +" Some small adjustments for the installed plugins. + +" vim-surround.vim: <leader>s is used to surround a word. +map <leader>s ysiw + +" Let CtrlP's window to be taller than its default configuration. +let g:ctrlp_match_window = 'max:40' + +" Hi-yo Silver! +let g:ctrlp_user_command = 'ag %s -l --nocolor --hidden -g ""' + +" Tell vim-go to use goimports on save. +let g:go_fmt_command = "goimports" + +" Execute go-lint on save. +if isdirectory($GOPATH."/src/github.com/golang/lint/misc/vim") + set rtp+=$GOPATH/src/github.com/golang/lint/misc/vim + autocmd BufWritePost,FileWritePost *.go execute 'Lint' | cwindow +endif diff --git a/.vim/colors/xoria256.vim b/.vim/colors/xoria256.vim new file mode 100644 index 0000000..7d1010b --- /dev/null +++ b/.vim/colors/xoria256.vim @@ -0,0 +1,142 @@ +" Vim color file +" +" Name: xoria256.vim +" Version: 1.5 +" Maintainer: Dmitriy Y. Zotikov (xio) <xio@ungrund.org> +" +" Should work in recent 256 color terminals. 88-color terms like urxvt are +" NOT supported. +" +" Don't forget to install 'ncurses-term' and set TERM to xterm-256color or +" similar value. +" +" Color numbers (0-255) see: +" http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html +" +" For a specific filetype highlighting rules issue :syntax list when a file of +" that type is opened. + +" Initialization {{{ +if &t_Co != 256 && ! has("gui_running") + echomsg "" + echomsg "err: please use GUI or a 256-color terminal (so that t_Co=256 could be set)" + echomsg "" + finish +endif + +set background=dark + +hi clear + +if exists("syntax_on") + syntax reset +endif + +let colors_name = "xoria256" +"}}} +" Colours {{{1 +"" General {{{2 +hi Normal ctermfg=252 guifg=#d0d0d0 ctermbg=234 guibg=#1c1c1c cterm=none gui=none +hi Cursor ctermbg=214 guibg=#ffaf00 +hi CursorColumn ctermbg=238 guibg=#444444 +hi CursorLine ctermbg=237 guibg=#3a3a3a cterm=none gui=none +hi Error ctermfg=15 guifg=#ffffff ctermbg=1 guibg=#800000 +hi ErrorMsg ctermfg=15 guifg=#ffffff ctermbg=1 guibg=#800000 +hi FoldColumn ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212 +hi Folded ctermfg=255 guifg=#eeeeee ctermbg=60 guibg=#5f5f87 +hi IncSearch ctermfg=0 guifg=#000000 ctermbg=223 guibg=#ffdfaf cterm=none gui=none +hi LineNr ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212 +hi MatchParen ctermfg=188 guifg=#dfdfdf ctermbg=68 guibg=#5f87df cterm=bold gui=bold +" TODO +" hi MoreMsg +hi NonText ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212 cterm=bold gui=bold +hi Pmenu ctermfg=0 guifg=#000000 ctermbg=250 guibg=#bcbcbc +hi PmenuSel ctermfg=255 guifg=#eeeeee ctermbg=243 guibg=#767676 +hi PmenuSbar ctermbg=252 guibg=#d0d0d0 +hi PmenuThumb ctermfg=243 guifg=#767676 +hi Search ctermfg=0 guifg=#000000 ctermbg=149 guibg=#afdf5f +hi SignColumn ctermfg=248 guifg=#a8a8a8 +hi SpecialKey ctermfg=77 guifg=#5fdf5f +hi SpellBad ctermfg=160 guifg=fg ctermbg=bg cterm=underline guisp=#df0000 +hi SpellCap ctermfg=189 guifg=#dfdfff ctermbg=bg guibg=bg cterm=underline gui=underline +hi SpellRare ctermfg=168 guifg=#df5f87 ctermbg=bg guibg=bg cterm=underline gui=underline +hi SpellLocal ctermfg=98 guifg=#875fdf ctermbg=bg guibg=bg cterm=underline gui=underline +hi StatusLine ctermfg=15 guifg=#ffffff ctermbg=239 guibg=#4e4e4e cterm=bold gui=bold +hi StatusLineNC ctermfg=249 guifg=#b2b2b2 ctermbg=237 guibg=#3a3a3a cterm=none gui=none +hi TabLine ctermfg=fg guifg=fg ctermbg=242 guibg=#666666 cterm=none gui=none +hi TabLineFill ctermfg=fg guifg=fg ctermbg=237 guibg=#3a3a3a cterm=none gui=none +" FIXME +hi Title ctermfg=225 guifg=#ffdfff +hi Todo ctermfg=0 guifg=#000000 ctermbg=184 guibg=#dfdf00 +hi Underlined ctermfg=39 guifg=#00afff cterm=underline gui=underline +hi VertSplit ctermfg=237 guifg=#3a3a3a ctermbg=237 guibg=#3a3a3a cterm=none gui=none +" hi VIsualNOS ctermfg=24 guifg=#005f87 ctermbg=153 guibg=#afdfff cterm=none gui=none +" hi Visual ctermfg=24 guifg=#005f87 ctermbg=153 guibg=#afdfff +hi Visual ctermfg=255 guifg=#eeeeee ctermbg=96 guibg=#875f87 +" hi Visual ctermfg=255 guifg=#eeeeee ctermbg=24 guibg=#005f87 +hi VisualNOS ctermfg=255 guifg=#eeeeee ctermbg=60 guibg=#5f5f87 +hi WildMenu ctermfg=0 guifg=#000000 ctermbg=150 guibg=#afdf87 cterm=bold gui=bold + +"" Syntax highlighting {{{2 +hi Comment ctermfg=244 guifg=#808080 +hi Constant ctermfg=229 guifg=#ffffaf +hi Identifier ctermfg=182 guifg=#dfafdf cterm=none +hi Ignore ctermfg=238 guifg=#444444 +hi Number ctermfg=180 guifg=#dfaf87 +hi PreProc ctermfg=150 guifg=#afdf87 +hi Special ctermfg=174 guifg=#df8787 +hi Statement ctermfg=110 guifg=#87afdf cterm=none gui=none +hi Type ctermfg=146 guifg=#afafdf cterm=none gui=none + +"" Special {{{2 +""" .diff {{{3 +hi diffAdded ctermfg=150 guifg=#afdf87 +hi diffRemoved ctermfg=174 guifg=#df8787 +""" vimdiff {{{3 +hi diffAdd ctermfg=bg guifg=bg ctermbg=151 guibg=#afdfaf +"hi diffDelete ctermfg=bg guifg=bg ctermbg=186 guibg=#dfdf87 cterm=none gui=none +hi diffDelete ctermfg=bg guifg=bg ctermbg=246 guibg=#949494 cterm=none gui=none +hi diffChange ctermfg=bg guifg=bg ctermbg=181 guibg=#dfafaf +hi diffText ctermfg=bg guifg=bg ctermbg=174 guibg=#df8787 cterm=none gui=none +""" HTML {{{3 +" hi htmlTag ctermfg=146 guifg=#afafdf +" hi htmlEndTag ctermfg=146 guifg=#afafdf +hi htmlTag ctermfg=244 +hi htmlEndTag ctermfg=244 +hi htmlArg ctermfg=182 guifg=#dfafdf +hi htmlValue ctermfg=187 guifg=#dfdfaf +hi htmlTitle ctermfg=254 ctermbg=95 +" hi htmlArg ctermfg=146 +" hi htmlTagName ctermfg=146 +" hi htmlString ctermfg=187 +""" django {{{3 +hi djangoVarBlock ctermfg=180 +hi djangoTagBlock ctermfg=150 +hi djangoStatement ctermfg=146 +hi djangoFilter ctermfg=174 +""" python {{{3 +hi pythonExceptions ctermfg=174 +""" NERDTree {{{3 +hi Directory ctermfg=110 guifg=#87afdf +hi treeCWD ctermfg=180 guifg=#dfaf87 +hi treeClosable ctermfg=174 guifg=#df8787 +hi treeOpenable ctermfg=150 guifg=#afdf87 +hi treePart ctermfg=244 guifg=#808080 +hi treeDirSlash ctermfg=244 guifg=#808080 +hi treeLink ctermfg=182 guifg=#dfafdf + +""" VimDebug {{{3 +" FIXME +" you may want to set SignColumn highlight in your .vimrc +" :help sign +" :help SignColumn + +" hi currentLine term=reverse cterm=reverse gui=reverse +" hi breakPoint term=NONE cterm=NONE gui=NONE +" hi empty term=NONE cterm=NONE gui=NONE + +" sign define currentLine linehl=currentLine +" sign define breakPoint linehl=breakPoint text=>> +" sign define both linehl=currentLine text=>> +" sign define empty linehl=empty + diff --git a/.vimrc b/.vimrc new file mode 100644 index 0000000..18c6b4e --- /dev/null +++ b/.vimrc @@ -0,0 +1,171 @@ +"" +" Basics + +filetype on +syntax on +set encoding=utf-8 + +"" +" Global stuff + +" Show matched result. +set showmatch + +" Don't show the current command in the lower right corner. +set showcmd + +" Show numbers. +set number +set relativenumber + +" Don't show the mode, since this will be shown by the status line. +set noshowmode + +" Make sure that unsaved buffers that are to be put in the background are +" allowed to go in there (ie. the "must save first" error doesn't come up) +set hidden + +" Allow backspacing over everything in insert mode +set backspace=indent,eol,start + +" Don't wrap lines +set nowrap + +" I don't like the backup and the swapfile thingies. +set nobackup +set noswapfile + +" Use always the clipboard. +" NOTE: this only works if you have vim with clipboard support. You can check +" this by calling vim --version and see if you have +clipboard. +set clipboard=unnamed + +" Paste toggle +set pastetoggle=<f2> + +"" +" Colorscheme + +set background=dark +colorscheme xoria256 + +"" +" Setup the cursor for Konsole. +" NOTE: change this if you're not using Konsole or a program that makes use +" of the Konsole part. See +" http://vim.wikia.com/wiki/Change_cursor_shape_in_different_modes + +let &t_SI = "\<Esc>]50;CursorShape=1\x7" +let &t_EI = "\<Esc>]50;CursorShape=0\x7" + +"" +" Status line + +" Returns the mode we are currently. +function! Mode() + redraw + let l:mode = mode() + + if mode ==# "n" | return "NORMAL" + elseif mode ==# "i" | return "INSERT" + elseif mode ==# "R" | return "REPLACE" + elseif mode ==# "v" | return "VISUAL" + elseif mode ==# "V" | return "VISUAL-LINE" + elseif mode ==# "s" | return "SELECT" + elseif mode ==# "" | return "VISUAL-BLOCK" + else | return l:mode + endif +endfunc + +" My own status line. +set stl=\ %{Mode()}\ \|\ %f\ %m\ %r\ %=\ Line:\ %l\ Column:\ %v\ Buf:#%n + +" Always show the status line. +set laststatus=2 + +"" +" Searching stuff. + +" Ignore the case on search by default. +set ignorecase + +" Case sensitive if we start the search by an uppercase letter. +set smartcase + +" Find as you type search. +set incsearch + +"" +" Tabs, Indentation + +set textwidth=79 +set tabstop=2 +set shiftwidth=2 +set cindent +set autoindent +set smarttab +set expandtab +set backspace=indent,eol,start + +"" +" Plugins. + +filetype off +filetype indent plugin off + +" All the plugins are listed in my bundles file, that will be installed +" inside the ~/.vim directory. +source ~/.vim/bundles.vim + +" Enable plugins again. +filetype indent plugin on + +"" +" Everything regarding filetypes: indentation rules, gofmt & friends. + +source ~/.vim/autocmd.vim + +"" +" Re-mappings + +let g:mapleader = "," + +" Make window navigation easier. +nnoremap <C-j> <C-w>j +nnoremap <C-k> <C-w>k +nnoremap <C-h> <C-w>h +nnoremap <C-l> <C-w>l +nnoremap <leader>c :close<CR> +nnoremap <leader>v :vs<CR> +nnoremap <leader>V :vs<CR><C-w><C-l> + +" <C-s> in normal/insert mode: switch to normal mode and write to disk. +inoremap <C-s> <ESC>:w<CR> +nnoremap <C-s> :w<CR> + +" <C-q> is the same as @q (I use q to store macros). +nnoremap <C-q> @q + +" Pressing ^ in order to move to the first non-blank character is inconvenient. +nnoremap <leader>, ^ + +" The default behavior for <C-z> is simply useless: why would I want to stop +" the current `vim` process ? (especially shitty if you miss useful commands +" like <C-x> ...). +" +" Before I was remapping this to <nop>, but since switching to Emacs, I've +" started to use <C-z> as escape there in order to not overlap with an +" extremely used prefix. For consistency's sake, I'm also applying this to Vim. +nnoremap <C-z> <ESC> +inoremap <C-z> <ESC> + +" Do nothing for the <S-K> command. I never use it and it appears when I +" misstype <S-J>. +nnoremap K <nop> + +" Do nothing for <c-o>. I don't use this feature and it confuses me whenever I +" misstype <c-p> (CtrlP plugin). +nnoremap <c-o> <nop> + +" Set paste temporarily to just paste what we have on the registry. +nnoremap <leader>p :set paste<cr>p:set nopaste<cr> diff --git a/.xinitrc b/.xinitrc new file mode 100644 index 0000000..0f8722f --- /dev/null +++ b/.xinitrc @@ -0,0 +1,60 @@ +#!/bin/bash +# +# Sample .xinitrc for SuSE Linux +# This script is called from 'startx' when you start an X session +# + +# +# In case everything goes wrong, we at least fall back to a plain xterm +# +failsafe="xterm -ls -T Failsafe -geometry 80x24-0-0" +trap "exec $failsafe" EXIT SIGHUP SIGINT SIGPIPE SIGTERM SIGIO + +# +# Some bash (1 and 2) settings to avoid trouble on a +# failed program call. +# +set +e > /dev/null 2>&1 +set +u > /dev/null 2>&1 +set +o posix > /dev/null 2>&1 +if type shopt > /dev/null 2>&1 ; then + shopt -s execfail +else + no_exit_on_failed_exec=1 +fi + +# +# Source common code shared between the +# X session and X init scripts +# +. /etc/X11/xinit/xinitrc.common + +# +# Special for twm +# +case "$WINDOWMANAGER" in + *twm) xsetroot -solid darkslateblue +esac + +# +# Uncomment next lines to activate asking for ssh passphrase +# +# if test -S "$SSH_AUTH_SOCK" -a -x "$SSH_ASKPASS"; then +# ssh-add < /dev/null +# fi + +# +# Add your own lines here... +# + +# day planer deamon +# pland & + +# +# finally start the window manager +# +unset WINDOW_MANAGER STARTUP +exec $WINDOWMANAGER ${1+"$@"} + +# call failsafe +exit 0 diff --git a/Images/mssola-gran.jpg b/Images/mssola-gran.jpg new file mode 100644 index 0000000..405bd57 Binary files /dev/null and b/Images/mssola-gran.jpg differ diff --git a/Images/mssola.jpg b/Images/mssola.jpg new file mode 100644 index 0000000..986c30a Binary files /dev/null and b/Images/mssola.jpg differ diff --git a/README.org b/README.org index 7649eab..8450ffd 100644 --- a/README.org +++ b/README.org @@ -2,22 +2,21 @@ #+AUTHOR: Miquel Sabaté Solà #+EMAIL: mikisabate@gmail.com -To automatically install everything, just execute the =install.sh= script. -Take a look at this script since it might perform some actions that are -not of your satisfaction. Anyways, by default this script takes care of -initializing and updating submodules (in my case, I keep the vundle repo as -a submodule). Vim plugins will also get installed automatically. +Download everything by performing the following command (notice the =--recursive= flag): -And that's about it. Use this at your own risk ;) +#+BEGIN_SRC bash +$ git clone --recursive https://github.com/mssola/dotfiles.git +#+END_SRC + +To install everything just run the =install.sh= script. Use this at your own risk ;) ** GNU Emacs -See [[./emacs/README.org][emacs/README.org]]. +See [[./.emacs.d/README.org][.emacs.d/README.org]] ** Runtime dependencies -There are some runtime dependencies that matter to either Vim or Emacs. In -openSUSE (probably similar in your distribution) they can be solved like this: +There are lots of runtime dependencies that matter to Vim, GNU Emacs, etc. In openSUSE (probably similar in your distribution) they can be solved like this: #+BEGIN_SRC sh $ go get -u golang.org/x/tools/cmd/goimports @@ -27,16 +26,13 @@ $ go get -u github.com/nsf/gocode $ sudo zypper in spell #+END_SRC -Also, in GNU Emacs the markdown mode requires a markdown-to-HTML converter. There -are multiple options, but for me =calibre= seems to work just fine. +Also, in GNU Emacs the markdown mode requires a markdown-to-HTML converter. There are multiple options, but for me =calibre= seems to work just fine. + +This is by no means an exhaustive list. Feel free to report me missing dependencies on this repo. ** License -Every file is licensed under the GPLv3+ unless stated otherwise. I've tried to -mention every major influence on my =dotfiles=, but most surely I've forgotten -to add some people. If you feel like you should be mentioned somewhere in my -config files, please send me an email. You can find the full license in the -=LICENSE= file and below: +Every file is licensed under the GPLv3+ unless stated otherwise. I've tried to mention every major influence on my =dotfiles=, but most surely I've forgotten to add some people. If you feel like you should be mentioned somewhere in my config files, please send me an email. You can find the full license in the =LICENSE= file and below: #+BEGIN_SRC text Copyright (C) 2014-2019 Miquel Sabaté Solà <mikisabate@gmail.com> diff --git a/Xresources b/Xresources deleted file mode 100644 index 7af156a..0000000 --- a/Xresources +++ /dev/null @@ -1,11 +0,0 @@ -Xcursor.theme: breeze_cursors -Xcursor.size: 16 - -# Taken from https://github.com/ereslibre/dotfiles. -Xft.dpi: 96 -Xft.autohint: 0 -Xft.lcdfilter: lcddefault -Xft.hintstyle: hintfull -Xft.hinting: 1 -Xft.antialias: 1 -Xft.rgba: rgb diff --git a/agignore b/agignore deleted file mode 100644 index d5345cd..0000000 --- a/agignore +++ /dev/null @@ -1,15 +0,0 @@ -.yardoc -public/images -public/system -data -log -tmp -*.exe -*.so -*.dat -.git -.hg -.svn -build -node_modules -vendor diff --git a/bash_profile b/bash_profile deleted file mode 100644 index 5bc00ed..0000000 --- a/bash_profile +++ /dev/null @@ -1,3 +0,0 @@ -[[ -s ~/.bashrc ]] && source ~/.bashrc - -stty -ixon -ixoff diff --git a/bashrc b/bashrc deleted file mode 100644 index cd3ee78..0000000 --- a/bashrc +++ /dev/null @@ -1,151 +0,0 @@ -## -# Locale. - -# Set LC_ALL always to UTF-8. -if [ "$(locale -a | grep ca_ES.utf8)" != "" ]; then - export LC_ALL=ca_ES.utf8 -else - if [ "$(locale -a | grep en_US.utf8)" != "" ]; then - export LC_ALL=en_US.utf8 - else - echo "[Warning] Could not set up a proper locale." \ - "There is probably something missing on your host machine..." - fi -fi - -## -# Basics. - -# Beautifying ls command. -alias ls='ls --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' -alias ll='ls -l --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' -alias la='ls -la --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' -alias lisa='ls -lisa --group-directories-first --time-style=+"%d.%m.%Y %H:%M" --color=auto -F' - -# Alias related to cd -alias ..='cd ..' -alias cd..='cd ..' - -## -# Utility functions. - -# Sources the given file if it really exists. -source_maybe() { - if [ -f "$1" ]; then - source "$1" - fi -} - -## -# Editors & terminals. - -# Set GNU Emacs as the default editor. You can find this `emacsclient-a-nw` -# executable in the `bin` directory of my dotfiles. That being said, in the -# `bin` directory there is a globally installed script called `e`. This is the -# script that will be called most of the times from the CLI for reaching out to -# the default editor. -export EDITOR=emacsclient-a-nw -export VISUAL=emacsclient-a-nw -alias vi=vim - -# Alias xdg-open to just xo -alias xo=xdg-open - -# We want a full-fledged 256-color terminal. -TERM=xterm-256color - -# Set the LESS and the PAGER environment variables. -export LESS="FSRX" -export PAGER=less - -# git thingies. -source_maybe "$HOME/.gitcompletion.sh" -alias gti=git - -# Setting up PS1. -PS1='\u:\w$(__git_ps1 "\[\033[0;32m\]@%s\[\033[0m\]\]") $ ' - -## -# Programming languages and environments. - -# Rake completion -if [ -f "$HOME/.rake_completion" ]; then - complete -C "$HOME/.rake_completion" -o default rake -fi - -# Alias bundle exec -alias be='bundle exec' - -# After experimenting with GCC & Clang, I'm sticking with GCC. -export CC=/usr/bin/gcc -export CXX=/usr/bin/g++ - -# Go things -export GOROOT_BOOTSTRAP=/opt/go -export GOROOT=$HOME/Projects/go -export GOPATH=$HOME/Projects/golang -export PATH=$GOROOT/bin:$PATH:$GOPATH/bin - -## -# Misc. - -# The g utility. See: https://github.com/mssola/g -source_maybe "$HOME/.g.sh" -source_maybe "$HOME/.gcompletion.sh" - -# Complete the `docker` command if possible. -source_maybe "$HOME/.dockercompletion.sh" - -# Add the `bin` dir to the path if possible. See: -# https://github.com/mssola/dotfiles. -if [ -d "$HOME/bin" ]; then - export PATH=$HOME/bin:$PATH -fi - -# Some packages install inside of ~/.local/bin -export PATH=$HOME/.local/bin:$PATH - -# Some other misc. alias. -alias iosc="osc -A https://api.suse.de" -alias ag='ag --nocolor --path-to-ignore ~/.agignore' -alias random_string="cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 64 | head -n 1" - -# Cargo environment. -source_maybe "$HOME/.cargo/env" - -# SUSE -export SALT_DIR="$HOME/Projects/kubic-project/salt" -export SALT_PATH="$HOME/Projects/kubic-project/salt" - -export NODE_VERSION="8" - -# Finally RVM requires it to be the last thing on the PATH for whatever reason. -[[ -s "$HOME/.rvm/scripts/rvm" ]] && source "$HOME/.rvm/scripts/rvm" -export PATH="$PATH:$HOME/.rvm/bin" - -## -# Lastly I had some problems with the GPG agent recently. So I copied a solution -# from https://github.com/jessfraz/dotfiles - -# Use a tty for gpg -GPG_TTY=$(tty) -export GPG_TTY - -# Start the gpg-agent if not already running -if ! pgrep -x -u "${USER}" gpg-agent >/dev/null 2>&1; then - gpg-connect-agent /bye >/dev/null 2>&1 - gpg-connect-agent updatestartuptty /bye >/dev/null -fi - -# Set SSH to use gpg-agent -unset SSH_AGENT_PID -if [ "${gnupg_SSH_AUTH_SOCK_by:-0}" -ne $$ ]; then - export SSH_AUTH_SOCK="/run/user/$UID/gnupg/S.gpg-agent.ssh" -fi - -# Add alias for ssh to update the tty -alias ssh="gpg-connect-agent updatestartuptty /bye >/dev/null; ssh" - -# Handy alias for the ip command -alias ip="ip --color" -alias ipb="ip --color --brief" diff --git a/bin/emacsclient-a-nw b/bin/emacsclient-a-nw old mode 100644 new mode 100755 diff --git a/config/dunst/dunstrc b/config/dunst/dunstrc deleted file mode 100644 index 2985a88..0000000 --- a/config/dunst/dunstrc +++ /dev/null @@ -1,220 +0,0 @@ -[global] - font = Monospace 8 - - # The icon has to be on the left - icon_position = left - - # allow a small subset of html markup: - # <b>bold</b> - # <i>italic</i> - # <s>strikethrough<s/> - # <u>underline</u> - # - # for a complete reference see http://developer.gnome.org/pango/stable/PangoMarkupFormat.html - # If markup is not allowed, those tags will be stripped out of the message. - allow_markup = yes - - # The format of the message. Possible variables are: - # %a appname - # %s summary - # %b body - # %i iconname (including its path) - # %I iconname (without its path) - # %p progress value if set ([ 0%] to [100%]) or nothing - # Markup is allowed - format = "<b>%s</b>\n%b" - - # Sort messages by urgency - sort = yes - - # Show how many messages are currently hidden (because of geometry) - indicate_hidden = yes - - # alignment of message text. - # Possible values are "left", "center" and "right" - alignment = left - - # The frequency with wich text that is longer than the notification - # window allows bounces back and forth. - # This option conflicts with 'word_wrap'. - # Set to 0 to disable - bounce_freq = 0 - - # show age of message if message is older than show_age_threshold seconds. - # set to -1 to disable - show_age_threshold = 60 - - # split notifications into multiple lines if they don't fit into geometry - word_wrap = yes - - # ignore newlines '\n' in notifications - ignore_newline = no - - - # the geometry of the window - # geometry [{width}]x{height}][+/-{x}+/-{y}] - # The geometry of the message window. - # The height is measured in number of notifications everything else in pixels. If the width - # is omitted but the height is given ("-geometry x2"), the message window - # expands over the whole screen (dmenu-like). If width is 0, - # the window expands to the longest message displayed. - # A positive x is measured from the left, a negative from the - # right side of the screen. Y is measured from the top and down respectevly. - # The width can be negative. In this case the actual width is the - # screen width minus the width defined in within the geometry option. - geometry = "300x5-30+20" - - # The transparency of the window. range: [0; 100] - # This option will only work if a compositing windowmanager is present (e.g. xcompmgr, compiz, etc..) - transparency = 0 - - # Don't remove messages, if the user is idle (no mouse or keyboard input) - # for longer than idle_threshold seconds. - # Set to 0 to disable. - idle_threshold = 120 - - # Which monitor should the notifications be displayed on. - monitor = 0 - - # Display notification on focused monitor. Possible modes are: - # mouse: follow mouse pointer - # keyboard: follow window with keyboard focus - # none: don't follow anything - # - # "keyboard" needs a windowmanager that exports the _NET_ACTIVE_WINDOW property. - # This should be the case for almost all modern windowmanagers. - # - # If this option is set to mouse or keyboard, the monitor option will be - # ignored. - follow = mouse - - # should a notification popped up from history be sticky or - # timeout as if it would normally do. - sticky_history = yes - - # The height of a single line. If the height is smaller than the font height, - # it will get raised to the font height. - # This adds empty space above and under the text. - line_height = 0 - - # Draw a line of 'separatpr_height' pixel height between two notifications. - # Set to 0 to disable - separator_height = 2 - - # padding between text and separator - padding = 8 - - # horizontal padding - horizontal_padding = 8 - - # Define a color for the separator. - # possible values are: - # * auto: dunst tries to find a color fitting to the background - # * foreground: use the same color as the foreground - # * frame: use the same color as the frame. - # * anything else will be interpreted as a X color - separator_color = frame - - # print a notification on startup - # This is mainly for error detection, since dbus (re-)starts dunst - # automatically after a crash. - startup_notification = false - - # dmenu path - dmenu = /usr/bin/dmenu -p dunst: - - # browser for opening urls in context menu - browser = /usr/bin/firefox -new-tab - -[frame] - width = 3 - color = "#aaaaaa" - -[shortcuts] - # shortcuts are specified as [modifier+][modifier+]...key - # available modifiers are 'ctrl', 'mod1' (the alt-key), 'mod2', 'mod3' - # and 'mod4' (windows-key) - # xev might be helpful to find names for keys - - # close notification - close = ctrl+space - - # close all notifications - close_all = ctrl+shift+space - - # redisplay last message(s) - # On the US keyboard layout 'grave' is normally above TAB and left of '1'. - history = ctrl+grave - - # context menu - context = ctrl+shift+period - -[urgency_low] - # IMPORTANT: colors have to be defined in quotation marks. - # Otherwise the '#' and following would be interpreted as a comment. - background = "#222222" - foreground = "#888888" - timeout = 10 - -[urgency_normal] - background = "#285577" - foreground = "#ffffff" - timeout = 10 - -[urgency_critical] - background = "#900000" - foreground = "#ffffff" - timeout = 0 - - -# Every section that isn't one of the above is interpreted as a rules -# to override settings for certain messages. -# Messages can be matched by 'appname', 'summary', 'body' or 'icon' -# and you can override the 'timeout', 'urgency', 'foreground', 'background' -# and 'format'. -# Shell-like globbing will get expanded. -# -# SCRIPTING -# you can specify a script that gets run when the rule matches by setting -# the 'script' option. -# The script will be called as follows: -# script appname summary body icon urgency -# where urgency can be "LOW", "NORMAL" or "CRITICAL". -# -# NOTE: if you don't want a notification to be displayed, set the format to "" -# NOTE: It might be helpful to run dunst -print in a terminal in order to find -# fitting options for rules. - -#[espeak] -# summary = "*" -# script = dunst_espeak.sh - -#[script-test] -# summary = "*script*" -# script = dunst_test.sh - -#[ignore] -## This notification will not be displayed -# summary = "foobar" -# format = "" - -#[signed_on] -# appname = Pidgin -# summary = "*signed on*" -# urgency = low -# -#[signed_off] -# appname = Pidgin -# summary = *signed off* -# urgency = low -# -#[says] -# appname = Pidgin -# summary = *says* -# urgency = critical -# -#[twitter] -# appname = Pidgin -# summary = *twitter.com* -# urgency = normal -# diff --git a/config/mimeapps.list b/config/mimeapps.list deleted file mode 100644 index cfe79a0..0000000 --- a/config/mimeapps.list +++ /dev/null @@ -1,41 +0,0 @@ -[Default Applications] -x-scheme-handler/http=firefox.desktop -x-scheme-handler/https=firefox.desktop -x-scheme-handler/ftp=firefox.desktop -x-scheme-handler/chrome=firefox.desktop -text/html=firefox.desktop -application/x-extension-htm=firefox.desktop -application/x-extension-html=firefox.desktop -application/x-extension-shtml=firefox.desktop -application/xhtml+xml=firefox.desktop -application/x-extension-xhtml=firefox.desktop -application/x-extension-xht=firefox.desktop -application/pdf=firefox.desktop -application/x-pdf=firefox.desktop -application/x-bzpdf=firefox.desktop -application/x-gzpdf=firefox.desktop -image/jpeg=kolourpaint.desktop -image/jpg=kolourpaint.desktop -image/png=kolourpaint.desktop - -[Added Associations] -x-scheme-handler/http=firefox.desktop; -x-scheme-handler/https=firefox.desktop; -x-scheme-handler/ftp=firefox.desktop; -x-scheme-handler/chrome=firefox.desktop; -text/html=firefox.desktop; -application/x-extension-htm=firefox.desktop; -application/x-extension-html=firefox.desktop; -application/x-extension-shtml=firefox.desktop; -application/xhtml+xml=firefox.desktop; -application/x-extension-xhtml=firefox.desktop; -application/x-extension-xht=firefox.desktop; -application/pdf=firefox.desktop -application/x-pdf=firefox.desktop -application/x-bzpdf=firefox.desktop -application/x-gzpdf=firefox.desktop -image/jpeg=org.kde.gwenview.desktop;kolourpaint.desktop; -image/jpg=kolourpaint.desktop -image/png=kolourpaint.desktop -application/octet-stream=startcenter.desktop; -application/vnd.oasis.opendocument.text=writer.desktop; diff --git a/emacs/README.org b/emacs/README.org deleted file mode 100644 index 517908a..0000000 --- a/emacs/README.org +++ /dev/null @@ -1,94 +0,0 @@ -#+TITLE: GNU Emacs configuration -#+AUTHOR: Miquel Sabaté Solà -#+EMAIL: mikisabate@gmail.com - -* About this - -I'm following a literate programming approach for my GNU Emacs -configuration. The basic workflow is that on the first run the =init.el= file -will replace itself with a tangled (=org-babel=) version of itself. Therefore, -all changes should go into the =init.org= file. Moreover, I've added a function -that is executed on save which generates and compiles new versions of the -=init.el= file. - -I run GNU Emacs in daemon mode, but I don't use systemd for that. Instead, in -I'm using the =-a= argument of =emacsclient= with an empty string. This -instructs =emacsclient= to spawn a new server if there isn't one already. This -means that the first time around it will take some time, but in the next time -everything will be alright. - -=Supported versions=: GNU Emacs 25.x and 26.x. - -* Dependencies - -First of all, install the [[https://github.com/mssola/soria][soria]] color theme. This should already be handled by -the install script. Then make sure to install the following: - -- =calibre=: a markdown to HTML converter. -- =spell= for spell checking. -- A LaTeX to PDF converter for exporting org files to PDF. In openSUSE this is - fixed by installing the =texlive-pdftex= package. -- =mu= and =mu4e= for email. This should be installed from my [[https://build.opensuse.org/package/show/home:mssola/mu][OBS]] project. - -Last but not least, to get a proper Go environment you need to install the -following: - -#+BEGIN_SRC sh -go get -u golang.org/x/tools/cmd/goimports -go get -u github.com/rogpeppe/godef -go get -u github.com/dougm/goflymake -go get -u github.com/nsf/gocode -#+END_SRC - -* Developing - -I've added a git =pre-push= hook which syncs the =init.html= and the =org.css= -files into my personal server. - -* Installing - -The installation process of my GNU Emacs configuration should already be handled -by the =install.sh= script that can be found in the root of this project. If you -want to do it manually: - -- Create the =~/.emacs.d= directory if it has not been created yet. -- Copy the =init.el= into the =~/.emacs.d= directory. This is the only file that - should be copied instead of linked because it will get replaced on the first run - by =org-babel=. -- Link the =init.org=, =custom.el= and =gtkrc= files into the =~/.emacs.d= - directory. -- Create the =~/.emacs.d/lisp= subdirectory and link the =lisp/g.el= file there. -- Clone the [[https://github.com/mssola/soria][soria]] project and link the =soria-theme.el= file into the - =~/.emacs.d= directory. - -* Credits - -I've built this file by simply scavenging from other people's emacs.d/dotfiles -repositories. I have taken lots of pieces from here and there, but most notably: - -- [[https://github.com/ereslibre/dotfiles][@ereslibre]] -- [[https://github.com/dmacvicar/dotfiles][@dmacvicar]] -- [[https://github.com/bbatsov/emacs.d][@bbatsov]] -- [[https://github.com/aaronbieber/dotfiles][@aaronbieber]] -- [[https://github.com/purcell/emacs.d][@purcell]] -- [[https://github.com/sachac/emacs.d][@sachac]] ([[http://pages.sachachua.com/.emacs.d/Sacha.html][HTML version]]) -- [[https://github.com/larstvei/dot-emacs][@larstvei]] - -* License - -#+BEGIN_SRC text - Copyright (C) 2014-2019 Miquel Sabaté Solà <mikisabate@gmail.com> - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. -#+END_SRC diff --git a/emacs/custom.el b/emacs/custom.el deleted file mode 100644 index be16428..0000000 --- a/emacs/custom.el +++ /dev/null @@ -1,24 +0,0 @@ -(custom-set-variables - ;; custom-set-variables was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - '(ansi-color-names-vector - ["#1c1c1c" "#d78787" "#b9dc92" "#ffffaf" "#87afd7" "#875f87" "#dfafdf" "#d0d0d0"]) - '(custom-safe-themes - (quote - ("44c996124982462f61fa04eeccb9e3661fbe995489eacd3b0f289e37aed29c98" "613d432fab88d34f9a4451bdbe714a31749de6c5a4d9d0bf0929399ad50f1ac6" "03f4de3e9d5df2d34dc4085ea2fe4906edf6377bf02eef7eb3430b97155c1398" "c2ea64b5a0d8042da7ff3979fc03e5cc13fc1e4bc839c5ab464f69c2dada0804" "1c79d160e207fcd2193beaf95bf25d55e15f3237f6943cc04f516e7ef600bdd7" "6a32c414a3d1a493d534a28e7814a4d6055bc607bbf45d57196cd6ee9215461b" "da9b51d7ba5c03589a7cb74f0da136cf4c9b2fdc6c58e48d78f077c8ccca39a9" "6a068d53e7b2bf41ac4a3874ea296b78c3f90cd1fd44d1769812c4c578313539" "8ebd5ccdc11c1e53647c9efc153dbcf0b00a61a519825d2698ce065913cecd35" "7e69e41a60afea0bea1e5f7a89416466db331ec45cbafe47ebec694411c997b8" "3762f105d8ea307cec0ee7cc36dcbce1ab0009ca1ae448fd07e8e8e65647431f" "75080b8936556e23444bd76fcfc042e484a50a403ccb7f36fd190c21f7bf8941" "e2669e7d32201debd97395277167b6a1d93606b9445ebce01b9f878eb980e200" "92eb47cefb2f03abaaaa52c60a0b89845361577c2201d3399d19b944828505f4" "62c1fac02f61eaad07bf39fd461f5c78ee3424ba87a1f5fe91b1bea25475f327" "62f08bc59e1ac24e6df5b5b01fea2da24f2fec201b285ccda9991b7052a3a46a" "ce1c38b72f45eed22f3dfaf7f3f0df4b0b6ed975cc5d2012fb1aad13e8055840" "e8b0224a3bd5da096120bf19c976a29cfe67af41bfe73171348bfe99ee0da62d" "ad1c0d9498ad9344082d47e3a1bb6b75f0d004e0ae8361613b0c9963b23fbb4d" "8e6f5b61626315a98a6b38acfe966800777bf6a1841aa2b812b471772cc17114" "5869e98ef7446c9e2283e5788c0f6e2790676bdb52e9e1e112bb74e2415733c4" "5a3f33eefbcf2a3098bafd22d7ad44358e66c3e844797e7bf9ef552a08dfeb6f" default))) - '(delete-selection-mode nil) - '(electric-indent-mode t) - '(magit-commit-arguments (quote ("--all" "--verbose" "--signoff"))) - '(magit-log-arguments (quote ("--graph" "--color" "--decorate" "-n256"))) - '(markdown-command "/usr/bin/markdown-calibre") - '(package-selected-packages - (quote - (py-autopep8 elpy inf-ruby move-text git-timemachine debbugs async-await request emojify auctex diminish bats-mode bool-flip salt-mode flycheck-rust rust-playground rust-mode vue-mode coffee-mode json-reformat erc-hl-nicks emoji-cheat-sheet-plus helm-circe htmlize cmake-mode websocket markdown-mode go-mode magit evil-leader evil helm projectile org-eldoc evil-commentary yasnippet yaml-mode which-key web-mode wc-mode use-package terraform-mode smart-tabs-mode slim-mode scss-mode rainbow-delimiters php-mode org-evil olivetti mu4e-alert mmm-jinja2 markdown-preview-mode helm-projectile helm-ag go-eldoc go-add-tags flycheck evil-surround evil-org evil-numbers evil-mu4e evil-magit evil-args dockerfile-mode disable-mouse default-text-scale crux cmake-font-lock ag)))) -(custom-set-faces - ;; custom-set-faces was added by Custom. - ;; If you edit it by hand, you could mess it up, so be careful. - ;; Your init file should contain only one such instance. - ;; If there is more than one, they won't work right. - ) diff --git a/emacs/gtkrc b/emacs/gtkrc deleted file mode 100644 index 19d2109..0000000 --- a/emacs/gtkrc +++ /dev/null @@ -1,5 +0,0 @@ -style "emacsfont" -{ - font_name = "Droid Sans Mono Dotted for Powerline 10" -} -widget "*" style "emacsfont" diff --git a/emacs/init.el b/emacs/init.el deleted file mode 100644 index 4129a5c..0000000 --- a/emacs/init.el +++ /dev/null @@ -1,22 +0,0 @@ -;; This file replaces itself with the actual configuration at first run. -;; Idea and file taken from https://github.com/larstvei/dot-emacs. -;; -;; NOTE DO NOT MODIFY THIS FILE. All changes should go into init.org - -;; We can't tangle without org! -(require 'org) - -;; Follow symlinks -(setq vc-follow-symlinks t) - -;; Open the configuration -(find-file (concat user-emacs-directory "init.org")) - -;; Tangle it -(org-babel-tangle) - -;; Load it -(load-file (concat user-emacs-directory "init.el")) - -;; Finally byte-compile it -(byte-compile-file (concat user-emacs-directory "init.el")) diff --git a/emacs/init.org b/emacs/init.org deleted file mode 100644 index 66ed281..0000000 --- a/emacs/init.org +++ /dev/null @@ -1,2349 +0,0 @@ -#+TITLE: mssola's GNU Emacs configuration -#+AUTHOR: Miquel Sabaté Solà -#+EMAIL: mikisabate@gmail.com -#+BABEL: :cache yes -#+PROPERTY: header-args :tangle ~/.emacs.d/init.el - -* Preface - -This is my attempt of getting my configuration organized with literate -programming and =org-babel=. I took the workflow I'm following from [[https://github.com/larstvei][@larstvei]]. -The idea is that the =init.el= file will replace itself on the first execution -with the tangled version of this file. This first version will also be -byte-compiled. This means that all changes are to be made on the =init.org= -file *always*. The initial contents of the =init.el= are: - -#+BEGIN_SRC elisp :tangle no -;; We can't tangle without org! -(require 'org) - -;; Follow symlinks -(setq vc-follow-symlinks t) - -;; Open the configuration -(find-file (concat user-emacs-directory "init.org")) - -;; Tangle it -(org-babel-tangle) - -;; Load it -(load-file (concat user-emacs-directory "init.el")) - -;; Finally byte-compile it -(byte-compile-file (concat user-emacs-directory "init.el")) -#+END_SRC - -There is no reason to track the init.el file, and no reason to change this -file. In order to ensure this, make sure to apply the following command after -cloning: - -#+BEGIN_SRC sh :tangle no -git update-index --assume-unchanged emacs/init.el -#+END_SRC - -Moreover, in order to avoid manually tangling and compiling the =init.org= file -on each change, the following function is provided: - -#+BEGIN_SRC elisp -(defun tangle-init () - "If the current buffer is 'init.org' the code-blocks are - tangled, and the tangled file is compiled. Morever, an init.html is generated." - - (when (or (equal (buffer-file-name) - (expand-file-name (concat user-emacs-directory "init.org"))) - (string-suffix-p "dotfiles/emacs/init.org" (buffer-file-name))) - - ;; Avoid running hooks when tangling - (let ((prog-mode-hook nil)) - (org-babel-tangle) - (byte-compile-file (concat user-emacs-directory "init.el"))))) - -(add-hook 'after-save-hook 'tangle-init) -#+END_SRC - -* Introduction - -I'm using GNU Emacs 26, but everything should be working in GNU Emacs 24. There -are some exceptions to this (e.g. webkit support), but these cases are -individually handled. - -#+BEGIN_SRC elisp - (unless (>= emacs-major-version 25) - (error "Don't be a cheap bastard and upgrade to at least GNU Emacs 25")) -#+END_SRC - -Temporarily reduce garbage collection so startup time is lower. Idea taken from -[[https://github.com/purcell][@purcell]]. - -#+BEGIN_SRC elisp - (defconst mssola-initial-gc-cons-threshold gc-cons-threshold - "Initial value of `gc-cons-threshold' at start-up time.") - (setq gc-cons-threshold (* 1024 1024 1024)) - (add-hook 'after-init-hook - (lambda () (setq gc-cons-threshold mssola-initial-gc-cons-threshold))) -#+END_SRC - -User name and email. - -#+BEGIN_SRC elisp -(setq user-full-name "Miquel Sabaté Solà" - user-mail-address "mikisabate@gmail.com") -#+END_SRC - -* Lisp packages -** Custom packages - -Compile the =g.el= script and bind it to @@html:<kbd>M-g</kbd>@@. - -#+BEGIN_SRC elisp -(if (file-exists-p (concat user-emacs-directory "lisp/g.elc")) - (load-file (concat user-emacs-directory "lisp/g.elc")) - (byte-compile-file (concat user-emacs-directory "lisp/g.el") t)) -(global-set-key (kbd "M-g") 'g) -#+END_SRC - -** use-package - -Initialize package. - -#+BEGIN_SRC elisp -(require 'package) - -(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3") - -(add-to-list 'package-archives - '("melpa" . "http://melpa.milkbox.net/packages/") t) -(add-to-list 'package-archives - '("melpa-stable" . "https://stable.melpa.org/packages/") t) - -(package-initialize) -#+END_SRC - -I'm using use-package to handle my installed packages. I don't know if it's -the best option or what because I haven't tested all the package managers -for Emacs out there. After trying some custom functions to handle -package-install, I decided on use-package because I feel more well-organized. - -#+BEGIN_SRC elisp -(unless (package-installed-p 'use-package) - (package-refresh-contents) - (package-install 'use-package)) - -(require 'use-package) -#+END_SRC - -Some =use-package= calls require =diminish.el= to be available. So, let's -require it here on the very top. - -#+BEGIN_SRC elisp -(use-package diminish - :ensure t) -#+END_SRC - -* General - -** GUI - -I like a minimalistic GUI. Because of this, almost all GUI elements have been -disabled or tweaked in some custom way. - -The frame title is "<login>: <path>". If we are not editing a file, then the -name of the buffer is displayed (e.g. "mssola: *scratch*"). - -#+BEGIN_SRC elisp - (setq frame-title-format - '((:eval - (concat (user-real-login-name) ": " - (if (buffer-file-name) - (abbreviate-file-name (buffer-file-name)) - "%b"))))) -#+END_SRC - -Disable the menu, scroll and tool bars. At the same time, enable line and column -modes. - -#+BEGIN_SRC elisp - (menu-bar-mode -1) - (when (fboundp 'set-scroll-bar-mode) - (set-scroll-bar-mode nil)) - (when (fboundp 'tool-bar-mode) - (tool-bar-mode -1)) - (when (fboundp 'tooltip-mode) - (tooltip-mode 0)) - - (line-number-mode 1) - (column-number-mode 1) - - ;; Nice scrolling - (setq scroll-margin 0 - scroll-conservatively 100000 - scroll-preserve-screen-position 1) -#+END_SRC - -Relative line numbers support is builtin since GNU Emacs 26.1: - -#+BEGIN_SRC elisp -(if (>= emacs-major-version 26) - (progn - (add-hook 'prog-mode-hook 'display-line-numbers-mode) - (setq display-line-numbers-type 'relative) - (global-set-key (kbd "C-c L") 'display-line-numbers-mode))) -#+END_SRC - -** Basic editing configuration - -Use UTF-8 *always*. - -#+BEGIN_SRC elisp - (prefer-coding-system 'utf-8) - (set-default-coding-systems 'utf-8) - (set-terminal-coding-system 'utf-8) - (set-keyboard-coding-system 'utf-8) - (set-language-environment 'utf-8) -#+END_SRC - -Some editing tweaks like tabs vs spaces, maximum column width, etc. - -#+BEGIN_SRC elisp - ;; Emacs modes typically provide a standard means to change the indentation - ;; width (e.g. c-basic-offset). Moreover, even though I prefer tabs over space, - ;; for most coding conventions this is not the case (e.g. ruby). For this - ;; reason, I will disable them by default and enabled them back for each - ;; specific case (e.g. C). I'm also using the smart-tabs-mode package, see - ;; below in the languages section. - (setq-default indent-tabs-mode nil) - (setq-default tab-width 4) - - ;; Maximum 80 columns. - (setq-default fill-column 80) - (setq-default auto-fill-function 'do-auto-fill) - - ;; Do not break lines - (set-default 'truncate-lines t) - - ;; Delete the selection with a keypress. - (delete-selection-mode t) - - ;; Remove whitespaces at the end of line - (add-hook 'before-save-hook 'delete-trailing-whitespace) - - ;; Cursor - (blink-cursor-mode 0) - (global-hl-line-mode -1) - (show-paren-mode 1) -#+END_SRC - -** Font and theme - -I'm using "Droid Sans Mono" simply because I've grown used to it. - -#+BEGIN_SRC elisp -(defconst mssola-font - (if (string= system-type "darwin") - "Droid Sans Mono-12" - "Droid Sans Mono Dotted for Powerline-10") - "The font to be used.") - -(set-frame-font mssola-font) -(add-to-list 'default-frame-alist `(font . ,mssola-font)) - -; Emacs in daemon mode does not like `set-face-attribute` because this is only -; applied if there is a frame in place, which doesn't happen when starting the -; daemon. Thus, we should call that after the frame has been created (e.g. by -; emacsclient). -; See: https://lists.gnu.org/archive/html/help-gnu-emacs/2015-03/msg00016.html -(add-hook 'after-make-frame-functions-hook - (lambda () - (set-face-attribute 'default t :font mssola-font))) -#+END_SRC - -I've hacked my own theme called [[https://github.com/mssola/soria][soria]]. This theme combines the vim theme -[[http://www.vim.org/scripts/script.php?script_id=2140][xoria256]] with the [[http://opensuse.github.io/branding-guidelines/][openSUSE branding guidelines]]. - -#+BEGIN_SRC elisp - (load-theme 'soria t) -#+END_SRC - -When hacking your own theme, sometimes you want to know what face is the one -that you see on the screen right now. This function from [[https://github.com/thblt/DotFiles][@thblt]] allows me to -get exactly that: - -#+BEGIN_SRC elisp -(defun mssola-face-at-point (pos) - "Writes a message with the name of the face at the current point. The POS - argument contains the current position of the cursor." - - (interactive "d") - - (let ((face (or (get-char-property (point) 'read-face-name) - (get-char-property (point) 'face)))) - (if face (message "Face: %s" face) (message "No face at %d" pos)))) - -(global-set-key (kbd "C-c f") 'mssola-face-at-point) -#+END_SRC - -** General global key bindings - -Use kill-this-buffer instead of kill-buffer. - -#+BEGIN_SRC elisp - (global-set-key (kbd "C-x k") 'kill-this-buffer) -#+END_SRC - -Disable C-z. It will later on be picked up by Evil's config as the escape -sequence. This is here to make sure that it will be disabled even if Evil -cannot be loaded due to some error. - -#+BEGIN_SRC elisp - (global-unset-key (kbd "C-z")) -#+END_SRC - -Also disable the =C-x i= binding, since I've never used the default behavior, -and it will be used as a prefix for inferior modes (e.g. /ielm/). - -#+BEGIN_SRC elisp - (global-unset-key (kbd "C-x i")) -#+END_SRC - -Disable all the Fn keys. - -#+BEGIN_SRC elisp - (dotimes (i 12) - (global-unset-key (kbd (format "<f%d>" (+ i 1))))) -#+END_SRC - -Disable overwrite-mode. - -#+BEGIN_SRC elisp - (define-key global-map [(insert)] nil) -#+END_SRC - -Kill GNU Emacs by hitting =C-x r q= (mnemonic /Really quit/). - -#+BEGIN_SRC elisp - (global-set-key (kbd "C-x r q") 'kill-emacs) -#+END_SRC - -** Others - -Revert buffers automatically when underlying files are changed externally. - -#+BEGIN_SRC elisp - (global-auto-revert-mode t) -#+END_SRC - -Follow symlinks. - -#+BEGIN_SRC elisp - (setq vc-follow-symlinks t) -#+END_SRC - -Remove the initial message from the scratch buffer. - -#+BEGIN_SRC elisp - (setq initial-scratch-message nil) -#+END_SRC - -Never kill the scratch buffer, bury it instead. - -#+BEGIN_SRC elisp -(defadvice kill-buffer (around kill-buffer-around-advice activate) - (let ((buffer-to-kill (ad-get-arg 0))) - (if (equal buffer-to-kill "*scratch*") - (bury-buffer) - ad-do-it))) - -(defadvice kill-this-buffer (around kill-buffer-around-advice activate) - (let ((buffer-to-kill (ad-get-arg 0))) - (if (equal buffer-to-kill "*scratch*") - (bury-buffer) - ad-do-it))) -#+END_SRC - -No backups - -#+BEGIN_SRC elisp - (setq-default make-backup-files nil) - (setq-default auto-save-default nil) -#+END_SRC - -But at least save the list of recently open files. - -#+BEGIN_SRC elisp -(require 'recentf) - -(recentf-mode 1) -(global-set-key "\C-x\ \C-r" 'recentf-open-files) - -; Save the list every 5 minutes -(run-at-time nil (* 5 60) 'recentf-save-list) -#+END_SRC - -No welcome screen - -#+BEGIN_SRC elisp - (setq-default inhibit-startup-message t) -#+END_SRC - -Enable y/n answers - -#+BEGIN_SRC elisp - (fset 'yes-or-no-p 'y-or-n-p) -#+END_SRC - -Let flyspell be performant. - -#+BEGIN_SRC elisp - (defvar flyspell-issue-message-flag nil) -#+END_SRC - -Save custom-variables somewhere else. - -#+BEGIN_SRC elisp - (setq custom-file (expand-file-name "custom.el" user-emacs-directory)) - (if (file-exists-p custom-file) - (load custom-file)) -#+END_SRC - -Disable audio notifications. - -#+BEGIN_SRC elisp -(setq ring-bell-function 'ignore) -#+END_SRC - -* Calendar - -We catalans start our weeks on Monday. - -#+BEGIN_SRC elisp - (defvar calendar-week-start-day 1) -#+END_SRC - -Global key binding. - -#+BEGIN_SRC elisp - (global-set-key (kbd "M-c") 'calendar) -#+END_SRC - -Fix some stuff for evil mode. - -#+BEGIN_SRC elisp -(with-eval-after-load "calendar" - (with-eval-after-load "evil" - (evil-set-initial-state 'calendar-mode 'normal) - (evil-define-key 'normal calendar-mode-map - "j" 'calendar-forward-week - "k" 'calendar-backward-week - "b" 'calendar-backward-day - "h" 'calendar-backward-day - "l" 'calendar-forward-day - "w" 'calendar-forward-day - "q" 'calendar-exit - "\C-h" 'evil-window-left - "\C-l" 'evil-window-right - "\C-j" 'evil-window-down - "\C-k" 'evil-window-up - "\C-n" 'calendar-scroll-left-three-months - "\C-p" 'calendar-scroll-right-three-months))) -#+END_SRC - -* General purpose defuns - -I want to read the latest news. That's why I define a function that downloads -the =NEWS= file from the git server and then opens it in a buffer. - -#+BEGIN_SRC elisp - (defun mssola-view-emacs-latest-news () - "Allow users to fetch the latest Emacs' NEWS file." - (interactive) - - (url-copy-file - "http://git.savannah.gnu.org/cgit/emacs.git/plain/etc/NEWS" - "/tmp/emacs-news" t) - - (find-file-read-only "/tmp/emacs-news" t)) -#+END_SRC - -Sometimes I want to debug my initialization time. - -#+BEGIN_SRC elisp - (defun emacs-init-time () - "Redefine the `emacs-init-time' function so it is more detailed. - Idea taken from @purcell." - - (interactive) - (let ((init-time - (float-time (time-subtract after-init-time before-init-time)))) - (message "%.3fs" init-time))) -#+END_SRC - -* Project - -First of all, load the silver searcher, which is a convenient and fast searcher. -Ayo silver! - -#+BEGIN_SRC elisp - (use-package ag - :ensure t - :config - - ; Avoid some disagreements between ag and evil. - (with-eval-after-load 'evil - (add-hook 'ag-mode-hook - (lambda () - (define-key ag-mode-map (kbd "n") 'evil-search-next) - (define-key ag-mode-map (kbd "N") 'evil-search-previous) - (define-key ag-mode-map (kbd "gg") 'evil-goto-first-line)))) - (setq ag-reuse-buffers t) - (setq ag-reuse-window t)) -#+END_SRC - -Then, for keeping up with my projects I use the Projectile + Helm combination. - -#+BEGIN_SRC elisp - (use-package projectile - :ensure t - :config - (projectile-mode 1)) - - (use-package helm - :ensure t - :config - (setq projectile-completion-system 'helm) - - ; Allow the search pattern to be on the header. Taken from this Reddit thread: - ; https://www.reddit.com/r/emacs/comments/3asbyn/new_and_very_useful_helm_feature_enter_search/ - (setq helm-echo-input-in-header-line t) - - (defun helm-hide-minibuffer-maybe () - "Hide the minibuffer if we are in a Helm session" - - (when (with-helm-buffer helm-echo-input-in-header-line) - (let ((ov (make-overlay (point-min) (point-max) nil nil t))) - (overlay-put ov 'window (selected-window)) - (overlay-put ov 'face (let ((bg-color (face-background 'default nil))) - `(:background ,bg-color :foreground ,bg-color))) - (setq-local cursor-type nil)))) - - (add-hook 'helm-minibuffer-set-up-hook 'helm-hide-minibuffer-maybe) - (setq helm-split-window-inside-p t) - - ; Preview files with tab - (define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action) - - ; Show available options - (define-key helm-map (kbd "C-a") 'helm-select-action) - - ; Some vim-like bindings - (define-key helm-map (kbd "C-j") 'helm-next-line) - (define-key helm-map (kbd "C-k") 'helm-previous-line) - - (global-set-key (kbd "M-x") 'helm-M-x) - - (use-package helm-ag - :ensure t)) - - (use-package helm-projectile - :ensure t - :config - (helm-projectile-on) - - ; Define M-p as a way to quickly list all the available projects. - (with-eval-after-load 'evil - (define-key evil-normal-state-map (kbd "M-p") - 'helm-projectile-switch-project))) -#+END_SRC - -I use @@html:<kbd>C-p</kbd>@@ as the binding for listing relevant files. This -binding works either by using =helm-projectile= or the regular =helm-find= -function. As a final touch, this binding also works for listing channels in ERC -buffers. - -#+BEGIN_SRC elisp -(defun mssola-erc-helm-buffer-list () - "Returns a list with the ERC buffers." - (mapcar 'buffer-name (erc-buffer-list))) - -(defconst mssola-helm-source-erc-channel-list - '((name . "ERC Channels") - (candidates . mssola-erc-helm-buffer-list) - (action . switch-to-buffer))) - -(defun mssola-erc-helm-switch-buffer () - "Use helm to select an active ERC buffer." - - (interactive) - - (helm :sources '(mssola-helm-source-erc-channel-list) - :buffer "*helm-erc-channels*")) - -(defun mssola-find-file () - "Call the proper Helm function for finding files." - - (interactive) - - (if (string= major-mode "erc-mode") - (mssola-erc-helm-switch-buffer) - (condition-case nil - (helm-projectile-find-file) - (error - (helm-find-files nil))))) - -(with-eval-after-load 'evil - (define-key evil-normal-state-map (kbd "C-p") 'mssola-find-file)) -#+END_SRC - -Similarly, =helm-ag= has two functions for applying =ag= on the project. I'm -binding to @@html:<kbd>,a</kbd>@@ a function that calls to the proper function. - -#+BEGIN_SRC elisp - (defun mssola-helm-ag () - "Call the right ag command for helm-ag." - - (interactive) - - (condition-case nil - (helm-ag-project-root) - (error (helm-ag)))) - - (with-eval-after-load 'evil-leader - (evil-leader/set-key "a" 'mssola-helm-ag)) -#+END_SRC - -* Edit - -In this section I define some useful packages for editing. First of all, one of -the coolest packages out there is =undo-tree=. It allows you to navigate through -the undo history in a tree (because GNU Emacs is cool and keeps track of undo -actions in a tree structure instead of in a stack). This package is included in -recent versions of GNU Emacs. - -#+BEGIN_SRC elisp -(with-eval-after-load 'undo-tree - (global-undo-tree-mode 1) - - (setq undo-tree-visualizer-diff t - undo-tree-visualizer-timestamps t - undo-tree-visualizer-relative-timestamps t) - - (require 'diminish) - (diminish 'undo-tree-mode)) -#+END_SRC - -Another important package is =flycheck=, which is an on-the-fly syntax checking -extension. This works with lots of languages with proper glue code. - -#+BEGIN_SRC elisp -(use-package let-alist - :ensure t) - -(use-package flycheck - :ensure t - :diminish - :config - (add-hook 'after-init-hook 'global-flycheck-mode) - - ;; Only show the errors buffer if it isn't there and if I'm saving the - ;; buffer. - (setq flycheck-emacs-lisp-load-path 'inherit) - (setq flycheck-check-syntax-automatically '(mode-enabled save)) - (setq flycheck-display-errors-function - #'flycheck-display-error-messages-unless-error-list)) -#+END_SRC - -A recurring issue in speeches and presentations is that when showing something -with your editor, you have to increase/decrease the fonts. I use the -=default-text-scale= package for this. - -#+BEGIN_SRC elisp - (use-package default-text-scale - :ensure t - :config - (global-set-key (kbd "C-+") 'default-text-scale-increase) - (global-set-key (kbd "C--") 'default-text-scale-decrease)) -#+END_SRC - -Some languages use some delimiters a lot (e.g. lisp languages and -parenthesis). For this reason I'm using the =rainbow-delimiters= package, which -properly highlights each level in a different way (provided that your theme -supports it). - -#+BEGIN_SRC elisp - (use-package rainbow-delimiters - :ensure t) -#+END_SRC - -Enable =electric-pair-mode=, which automatically closes pairs like brackets: - -#+BEGIN_SRC elisp -(electric-pair-mode 1) -#+END_SRC - -I never use the mouse. - -#+BEGIN_SRC elisp -(use-package disable-mouse - :ensure t - :config - (global-disable-mouse-mode) - (setq global-disable-mouse-mode-lighter "")) -#+END_SRC - -Sometimes you begin typing a prefix, but then you forget the following -chord. For this reason =which-key= was created. It will show the available -commands for the current chord as a list. - -#+BEGIN_SRC elisp -(use-package which-key - :ensure t - :diminish which-key-mode - :config - (which-key-mode)) -#+END_SRC - -For some modes it is important to count the number of words in the text. For -this, we have =wc-mode=. - -#+BEGIN_SRC elisp - (use-package wc-mode - :ensure t) -#+END_SRC - -Editing files as root is a bit of a pain because usually the root user doesn't -have the same configuration as the current one, and attempting to do so can be -messy. So, instead of that, we could advice the =find-file= function so if the -file is not writable by the current user, then GNU Emacs will ask for editing -this same file as root: - -#+BEGIN_SRC elisp -(defadvice find-file (after find-file-sudo activate) - "Find file as root if necessary." - (if (and buffer-file-name - (not (file-writable-p buffer-file-name))) - (if (yes-or-no-p "Do you want to edit this file as root?") - (find-alternate-file (concat "/sudo:root@localhost:" buffer-file-name))))) -#+END_SRC - -=YASnippet= allows people to define shortcuts for writing some common blocks. -Moreover, it comes with a set of builtin snippets already. Since I don't -remember some of these snippets, I've mapped @@html:<kbd>, h</kbd>@@ to -=yas-describe-tables=, which shows the available snippets in another buffer. - -#+BEGIN_SRC elisp -(use-package yasnippet - :ensure t - :diminish yas-minor-mode - :init (yas-global-mode) - :config - (yas-global-mode 1)) -#+END_SRC - -=bool-flip= is a very simple utility that toggles truthy/falsey values. - -#+BEGIN_SRC elisp -(use-package bool-flip - :ensure t - :config - (global-set-key (kbd "C-c b") 'bool-flip-do-flip)) -#+END_SRC - -=move-text= is a small package that allows you to move lines with a -keybinding. This might be feasible with Evil mode, but still this might help -when you want to move lines and keep the default registry empty: - -#+BEGIN_SRC elisp -(use-package move-text - :ensure t - :bind - (("M-k" . move-text-up) - ("M-j" . move-text-down))) -#+END_SRC - -* Dired - -I use dired mode mainly for attaching document into emails. That being said, -whenever I use it, I want basic evil movement. - -#+BEGIN_SRC elisp - (with-eval-after-load 'evil - (evil-add-hjkl-bindings dired-mode-map 'normal - (kbd "w") 'evil-forward-word-begin)) -#+END_SRC - -I also extend =dired= with some handy tweaks. - -#+BEGIN_SRC elisp -(setq directory-free-space-args "-Pkh" - dired-dwim-target t - dired-omit-mode nil - dired-recursive-copies 'always - dired-recursive-deletes 'always - delete-old-versions t) -#+END_SRC - -And now instruct dired mode how to attach files when using mu4e. This is taken -from the [[https://www.djcbsoftware.nl/code/mu/mu4e/Dired.html#Dired][mu4e documentation]], and it's available by typing -@@html:<kbd>C-c RET C-a</kbd>@@. - -#+BEGIN_SRC elisp - (require 'gnus-dired) - - ;; Make the `gnus-dired-mail-buffers' function also work on message-mode derived - ;; modes, such as mu4e-compose-mode. - (defun gnus-dired-mail-buffers () - "Return a list of active message buffers." - - (let (buffers) - (save-current-buffer - (dolist (buffer (buffer-list t)) - (set-buffer buffer) - (when (and (derived-mode-p 'message-mode) - (null message-sent-message-via)) - (push (buffer-name buffer) buffers)))) - (nreverse buffers))) - - (setq gnus-dired-mail-mode 'mu4e-user-agent) - (add-hook 'dired-mode-hook 'turn-on-gnus-dired-mode) -#+END_SRC - -* Evil - -Forgive me, [[https://stallman.org/saint.html][Father]], for I have sinned. I've been exposed to modal editing -through Vim, and that has changed how I view editing for the foreseeable future. -Because of this, I use Evil. The following blocks include some heavy-lifting so -Evil and GNU Emacs work without hitting each other, and it also includes some -Evil extensions. - -First of all, let's define a function that will be called whenever Evil is loaded. - -#+BEGIN_SRC elisp -(defun mssola-evil () - "Configure evil mode." - - ; We can safely remap <C-u> because the counting will be handled a-la Vim. - (define-key evil-normal-state-map (kbd "C-u") 'evil-scroll-up) - - ; Make window navigation easier. - (define-key evil-normal-state-map (kbd "C-j") 'evil-window-down) - (define-key evil-normal-state-map (kbd "C-k") 'evil-window-up) - (define-key evil-normal-state-map (kbd "C-l") 'evil-window-right) - (define-key evil-normal-state-map (kbd "C-h") 'evil-window-left) - - ; The window navigation tweaks effectively wipe out the help prefix, which - ; is bad. Fortunately we can workaround this by providing "M-h" as the new - ; help prefix. This prefix is only used in emacs mode to mark lines, which is - ; something already handled by Evil. - (define-key global-map (kbd "M-h") 'help-command) - (fset 'help-command help-map) - - ; Go back to Emacs' bindings on beginning/end of line. - (eval-after-load "evil-maps" - (dolist (map '(evil-motion-state-map - evil-insert-state-map - evil-emacs-state-map)) - (define-key (eval map) "\C-a" 'crux-move-beginning-of-line) - (define-key (eval map) "\C-e" 'end-of-line))) - - ; I store macros on the <q> register for convenience, so I used to use the - ; <C-q> combo to execute this macro in Vim. In Emacs though, this combo is - ; reserved to a rather useful function, and I'd like to keep it that way. So, - ; now the mapping is set to <C-2> (mnemonic: where the @ symbol is). Moreover, - ; it's applied as many times as specified by the numeric prefix argument. - (define-key evil-normal-state-map (kbd "C-2") - (lambda (n) - (interactive "p") - (evil-execute-macro n "@q"))) - - ; C-s: switch to normal mode and save the buffer. I know :) - (define-key evil-normal-state-map (kbd "C-s") 'save-buffer) - (define-key evil-insert-state-map (kbd "C-s") - (lambda () (interactive) (save-buffer) (evil-force-normal-state)))) -#+END_SRC - -Now make sure that Evil is installed, and call the relevant configuration functions. - -#+BEGIN_SRC elisp -(use-package evil - :ensure t - :config - (add-hook 'evil-mode-hook 'mssola-evil) - (evil-mode 1) - - ;; C-z is unused and it's close to my beloved C-c. Since I don't want to mess - ;; with one of the most sacred Emacs prefixes, I'm moving to C-z. - (define-key key-translation-map (kbd "C-z") [escape]) - (define-key evil-operator-state-map (kbd "C-z") 'keyboard-quit) - - ;; Use the proper initial evil state for the following modes. - (evil-set-initial-state 'help-mode 'normal) - (evil-set-initial-state 'debugger-mode 'normal) - (evil-set-initial-state 'describe-mode 'normal) - (evil-set-initial-state 'Buffer-menu-mode 'normal) -#+END_SRC - -If Evil was properly loaded, then make sure that the following Evil-related -packages are installed and configured as well. I start by defining the -=evil-leader= package, which brings the @@html:<kbd>leader</kbd>@@ feature from -Vim into Evil. - -#+BEGIN_SRC elisp - (use-package evil-leader - :ensure t - :config - (global-evil-leader-mode) - (evil-leader/set-leader ",") - (setq evil-leader/in-all-states 1) - (evil-leader/set-key - "c" 'delete-window - "k" 'kill-buffer-and-window - "v" 'split-window-right - "V" (lambda () (interactive) (split-window-right) (other-window 1)) - "f" 'flycheck-list-errors)) -#+END_SRC - -Another handy Vim plugin that has made it into Evil is =evil-surround=, which -defines a new text object for surrounding characters (e.g. change a string from -having double quotes with single quotes in a single command). - -#+BEGIN_SRC elisp - (use-package evil-surround - :ensure t - :config - (global-evil-surround-mode 1)) -#+END_SRC - -Next is another Vim plugin that has been ported to Evil: =evil-commentary=. This -package defines a new motion for comments, which is bound to -@@html:<kbd>gc</kbd>@@. So, for example, @@html:<kbd>gcc</kbd>@@ will comment -the current line, regardless of the programming language. - -#+BEGIN_SRC elisp - (use-package evil-commentary - :ensure t - :config - (evil-commentary-mode t)) -#+END_SRC - -Another cool package is =evil-args= which defines the argument text object. This -text object can be targeted with the =a= character, and we can move backward and -forward through arguments with @@html:<kbd>H</kbd>@@ and @@html:<kbd>L</kbd>@@ -respectively. - -#+BEGIN_SRC elisp - (use-package evil-args - :ensure t - :config - ; Configuration taken from the documentation of evil-args. - - ;; Bind evil-args text objects - (define-key evil-inner-text-objects-map "a" 'evil-inner-arg) - (define-key evil-outer-text-objects-map "a" 'evil-outer-arg) - - ;; Bind evil-forward/backward-args - (define-key evil-normal-state-map "L" 'evil-forward-arg) - (define-key evil-normal-state-map "H" 'evil-backward-arg) - (define-key evil-motion-state-map "L" 'evil-forward-arg) - (define-key evil-motion-state-map "H" 'evil-backward-arg)) -#+END_SRC - -Last but not least, =evil-numbers= brings a couple of bindings available to Vim -into Evil: @@html:<kbd>C-c +</kbd>@@ for increasing a number, and -@@html:<kbd>C-c -</kbd>@@ for decreasing it. - -#+BEGIN_SRC elisp - (use-package evil-numbers - :ensure t - :config - (define-key evil-normal-state-map (kbd "C-c +") 'evil-numbers/inc-at-pt) - (define-key evil-normal-state-map (kbd "C-c -") 'evil-numbers/dec-at-pt))) -#+END_SRC - -* Git - -A git porcelain for GNU Emacs. Even if I'm still using the git CLI, it's -certainly useful for some common tasks (I guess that I still need some learning). - -#+BEGIN_SRC elisp -(use-package magit - :ensure t - :config -#+END_SRC - -Set some global key bindings for Magit. - -#+BEGIN_SRC elisp -(global-set-key (kbd "C-x g") 'magit-status) -(global-set-key (kbd "C-c l") 'magit-log-buffer-file) -#+END_SRC - -And repair some key bindings from Evil mode. - -#+BEGIN_SRC elisp - (with-eval-after-load 'evil - (use-package evil-magit - :ensure t - :config - - ; The magit + evil-magit combo messes up some chords, let's fix this. - (evil-define-key 'normal magit-mode-map - "\C-h" 'evil-window-left - "\C-l" 'evil-window-right - "\C-j" 'evil-window-down - "\C-k" 'evil-window-up)))) -#+END_SRC - -=git-timemachine= is a package that goes hand-in-hand with Magit, and it -provides a very easy way to go through the history of a file (while providing -ways of jumping into Magit): - -#+BEGIN_SRC elisp -(use-package git-timemachine - :ensure t - :bind (("C-x t m" . git-timemachine-toggle))) -#+END_SRC - -* Email - -I use [[http://www.djcbsoftware.nl/code/mu/][mu]] and [[http://www.djcbsoftware.nl/code/mu/mu4e.html][mu4e]] to manage my email. The configuration for this has been taken -mainly from the documentation, plus some cool remarks on Reddit. This -configuration makes quite some assumptions. Read the =emacs/README.org= file as -provided in my [[https://github.com/mssola/dotfiles][dotfiles]] project to get more details. - -I'm using an RPM that I've built on [[https://build.opensuse.org/package/show/home:mssola/mu][OBS]] which installs mu4e globally. - -#+BEGIN_SRC elisp -(unless (file-directory-p "/usr/share/emacs/site-lisp/mu4e") - (message "Skipping mu4e because it's not installed.")) - -(when (file-directory-p "/usr/share/emacs/site-lisp/mu4e") - (add-to-list 'load-path "/usr/share/emacs/site-lisp/mu4e") - (require 'mu4e) - - (when (featurep 'mu4e) -#+END_SRC - -Set =mu4e= as the default user agent. This will be picked up by =compose-mail=. - -#+BEGIN_SRC elisp -(setq mail-user-agent 'mu4e-user-agent) -#+END_SRC - -Diferent SMTP options that will be used for each context. - -#+BEGIN_SRC elisp - (setq message-send-mail-function 'smtpmail-send-it - mu4e-maildir (expand-file-name "~/.mail") - starttls-use-gnutls t) -#+END_SRC - -After that, I am defining some functions that will be used in various parts of -the configuration. - -#+BEGIN_SRC elisp -(defun mssola-smtp (server port) - "Set SMTP variables depending on the given SERVER and PORT." - - (require 'smtpmail) - - (setq smtpmail-starttls-credentials '((server port nil nil)) - smtpmail-auth-credentials (expand-file-name "~/.authinfo.gpg") - smtpmail-default-smtp-server server - smtpmail-smtp-server server - message-send-mail-function 'smtpmail-send-it - smtpmail-smtp-service port)) - -; https://www.reddit.com/r/emacs/comments/47t9ec/share_your_mu4econtext_configs/d0fsih6 -(defun mu4e-message-maildir-matches (msg rx) - "Returns true if the maildir of MSG matches the given regexp RX." - - (when rx - (if (listp rx) - ;; if rx is a list, try each one for a match - (or (mu4e-message-maildir-matches msg (car rx)) - (mu4e-message-maildir-matches msg (cdr rx))) - ;; not a list, check rx - (string-match rx (mu4e-message-field msg :maildir))))) - -(defun suse-refile-folder (key) - "Returns the refile folder for the given SUSE account in the KEY arg" - - (if (string= key "susecom") - (setq archives-dir "/Arxiu/") - (setq archives-dir "/Archives/")) - (concat "/" key archives-dir - (format-time-string "%Y" (current-time)))) -#+END_SRC - -Depending on the context, it's better a signature or another: - -#+BEGIN_SRC elisp -(defun mssola-mu4e-signature (key) - "Returns a string containing the mail signature for the given KEY." - - (if (string= key "ajuntament") - (concat - "Miquel Sabaté Solà,\n" - "Regidor de Joventut, Participació ciutadana i Transparència\n" - "\n" - "Ajuntament de Capellades\n" - "Carrer de Ramon Godó, 9, 08786 - Capellades\n" - "Tel. 93 801 10 01 – mòbil 677 12 72 07\n" - "sabatesm@capellades.cat\n") - (concat - "Miquel Sabaté Solà,\n" - "PGP: 4096R / 1BA5 3C7A C93D CA2A CFDF DA97 96BE 8C6F D89D 6565\n"))) -#+END_SRC - -Now it's time to define the different contexts that I have. Defining contexts -this way is relatively new (since mu 0.9.16). - -#+BEGIN_SRC elisp -(setq mu4e-contexts - `( - ;; GMail - ,(make-mu4e-context - :name "gmail" - :enter-func (lambda () - (mu4e-message "Switching to gmail.com") - (setq mu4e-compose-signature (mssola-mu4e-signature "gmail")) - (setq mu4e-sent-messages-behavior 'delete) - (mssola-smtp "smtp.gmail.com" 587)) - :match-func (lambda (msg) - (when msg - (mu4e-message-maildir-matches msg "^/gmail"))) - :vars '( - (user-mail-address . "mikisabate@gmail.com") - (mu4e-reply-to-address . "mikisabate@gmail.com") - (mu4e-drafts-folder . "/gmail/Drafts") - (mu4e-sent-folder . "/gmail/Sent") - (mu4e-refile-folder . "/gmail/All") - (mu4e-trash-folder . "/gmail/Trash"))) - - ;; City hall - ,(make-mu4e-context - :name "ajuntament" - :enter-func (lambda () - (mu4e-message "Switching to mail.diba.cat") - (setq mu4e-compose-signature (mssola-mu4e-signature "ajuntament")) - (setq mu4e-sent-messages-behavior 'sent) - (mssola-smtp "mail.diba.cat" 587) - (setq smtpmail-local-domain "capellades.cat")) - :match-func (lambda (msg) - (when msg - (mu4e-message-maildir-matches msg "^/ajuntament"))) - :vars '( - (user-mail-address . "sabatesm@capellades.cat") - (mu4e-reply-to-address . "sabatesm@capellades.cat") - (mu4e-drafts-folder . "/ajuntament/Esborranys") - (mu4e-sent-folder . "/ajuntament/Elements enviats") - (mu4e-refile-folder . "/ajuntament/Arxiu") - (mu4e-trash-folder . "/ajuntament/Elements suprimits"))) - - ;; suse.com - ,(make-mu4e-context - :name "comsuse" - :enter-func (lambda () - (mu4e-message "Switching to suse.com") - (setq mu4e-compose-signature (mssola-mu4e-signature "comsuse")) - (setq mu4e-sent-messages-behavior 'sent) - (mssola-smtp "smtp.office365.com" 587)) - :match-func (lambda (msg) - (when msg - (mu4e-message-maildir-matches msg "^/susecom"))) - :vars `( - (user-mail-address . "msabate@suse.com") - (mu4e-reply-to-address . "msabate@suse.com") - (mu4e-drafts-folder . "/susecom/Esborranys") - (mu4e-sent-folder . "/susecom/Elements enviats") - (mu4e-refile-folder . ,(suse-refile-folder "susecom")) - (mu4e-trash-folder . "/susecom/Elements suprimits"))) - - ;; suse.de - ,(make-mu4e-context - :name "desuse" - :enter-func (lambda () - (mu4e-message "Switching to suse.de") - (setq mu4e-compose-signature (mssola-mu4e-signature "desuse")) - (setq mu4e-sent-messages-behavior 'sent) - (mssola-smtp "imap.suse.de" 587)) - :match-func (lambda (msg) - (when msg - (mu4e-message-maildir-matches msg "^/susede"))) - :vars `( - (user-mail-address . "msabate@suse.de") - (mu4e-reply-to-address . "msabate@suse.de") - (mu4e-drafts-folder . "/susede/Drafts") - (mu4e-sent-folder . "/susede/Sent") - (mu4e-refile-folder . ,(suse-refile-folder "susede")) - (mu4e-trash-folder . "/susede/Trash"))))) -#+END_SRC - -If mu4e cannot figure things out, ask me. - -#+BEGIN_SRC elisp - (setq mu4e-context-policy 'ask) - (setq mu4e-compose-context-policy 'ask) -#+END_SRC - -Fill the =mu4e-user-mail-address-list= variable with the contexts. - -#+BEGIN_SRC elisp - (setq mu4e-user-mail-address-list - (delq nil - (mapcar (lambda (context) - (when (mu4e-context-vars context) - (cdr (assq 'user-mail-address - (mu4e-context-vars context))))) - mu4e-contexts))) -#+END_SRC - -Setting my bookmarks - -#+BEGIN_SRC elisp -(setq mu4e-bookmarks - '(("maildir:/gmail/inbox OR maildir:/susecom/inbox OR maildir:/susede/inbox OR maildir:/ajuntament/inbox" "Inbox Folders" ?n) - ("maildir:/gmail/Sent OR maildir:/susecom/Elements\\ enviats OR maildir:/susede/Sent OR maildir:/ajuntament/Elements\\ enviats" "Sent Folders" ?s) - ("flag:unread AND NOT flag:trashed" "Unread messages" ?u) - ("date:today..now" "Today's messages" ?t))) -#+END_SRC - -Sign outgoing emails always. - -#+BEGIN_SRC elisp - (add-hook 'message-send-hook 'mml-secure-message-sign-pgpmime) -#+END_SRC - -To avoid UID clashes. See [[http://pragmaticemacs.com/emacs/fixing-duplicate-uid-errors-when-using-mbsync-and-mu4e/][this]]. - -#+BEGIN_SRC elisp - (setq mu4e-change-filenames-when-moving t) -#+END_SRC - -Miscellaneous settings. - -#+BEGIN_SRC elisp -(setq mu4e-html2text-command "w3m -T text/html" - mu4e-attachment-dir "~/Downloads" - mu4e-headers-date-format "%Y-%m-%d %H:%M" - message-citation-line-format "%N @ %Y-%m-%d %H:%M %Z:\n" - message-citation-line-function 'message-insert-formatted-citation-line - message-kill-buffer-on-exit t - mu4e-get-mail-command "mbsync -aqV" - mu4e-update-interval 600 - mu4e-compose-dont-reply-to-self t - mu4e-compose-format-flowed t - mu4e-view-show-addresses t - mu4e-headers-skip-duplicates t - mu4e-headers-include-related t - mu4e-headers-auto-update t) -#+END_SRC - -The headers to show in the headers list a pair of a field and its width, -with `nil' meaning 'unlimited' (better only use that for the last field. -These are the defaults: - -#+BEGIN_SRC elisp - (setq mu4e-headers-fields - '( (:date . 18) - (:mailing-list . 15) - (:from-or-to . 20) - (:subject . nil))) -#+END_SRC - -Add as a header action to toggle gnus mode for the view mode. I'm doing this -because this is way better to visualize attached .eml emails. - -#+BEGIN_SRC elisp -(defun mssola-toggle-gnus-mode (msg) - "Toggle gnus on view mode from now on." - (if mu4e-view-use-gnus - (setq mu4e-view-use-gnus nil) - (setq mu4e-view-use-gnus t))) - -(add-to-list 'mu4e-headers-actions - '("gnus mode toggle" . mssola-toggle-gnus-mode) t) -#+END_SRC - -Show images - -#+BEGIN_SRC elisp - (setq mu4e-view-show-images t - mu4e-view-image-max-width 800) - - ; Use imagemagick, if available - (when (fboundp 'imagemagick-register-types) - (imagemagick-register-types)) -#+END_SRC - -Correct some key bindings that are screwed up by =evil-mode=: - -#+BEGIN_SRC elisp -(evil-define-key 'normal mu4e-view-mode-map - ";" 'mu4e-context-switch - "e" 'mu4e-view-save-attachment - "F" 'mu4e-compose-forward) -#+END_SRC - -As of 0.9.18 and GNU Emacs 25, the =mu4e-action-with-xwidget= can be used to -render an HTML message with Webkit. - -#+BEGIN_SRC elisp - (if (>= emacs-major-version 25) - (add-to-list 'mu4e-view-actions - '("webkit" . mu4e-action-view-with-xwidget))) -#+END_SRC - -Look for =mu4e-msg2pdf= in the exec path. The reason for this is that the OBS -package installs mu's =toys= into the exec path, but =mu4e= doesn't really count -on it. - -#+BEGIN_SRC elisp - (let ((exec (locate-file "msg2pdf" exec-path exec-suffixes))) - (if exec - (setq mu4e-msg2pdf exec))) -#+END_SRC - -Adding hooks for composing and viewing messages. - -#+BEGIN_SRC elisp - (defun mssola-compose-mode () - "My settings for message composition." - - ; If we are composing an email from scratch, it's more convenient to be in - ; insert mode. Otherwise start with normal mode. - (with-eval-after-load 'evil - (if mu4e-compose-parent-message - (evil-set-initial-state 'mu4e-compose-mode 'normal) - (evil-set-initial-state 'mu4e-compose-mode 'insert))) - - ; Guess hard newlines - (use-hard-newlines t 'guess) - - ; So it's easy to encrypt/decrypt emails. - (epa-mail-mode) - - ; Spellz - (flyspell-mode)) - - (add-hook 'mu4e-compose-mode-hook 'mssola-compose-mode) - - ; I want to read messages in the format that the sender used. I'm also - ; enabling epa-mail-mode, so it's easy to decrypt received emails. - (add-hook 'mu4e-view-mode-hook - (lambda () - (epa-mail-mode) - (visual-line-mode 1))) -#+END_SRC - -I want desktop notifications when receiving email. - -#+BEGIN_SRC elisp - (use-package mu4e-alert - :ensure t - :config - - ; Notify me for unread emails from my inbox. - (mu4e-alert-set-default-style 'libnotify) - (add-hook 'after-init-hook #'mu4e-alert-enable-notifications) - (add-hook 'after-init-hook #'mu4e-alert-enable-mode-line-display) - (setq mu4e-alert-interesting-mail-query - (concat - "(maildir:/gmail/inbox OR maildir:/susecom/inbox OR maildir:/susede/inbox OR maildir:/ajuntament/inbox) " - "AND flag:unread AND NOT flag:trashed")) - (setq mu4e-alert-email-notification-types '(count))) - - ; Evil mode in mu4e - (with-eval-after-load 'evil - (use-package evil-mu4e - :ensure t - :config - - ; Idea taken from evil-mu4e.el - (defvar mssola-evil-mu4e-mode-map-bindings - `((,evil-mu4e-state mu4e-headers-mode-map "\C-u" evil-scroll-up) - (,evil-mu4e-state mu4e-main-mode-map "\C-u" evil-scroll-up) - (,evil-mu4e-state mu4e-view-mode-map "h" evil-backward-char))) - - (dolist (binding mssola-evil-mu4e-mode-map-bindings) - (evil-define-key - (nth 0 binding) (nth 1 binding) (nth 2 binding) (nth 3 binding))))) -#+END_SRC - -And finally define a proper shortcut. - -#+BEGIN_SRC elisp - ; The trailing parenthesis closes the "(when (featurep 'mu4e)" statement from - ; the very beginning. - (global-set-key (kbd "C-c m") 'mu4e))) -#+END_SRC - -* org - -** TODO org template for creating "article" and similar stuff - -[[http://orgmode.org/][org mode]] is an incredible tool that keeps me organized: TODOs, notes, agenda, -etc. Moreover, it's built in GNU Emacs: - -#+BEGIN_SRC elisp -(require 'org) -#+END_SRC - -** General settings - -First of all, let me define some helper functions. - -#+BEGIN_SRC elisp - (defun mssola-org-skip-if-priority (priority &optional subtree) - "Skip an agenda item if it has a priority of PRIORITY. - PRIORITY may be one of the characters ?A, ?B, or ?C. - Skips the current entry unless SUBTREE is not nil. This function has been - copied from @aaronbieber." - - (let ((end (if subtree (save-excursion (org-end-of-subtree t)) - (save-excursion (progn (outline-next-heading) (1- (point)))))) - (pri-value (* 1000 (- org-lowest-priority priority))) - (pri-current (org-get-priority (thing-at-point 'line t)))) - (if (= pri-value pri-current) - end - nil))) - - (defun mssola-org-skip-if-not-closed-in-day (time &optional subtree) - "Skip entries that were not closed in the given TIME. - Skip the current entry unless SUBTREE is not nil, in which case skip - the entire subtree. Idea taken from @aaronbieber" - - (let ((end (if subtree (save-excursion (org-end-of-subtree t)) - (save-excursion (progn (outline-next-heading) (1- (point)))))) - (day-prefix (format-time-string "%Y-%m-%d" time))) - - (if (save-excursion - (and (re-search-forward org-closed-time-regexp end t) - (string= (substring (match-string-no-properties 1) 0 10) day-prefix))) - nil - end))) -#+END_SRC - -Some general UI settings for org mode. - -#+BEGIN_SRC elisp -(setq org-src-tab-acts-natively t - org-confirm-babel-evaluate nil - org-edit-src-content-indentation 0) - -(setq org-todo-keywords - '((sequence "TODO(t)" "|" "DONE(d!)") - (sequence "IDEA(i)" "WORKING(w)" "|" "USED(u@/!)" "DISCARDED(x@/!)"))) - -(setq org-todo-keyword-faces - '(("TODO" . org-todo) - ("IDEA" . font-lock-constant-face) - ("WORKING" . font-lock-constant-face) - ("DONE" . org-done) - ("USED" . org-done) - ("DISCARDED" . org-done))) -#+END_SRC - -Logging settings. - -#+BEGIN_SRC elisp - (setq org-log-done t) - (setq org-log-redeadline (quote time)) - (setq org-log-reschedule (quote time)) -#+END_SRC - -Where org files reside. - -#+BEGIN_SRC elisp - (setq org-agenda-files '("~/org/")) -#+END_SRC - -** Publishing - -In order to publish files into HTML, I would like to have =htmlize= installed. -This package allows org to export to HTML in a better way (e.g. allowing code -blocks to be converted into HTML as well, so we can properly colorize it). - -#+BEGIN_SRC elisp -(use-package htmlize - :ensure t) -#+END_SRC - -And now let's set all the related settings. - -#+BEGIN_SRC elisp -(setq org-src-fontify-natively t - org-html-include-timestamps nil - org-html-toplevel-hlevel 2 - org-html-htmlize-output-type 'css - org-export-with-section-numbers nil - org-export-with-sub-superscripts nil - org-export-htmlize-output-type 'css) -#+END_SRC - -Make sure to use the proper template when exporting to ODT: - -#+BEGIN_SRC elisp -(setq org-odt-styles-file "~/Documents/Templates/mssola.ott") -#+END_SRC - -Sometimes it's useful to export to LaTeX. That is, when you are simply writing a -quick document that will end up being converted into LaTeX and finally into PDF: - -#+BEGIN_SRC elisp -(require 'ox-latex) - -(unless (boundp 'org-latex-classes) - (setq org-latex-classes nil)) - -(add-to-list 'org-latex-classes - '("article" - "\\documentclass{article}" - ("\\section{%s}" . "\\section*{%s}") - ("\\subsection{%s}" . "\\subsection*{%s}") - ("\\subsubsection{%s}" . "\\subsubsection*{%s}") - ("\\paragraph{%s}" . "\\paragraph*{%s}") - ("\\subparagraph{%s}" . "\\subparagraph*{%s}"))) -#+END_SRC - -You can also export org documents to man pages. In order to do so, you have to -perform this first: - -#+BEGIN_SRC elisp -(require 'ox-man) -#+END_SRC - -Setup a function to toggle =org-publish-current-file= on save: - -#+BEGIN_SRC elisp -(defun toggle-org-publish-current-file-on-save () - (interactive) - (if (memq 'org-publish-current-file after-save-hook) - (progn - (remove-hook 'after-save-hook 'org-publish-current-file t) - (message "Disabled org-publish-current-file for current buffer...")) - (add-hook 'after-save-hook 'org-publish-current-file nil t) - (message "Enabled org-publish-current-file for current buffer..."))) -#+END_SRC - -Also hide the "Footnotes: " title on footnotes: - -#+BEGIN_SRC elisp -(setq org-html-footnotes-section "<div id=\"footnotes\"> -<!-- Hack: %s --> -<div id=\"text-footnotes\"> -%s -</div> -</div>") -#+END_SRC - -Last but not least, some handy shortcuts: - -#+BEGIN_SRC elisp -(with-eval-after-load "org" - (define-key org-mode-map (kbd "<f1>") 'org-latex-export-to-pdf) - (define-key org-mode-map (kbd "<f2>") 'org-odt-export-to-odt)) -#+END_SRC - -** Agenda - -Custom commands for =org-agenda=. - -#+BEGIN_SRC elisp - (setq org-agenda-custom-commands - '(("p" "Printed agenda" - ; Daily agenda with a 2-weeks deadline warning. Tasks are - ; represented as [ ] items. - ((agenda "" - ((org-agenda-ndays 1) - (org-deadline-warning-days 14) - (org-agenda-todo-keyword-format "[ ]") - (org-agenda-scheduled-leaders '("" "")))) - - ; Display a "High Priority" list of tasks on top. - (tags "PRIORITY=\"A\"" - ((org-agenda-skip-function '(org-agenda-skip-entry-if 'todo 'done)) - (org-agenda-sorting-strategy '(tag-up priority-down)) - (org-agenda-todo-keyword-format "") - (org-agenda-overriding-header "\nHigh priority\n--------------\n"))) - - - ; All tasks except those already listed as high priority or - ; ideas. Scheduled and deadlines are also ignored here. - (alltodo "" - ((org-agenda-skip-function '(or (mssola-org-skip-if-priority ?A) - (org-agenda-skip-entry-if 'todo '("IDEA" "WORKING")) - (org-agenda-skip-if nil '(scheduled deadline)))) - (org-agenda-sorting-strategy '(tag-up priority-down)) - (org-agenda-todo-keyword-format "") - (org-agenda-overriding-header "\nAll tasks\n----------\n"))) - - ; List of ideas. - (todo "IDEA" - ((org-agenda-overriding-header "\nIdeas\n------\n") - (org-agenda-todo-keyword-format "")))) - - ((org-agenda-compact-blocks t) - (org-agenda-remove-tags t))) - - ; List of done items. Useful for standups, review meetings, weekly - ; reports, etc. - ("d" "Done items" - ; First show the items done yesterday. Useful for standups. - ((todo "DONE" - ((org-agenda-overriding-header "Done yesterday\n---------------\n") - (org-agenda-skip-function - '(mssola-org-skip-if-not-closed-in-day - (time-subtract (current-time) (seconds-to-time 86400)))) - (org-agenda-todo-keyword-format ""))) - - ; Then show what I've done today. - (todo "DONE" - ((org-agenda-overriding-header "\nDone today\n-----------\n") - (org-agenda-skip-function - '(mssola-org-skip-if-not-closed-in-day - (current-time))) - (org-agenda-todo-keyword-format ""))) - - ; Finally show what I've been doing in the past 15 days. Useful for - ; review meetings and weekly reports. - (todo "DONE" - ((org-agenda-start-day "-15d") - (org-agenda-span 15) - (org-agenda-start-on-weekday nil) - (org-agenda-todo-keyword-format "") - (org-agenda-scheduled-leaders '("" "")) - (org-agenda-overriding-header "\nDone during the past 15 days\n-----------------------------\n")))) - - ((org-agenda-compact-blocks t) - (org-agenda-remove-tags t))))) -#+END_SRC - -The prefix for the different kinds of types being used. - -#+BEGIN_SRC elisp - (setq org-agenda-prefix-format '((agenda . "%t%s") - (tags . "%c:%s") - (todo . "%c:%t%s"))) -#+END_SRC - -Set up a key binding for org-agenda. - -#+BEGIN_SRC elisp -(global-set-key (kbd "C-c a") 'org-agenda) -#+END_SRC - -** Capture - -Set the default notes file and the key binding. - -#+BEGIN_SRC elisp -(setq org-default-notes-file (concat org-directory "/notes.org")) -(define-key global-map "\C-cc" 'org-capture) -#+END_SRC - -And finally set =org-capture-templates=. - -#+BEGIN_SRC elisp -(setq org-capture-templates - `(("t" "todo" entry (file "") "* TODO %?\n%U\n") - ("i" "idea" entry (file "") "* %? :IDEA:\n%U\n%a\n"))) -#+END_SRC - -** Publish project - -I write blog posts with org-mode. Here's the trick: - -#+BEGIN_SRC elisp -(setq org-publish-project-alist - '(("org-mssola" - ;; Path to your org files. - :base-directory "~/src/mssola/jo/org/" - :base-extension "org" - - ;; Path to your Jekyll project. - :publishing-directory "~/src/mssola/jo/_i18n" - :recursive t - :publishing-function org-html-publish-to-html - :headline-levels 4 - :html-extension "html" - :body-only t ;; Only export section between <body> </body> - ) - - ("mssola" :components ("org-mssola")))) -#+END_SRC - -** Other - -Insert a <kbd></kbd> value in org mode. See this [[http://emacs.stackexchange.com/questions/2206/i-want-to-have-the-kbd-tags-for-my-blog-written-in-org-mode][StackExchange answer]]. - -#+BEGIN_SRC elisp -(defun endless/insert-key (key) - "Ask for a key then insert its description. -Will work on both org-mode and any mode that accepts plain html." - (interactive "kType key sequence: ") - (let* ((is-org-mode (derived-mode-p 'org-mode)) - (tag (if is-org-mode - "@@html:<kbd>%s</kbd>@@" - "<kbd>%s</kbd>"))) - (if (null (equal key "\r")) - (insert - (format tag (help-key-description key nil))) - (insert (format tag "")) - (forward-char (if is-org-mode -8 -6))))) - -(define-key org-mode-map "\C-ck" #'endless/insert-key) -#+END_SRC - -Define profiles. - -#+BEGIN_SRC elisp -;; Variables - -(defvar mssola-org-profiles - '(("minimal" . mssola-org-minimal) - ("monthly" . mssola-org-monthly)) - "Defined profiles for organization matters.") - -(defvar mssola-org-default-profile "minimal" - "The default profile for mssola-org.") - -;; Profiles - -(defun mssola-org-minimal () - "Load a minimal set of files." - (find-file (concat (file-name-as-directory org-directory) "setmana.org"))) - -(defun mssola-org-monthly () - "Load a set of files useful for monthly planning." - (find-file (concat (file-name-as-directory org-directory) "setmana.org")) - (split-window-right) - (windmove-right) - (find-file (concat (file-name-as-directory org-directory) "any.org")) - (windmove-left)) - -;; Functions - -(defun mssola-org (&optional profile) - "Setup a frame for organizational matters. -PROFILE is the profile to be picked when given. If it's not given, then the -user will be prompted to provide it." - (interactive) - - (delete-other-windows) - (unless profile - (setq profile (completing-read "Give me the profile: " - (mapcar 'car mssola-org-profiles) nil t))) - (funcall (cdr (assoc profile mssola-org-profiles)))) - -(defun mssola-org-default () - "Setup a frame for organizational matters given a default profile has been set." - (interactive) - - (mssola-org mssola-org-default-profile)) - -(define-key global-map (kbd "C-c C-o") #'mssola-org-default) -(define-key global-map (kbd "C-c M-o") #'mssola-org) -#+END_SRC - -** TODO shortcut for making an org link, and transforming a link into a proper org link -** TODO make it work with evil -** TODO Proper keybindings for quick access. - -** TODO shortcuts for stuff like: create something urgent for today - -* IRC - -I'm using [[https://www.gnu.org/software/emacs/manual/html_mono/erc.html][ERC]] for IRC. - -#+BEGIN_SRC elisp -(use-package erc - :config -#+END_SRC - -First of all, let's add some basic modules. - -#+BEGIN_SRC elisp - (dolist (mod '(autojoin track truncate)) - (add-to-list 'erc-modules mod)) -#+END_SRC - -Setting up basic stuff. - -#+BEGIN_SRC elisp - (setq erc-hide-list '("PART") - erc-prompt (lambda () (concat (buffer-name) ">")) - erc-track-exclude-types '("JOIN" "NICK" "PART" "QUIT" "MODE") - erc-server-coding-system '(utf-8 . utf-8) - erc-kill-buffer-on-part t - erc-kill-queries-on-quit t - erc-kill-server-buffer-on-quit t - erc-fill-column 100 - erc-fill-prefix "" - erc-timestamp-format "[%H:%M] " - erc-insert-timestamp-function 'erc-insert-timestamp-left - erc-insert-away-timestamp-function 'erc-insert-timestamp-left - erc-hide-timestamps nil - erc-whowas-on-nosuchnick t - erc-public-away-p nil - erc-echo-notice-always-hook '(erc-echo-notice-in-minibuffer) - erc-auto-set-away nil - erc-autoaway-message "%i seconds out..." - erc-away-nickname "msabate" - erc-enable-logging t - erc-query-on-unjoined-chan-privmsg t) -#+END_SRC - -Let's log messages whenever I receive/send them. The other option is to only do -that on =/quit= or =/part=, but it's better to be safe than sorry. - -#+BEGIN_SRC elisp - (require 'erc-log) - (erc-log-enable) - - (setq erc-log-channels-directory "~/.emacs.d/erc" - erc-save-buffer-on-part nil - erc-save-queries-on-quit nil - erc-log-write-after-send t - erc-log-write-after-insert t) -#+END_SRC - -Servers and channels to auto-join. - -#+BEGIN_SRC elisp - (setq erc-autojoin-channels-alist - '(("irc.freenode.net" "#gnu" "#emacs") - ("irc.nue.suse.com" "#suse" "#docker"))) -#+END_SRC - -Use the =erc-hl-nicks= package, so highlight support for nicknames is better. - -#+BEGIN_SRC elisp -(use-package erc-hl-nicks - :ensure t - :init - (with-eval-after-load 'erc - (add-to-list 'erc-modules 'hl-nicks))) -#+END_SRC - -I want to have a desktop notification whenever someone mentions my name. For -this, I'm using the =erc-notifications= package which is built in ERC since -GNU Emacs 24.3. - -#+BEGIN_SRC elisp -(with-eval-after-load 'erc - (setq erc-notifications-icon - (concat - "/usr/share/emacs/" - (format "%s.%s" emacs-major-version emacs-minor-version) - "/etc/images/icons/hicolor/24x24/apps/emacs.png")) - (add-to-list 'erc-modules 'notifications)) -#+END_SRC - -At this point, we can safely update all the loaded ERC modules. - -#+BEGIN_SRC elisp - (add-hook 'erc-connect-pre-hook - (lambda (x) (erc-update-modules))) -#+END_SRC - -Start some modules which won't do it by default. Moreover, according to the [[https://www.emacswiki.org/emacs/ErcFilling][wiki]] -=auto-fill-mode= should be disabled if I'm using =erc-fill-mode=. - -#+BEGIN_SRC elisp - (add-hook 'erc-mode-hook - '(lambda () - (erc-track-mode t) - (auto-fill-mode -1) - (erc-log-mode 1) - (erc-autojoin-mode 1))) -#+END_SRC - -And now define a function to connect to both IRC servers. - -#+BEGIN_SRC elisp - (defun mssola-erc () - "Join pre-specified servers and channels." - - (interactive) - - (erc :server "irc.freenode.net" :port 6667 :nick "mssola") - (erc-tls :server "irc.nue.suse.com" :port 6697 :nick "mssola")) - - (global-set-key (kbd "C-c i") 'mssola-erc)) -#+END_SRC - -* Languages - -** General - -First of all, define a function that identifies some warning keywords -(e.g. TODO). This function can then be applied to the proper mode. - -#+BEGIN_SRC elisp - (defun warnings-mode-hook () - "Hook for enabling the warning face on strings with a warning prefix." - - (font-lock-add-keywords nil - '(("\\(XXX\\|FIXME\\|TODO\\|HACK\\|NOTE\\|BUG\\)" - 1 font-lock-warning-face prepend)))) -#+END_SRC - -Text mode is not a programming language, but it's used quite often in this -context too. In this case, I want spell check and =wc-mode= activated. - -#+BEGIN_SRC elisp - (add-hook 'text-mode-hook - (lambda () - (flyspell-mode 1) - (wc-mode 1))) -#+END_SRC - -** Shell - -#+BEGIN_SRC elisp -(use-package bats-mode - :ensure t) -#+END_SRC - -** Lisp - -Emacs lisp needs =rainbow-delimiters=, so the amount of parenthesis is less -confusing. Moreover, I'm also enabling =eldoc-mode= and the aforementioned -=warnings-mode-hook=. - -#+BEGIN_SRC elisp - (add-hook 'emacs-lisp-mode-hook - (lambda () - (eldoc-mode 1) - (warnings-mode-hook) - (rainbow-delimiters-mode 1) - ; https://github.com/jhenahan/emacs.d/blob/master/emacs-init.org#emacs-lisp - (setq mode-name "ξ"))) -#+END_SRC - -Configure =ielm= with the proper ELisp utilities: - -#+BEGIN_SRC elisp -(use-package ielm - :config - (add-hook 'ielm-mode-hook #'eldoc-mode) - (add-hook 'ielm-mode-hook #'rainbow-delimiters-mode) - (global-set-key (kbd "C-x i e") 'ielm) - (global-set-key (kbd "C-x i l") 'ielm)) -#+END_SRC - -** C and C++ - -C and C++ only require the =warnings-mode-hook= function, spell checking for the -comments and the usage of tabs instead of spaces. - -#+BEGIN_SRC elisp -; Note that C-common includes languages with a similar syntax of C. -(add-hook 'c-mode-common-hook 'warnings-mode-hook) -(add-hook 'c-mode-common-hook (lambda() (flyspell-prog-mode))) - -;; C -(add-hook 'c-mode-hook - (lambda () (setq indent-tabs-mode t))) - -;; C++ -(add-hook 'c++-mode-hook - (lambda () (setq indent-tabs-mode t))) -#+END_SRC - -CMake for y'all. - -#+BEGIN_SRC elisp - (use-package cmake-mode - :ensure t - :config - - (setq auto-mode-alist - (append - '(("CMakeLists\\.txt\\'" . cmake-mode)) - '(("\\.cmake\\'" . cmake-mode)) - auto-mode-alist)) - - (use-package cmake-font-lock - :ensure t - :config - - (add-hook 'cmake-mode-hook 'cmake-font-lock-activate) - (add-hook 'yaml-mode-hook 'warnings-mode-hook))) -#+END_SRC - -** Ruby - -Include warning keywords in Ruby and do not automatically include the encoding -magic comment: - -#+BEGIN_SRC elisp -(use-package ruby-mode - :config - (setq ruby-insert-encoding-magic-comment nil) - (add-hook 'ruby-mode-hook #'subword-mode) - (add-hook 'ruby-mode-hook 'warnings-mode-hook)) -#+END_SRC - -And give me an IRB instance: - -#+BEGIN_SRC elisp -(use-package inf-ruby - :ensure t - :config - (add-hook 'ruby-mode-hook #'inf-ruby-minor-mode) - (global-set-key (kbd "C-x i r") 'inf-ruby)) -#+END_SRC - -** Go - -And now my Go configuration. This includes stuff like the usage of =goimports=, -=gofmt= on save, among many other useful things. - -#+BEGIN_SRC elisp - (defun mssola-go-mode () - "My configuration for Go mode." - - ; Use goimports instead of go-fmt - (setq gofmt-command "goimports") - - ; Call Gofmt before saving - (add-hook 'before-save-hook 'gofmt-before-save) - - ; Integration flycheck with Go - (add-to-list 'load-path - (concat (getenv "GOPATH") "/src/github.com/dougm/goflymake")) - (require 'go-flycheck) - - (setq indent-tabs-mode t) - (flyspell-prog-mode) - - ; eldoc support - (use-package go-eldoc - :ensure t - :config - (require 'go-eldoc))) - - ;; Go - (use-package go-mode - :ensure t - :pin melpa-stable - :config - - (add-hook 'go-mode-hook 'warnings-mode-hook) - (add-hook 'go-mode-hook 'go-eldoc-setup) - (add-hook 'go-mode-hook 'mssola-go-mode)) -#+END_SRC - -** Python - -Install =elpy= as the environment for Python support: - -#+BEGIN_SRC elisp -(use-package elpy - :ensure t - :config - (advice-add 'python-mode :before 'elpy-enable) - (when (require 'flycheck nil t) - (setq elpy-modules (delq 'elpy-module-flymake elpy-modules)) - (add-hook 'elpy-mode-hook 'flycheck-mode))) -#+END_SRC - -Automatically use =autopep8= on save: - -#+BEGIN_SRC elisp -(use-package py-autopep8 - :ensure t - :config - (add-hook 'elpy-mode-hook 'py-autopep8-enable-on-save)) -#+END_SRC - -** Rust - -Install =rust-mode= and add some hooks to make it friendlier. - -#+BEGIN_SRC elisp -(use-package rust-mode - :ensure t - :config - - (add-hook 'before-save-hook - #'(lambda () - (when (eq major-mode 'rust-mode) - (rust-format-buffer)))) - - (use-package flycheck-rust - :ensure t - :config - - (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))) -#+END_SRC - -** Tabs vs spaces - -Tabs or spaces? [[https://www.emacswiki.org/emacs/TabsSpacesBoth][Both]]. The =smart-tabs-mode= has the philosophy of: tabs for -indentation, spaces for alignment. This is only applied in languages where I'm -usings tabs for indentation (C, C++ and Go). - -#+BEGIN_SRC elisp - (use-package smart-tabs-mode - :ensure t - :config - (smart-tabs-add-language-support golang go-mode-hook - ((c-indent-line . c-basic-offset) - (c-indent-region . c-basic-offset))) - (smart-tabs-insinuate 'c 'c++ 'golang)) -#+END_SRC - -** Inferior markup languages. - -#+BEGIN_SRC elisp - ;; Markdown mode with preview mode in the browser. - (use-package markdown-mode - :ensure t - :config - - ; This is the one that I got from openSUSE. - (custom-set-variables - '(markdown-command "/usr/bin/markdown-calibre")) - - ; Preview mode does its things through websockets, so it's a requirement. - ; After that, we can safely require it. - (use-package websocket - :ensure t - :config - (use-package markdown-preview-mode - :ensure t))) - - ; YAML - (use-package yaml-mode - :ensure t - :config - - (add-hook 'yaml-mode-hook 'warnings-mode-hook)) -#+END_SRC - -** Web-related stuff. - -Slim and SCSS. - -#+BEGIN_SRC elisp -(use-package slim-mode - :ensure t) - -(use-package scss-mode - :ensure t - :config - - (setq scss-compile-at-save nil) - (add-hook 'yaml-mode-hook 'warnings-mode-hook)) - -(use-package coffee-mode - :ensure t) -#+END_SRC - -Languages specific for backend code like PHP, and =web-mode=, which provides a -bundle of features which are interesting for web-related stuff. - -#+BEGIN_SRC elisp -(use-package php-mode - :ensure t) - -(use-package web-mode - :ensure t - :config - - (add-to-list 'auto-mode-alist '("\\.erb\\'" . web-mode)) - (add-to-list 'auto-mode-alist '("\\.jinja\\'" . web-mode)) - (add-to-list 'auto-mode-alist '("\\.html?\\'" . web-mode)) - - (add-hook 'web-mode-hook - (lambda () - (setq web-mode-markup-indent-offset 2) - (setq web-mode-css-indent-offset 2) - (setq web-mode-code-indent-offset 2))) - - (add-hook 'js-mode-hook - (lambda () - (setq js-indent-level 2) - (rainbow-delimiters-mode 1))) - - (use-package vue-mode - :ensure t - :config - (setq mmm-submode-decoration-level 0)) - - ; React: treat it as a derived mode. Idea taken from spacemacs. - (define-derived-mode react-mode web-mode "react") - (add-to-list 'auto-mode-alist '("\\.jsx\\'" . react-mode)) - (add-to-list 'auto-mode-alist '("\\.react.js\\'" . react-mode)) - - (add-hook 'react-mode-hook - (lambda () - (yas-activate-extra-mode 'js-mode) - (web-mode-set-content-type "jsx") - (setq-local web-mode-enable-auto-quoting nil) - (rainbow-delimiters 1)))) -#+END_SRC - -The =json-reformat= package provides functions for reformatting JSON strings. It -happens from time to time that I have to read JSON output from responses, and it -can be frustrating without proper formatting. - -#+BEGIN_SRC elisp -(use-package json-reformat - :ensure t) -#+END_SRC - -** Devops - -Highlighting for Dockerfiles. - -#+BEGIN_SRC elisp - (use-package dockerfile-mode - :ensure t - :config - - (add-to-list 'auto-mode-alist '("Dockerfile" . dockerfile-mode))) -#+END_SRC - -Stuff from Hashicorp like terraform and HCL. - -#+BEGIN_SRC elisp -(use-package terraform-mode - :ensure t - :config - - (terraform-format-on-save-mode)) - -(use-package hcl-mode - :ensure t) -#+END_SRC - -#+BEGIN_SRC elisp -(use-package salt-mode - :ensure t) -#+END_SRC - -** Others - -The [[https;//github.com/mssola/soria][soria]] theme has the =soria-purple-identifiers= hook. This hook instructs -the theme to use purple for identifiers instead of the default color. This is a -remnant from my Vim times, and I only apply it to some languages (random -criteria really). - -#+BEGIN_SRC elisp - (dolist (lang-hook '(ruby-mode-hook - php-mode-hook - perl-mode-hook - emacs-lisp-mode-hook)) - (add-hook lang-hook 'soria-purple-identifiers)) -#+END_SRC - -** LaTeX - -Let's use [[https://www.gnu.org/software/auctex/][Auctex]] for LaTeX files. - -#+BEGIN_SRC elisp -(use-package tex - :ensure auctex - :config - (setq TeX-auto-save t) - (setq TeX-parse-self t) - (setq-default TeX-master nil)) -#+END_SRC - -* WoMan - -=WoMan= is a package that is included inside of GNU Emacs by default, and that -takes care of visualizing man pages. Let's properly setup Evil mode for this: - -#+BEGIN_SRC elisp -(with-eval-after-load "evil" - (evil-set-initial-state 'woman-mode 'normal) - (evil-define-key 'normal woman-mode-map - "J" 'Man-next-section - "K" 'Man-previous-section - "\C-h" 'evil-window-left - "\C-l" 'evil-window-right - "\C-j" 'evil-window-down - "\C-k" 'evil-window-up - "\C-u" 'evil-scroll-up)) -#+END_SRC - -Finally, I want man pages to fill all the frame: - -#+BEGIN_SRC elisp -(setq woman-fill-frame t) -#+END_SRC - -Start =WoMan= as a subcommand of the help command: - -#+BEGIN_SRC elisp -(define-key 'help-command (kbd "M-m") #'woman) -#+END_SRC - -* Misc - -Install a set of useful functions from [[https://github.com/bbatsov][@bbatsov]]. The bindings are following -Emacs style instead of being more Vim-like on purpose (I don't want to put -too many things into my leader and these shortcuts look sensible to me). - -#+BEGIN_SRC elisp -(use-package crux - :ensure t - :config - - (global-set-key (kbd "C-c d") 'crux-delete-file-and-buffer) - (global-set-key (kbd "C-c r") 'crux-rename-file-and-buffer) - (global-set-key (kbd "C-c n") 'crux-cleanup-buffer-or-region) - (global-set-key (kbd "C-<backspace>") 'crux-kill-line-backwards) - (global-set-key [remap move-beginning-of-line] 'crux-move-beginning-of-line) - (global-set-key (kbd "C-c o") 'crux-open-with)) -#+END_SRC - -** Emojis - -Display emojis in buffer! - -#+BEGIN_SRC elisp -(use-package emojify - :ensure t - :config - - (add-hook 'after-init-hook #'global-emojify-mode) - (setq emojify-composed-text-p nil) - (setq emojify-emoji-styles '(unicode github))) -#+END_SRC - -* Credits - -I've built this file by simply scavenging from other people's emacs.d/dotfiles -repositories. I have taken lots of pieces from here and there, but most notably: - -- [[https://github.com/ereslibre/dotfiles][@ereslibre]] -- [[https://github.com/dmacvicar/dotfiles][@dmacvicar]] -- [[https://github.com/bbatsov/emacs.d][@bbatsov]] -- [[https://github.com/aaronbieber/dotfiles][@aaronbieber]] -- [[https://github.com/purcell/emacs.d][@purcell]] -- [[https://github.com/sachac/.emacs.d][@sachac]] ([[http://pages.sachachua.com/.emacs.d/Sacha.html][HTML version]]) -- [[https://github.com/larstvei/dot-emacs][@larstvei]] - -* License - -#+BEGIN_SRC text :tangle no - Copyright (C) 2014-2019 Miquel Sabaté Solà <mikisabate@gmail.com> - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. -#+END_SRC diff --git a/emacs/lisp/README.md b/emacs/lisp/README.md deleted file mode 100644 index 64e6da0..0000000 --- a/emacs/lisp/README.md +++ /dev/null @@ -1,18 +0,0 @@ -## GNU Emacs Modules written by Miquel Sabaté Solà - -This directory contains Lisp modules I've written. - -### g.el - -A port of my [g](https://github.com/mssola/g) script for GNU Emacs. This is not -helpful all the time, but it does help whenever Projectile does not cover me. -This module implements the following interactive functions: - -- `g`: allows users to jump through a shortcut. After performing the jump, the - user will be presented with the `dired` mode. -- `g-add`: add a new shortcut that points to a valid path. -- `g-remove`: remove an existing shortcut. -- `g-list`: list all the available shortcuts. - -This module is completely compatible with the `g.sh` script, which means that -they both can be run side by side without any problems. diff --git a/emacs/lisp/g.el b/emacs/lisp/g.el deleted file mode 100644 index 3a4660a..0000000 --- a/emacs/lisp/g.el +++ /dev/null @@ -1,134 +0,0 @@ -;;; g.el --- Adding shortcuts to GNU Emacs - -;; Copyright (C) 2016-2019 Miquel Sabaté Solà <mikisabate@gmail.com> -;; -;; This program is free software: you can redistribute it and/or modify -;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation, either version 3 of the License, or -;; (at your option) any later version. -;; -;; This program is distributed in the hope that it will be useful, -;; but WITHOUT ANY WARRANTY; without even the implied warranty of -;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -;; GNU General Public License for more details. -;; -;; You should have received a copy of the GNU General Public License -;; along with this program. If not, see <http://www.gnu.org/licenses/>. - -;; Author: Miquel Sabaté Solà <mikisabate@gmail.com> -;; Version: 0.1 -;; URL: https://github.com/mssola/dotfiles/emacs/site-lisp/g.el - -;;; Commentary: -;; -;; This is a GNU Emacs port of my g.sh bash script that can be found here: -;; https://github.com/mssola/g. This package can be seen as useless given the -;; fantastic Helm + Projectile combo, but it still comes in handy when you want -;; to edit: -;; - A file which is in a project unknown to Projectile. -;; - A file that does not really belong to a real project. - -;;; Code: - -(defvar g-file "~/.gfile" - "The path to the gfile.") - -;; Utils - -(defun g-read-file (file) - "Read the given FILE and return it as a list of lines." - - (if (file-exists-p file) - (with-temp-buffer - (insert-file-contents file) - (split-string (buffer-string) "\n" t)) - "")) - -(defun g-write (shortcuts) - "Write the given SHORTCUTS into the gfile." - - (let ((output "")) - (maphash (lambda (key value) - (setq output - (concat output (format "%s\n%s\n" key value)))) - shortcuts) - (write-region output nil g-file))) - -(defun g-read () - "Read all the shortcuts as defined by the gfile. -The returned object is a hash table." - - (let ((shortcuts (make-hash-table :test 'equal)) - (list (g-read-file g-file))) - - ; The format of the file is a bit special because it was meant to be easily - ; parseable by Bash. It consists of pairs of lines, where n is the key, and - ; n+1 is the value. - (dotimes (i (/ (length list) 2)) - (let ((n (* i 2))) - (puthash - (nth n list) - (nth (+ n 1) list) - shortcuts))) - shortcuts)) - -;; Interactive functions - -(defun g () - "Go to the given directory with the supplied alias." - - (interactive) - - (if (file-exists-p g-file) - (progn - (let* ((shortcuts (g-read)) - (alias (completing-read - "Give me the name: " shortcuts nil t))) - (find-file (gethash alias shortcuts)))) - (message "Add a shortcut first!"))) - -(defun g-list () - "List all the available shortcuts." - - (interactive) - - (let ((output "")) - (maphash (lambda (key value) - (setq output - (concat output (format "%s => %s\n" key value)))) - (g-read)) - (message output))) - -(defun g-add () - "Add a new shortcut." - - (interactive) - - (let ((shortcuts (g-read)) - (to-create (read-string "Shortcut to create: "))) - (if (gethash to-create shortcuts) - (message "Error: shortcut already exists.") - (let ((path (read-file-name "Path: " nil nil t))) - (if (file-exists-p path) - (progn - (puthash to-create (file-truename path) shortcuts) - (g-write shortcuts)) - (message "Error: given path does not exist.")))))) - -(defun g-remove () - "Remove an existing shortcut." - - (interactive) - - (if (file-exists-p g-file) - (progn - (let* ((shortcuts (g-read)) - (alias (completing-read - "Give me the shortcut to remove: " shortcuts nil t))) - (remhash alias shortcuts) - (g-write shortcuts))) - (message "There are no shortcuts!"))) - -(provide 'g) - -;;; g.el ends here diff --git a/emacs/org.css b/emacs/org.css deleted file mode 100644 index 98110e5..0000000 --- a/emacs/org.css +++ /dev/null @@ -1,66 +0,0 @@ -/* - * Copyright (C) 2017-2019 Miquel Sabaté Solà <mikisabate@gmail.com> - * - * This program is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see <http://www.gnu.org/licenses/>. - */ - -/* - * This file tries to mimick what we have in the soria theme. That being said, - * the HTML exporter of org-mode is not perfect, so there's tons of stuff that - * are not highlighted in the same way as in GNU Emacs. Anyways, the colors are - * as follows: - * - * soria-purple "#dfafdf" - * soria-darkpurple "#875f87" - * soria-white "#d0d0d0" - * soria-darkgray "#1c1c1c" - * soria-brightgreen "#81c13b" - * soria-green "#b9dc92" - * soria-darkgreen "#2f5361" - * soria-gray "#808080" - * soria-linegray "#3a3a3a" - * soria-statusgray "#4e4e4e" - * soria-statusncgray "#b2b2b2" - * soria-black "#000000" - * soria-whitest "#eeeeee" - * soria-yellow "#ffffaf" - * soria-orange "#d7af87" - * soria-redpastel "#d78787" - * soria-blue "#87afd7" - */ - -.org-src-container pre { - color: #d0d0d0; - background-color: #1c1c1c; - border-left: 0px; -} - -.org-warning { color: #b9dc92; } -.org-keyword { color: #87afd7; } -.org-function-name { color: #87afd7; } -.org-builtin { color: #87afd7; } -.org-constant { color: #ffffaf; } -.org-string { color: #ffffaf; } -.org-doc { color: #808080; } -.org-comment { color: #808080; } -.org-comment-delimiter { color: #808080; } -.org-rainbow-delimiters-depth-1 { color: #81c13b; } -.org-rainbow-delimiters-depth-2 { color: #d78787; } -.org-rainbow-delimiters-depth-3 { color: #d7af87; } -.org-rainbow-delimiters-depth-4 { color: #87afd7; } -.org-rainbow-delimiters-depth-5 { color: #d0d0d0; } -.org-rainbow-delimiters-depth-6 { color: #d0d0d0; } -.org-rainbow-delimiters-depth-7 { color: #d0d0d0; } -.org-rainbow-delimiters-depth-8 { color: #d0d0d0; } -.org-rainbow-delimiters-depth-9 { color: #d0d0d0; } diff --git a/emacs/pre-push b/emacs/pre-push deleted file mode 100755 index dcc8dce..0000000 --- a/emacs/pre-push +++ /dev/null @@ -1,79 +0,0 @@ -#!/bin/sh -# Copyright (C) 2017-2019 Miquel Sabaté Solà <mikisabate@gmail.com> -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program. If not, see <http://www.gnu.org/licenses/>. - -# Most of the code is taken from the default pre-push.sample file. - -# From the documentation, if the foreign ref does not yet exist the -# <remote SHA1> will be 40 0. -z40=0000000000000000000000000000000000000000 - -# The path where the files are to be stored on the server. -__mssola_remote_path=/home/mssola/static - -# Safely join paths. -__mssola_join_path() { - local IFS="/"; echo "$*"; -} - -# This function does the actual syncing. It takes one argument, which is the -# file to be synced. Note that this function assumes that the given file is -# under the "emacs" directory. -__mssola_sync_cheato() { - path=$(realpath .) - - src=$(__mssola_join_path $path "emacs" $1) - dst=$(__mssola_join_path "cheato.mssola.com:$__mssola_remote_path" $1) - - echo "Syncing $(__mssola_join_path emacs $1)" - rsync $src $dst -} - -# Copy the files that I want to my server. -__mssola_sync() { - __mssola_sync_cheato "init.html" - __mssola_sync_cheato "org.css" -} - -# This block iterates through all the given info provided by git. If there is -# a change on a GNU Emacs file, then it needs to by synced with my server. -while read local_ref local_sha remote_ref remote_sha -do - if [ "$local_sha" = $z40 ] - then - # Handle delete - : - else - if [ "$remote_sha" = $z40 ] - then - # New branch, examine all commits - range="$local_sha" - else - # Update to existing branch, examine new commits - range="$remote_sha..$local_sha" - fi - - # Commits afecting GNU Emacs are prefixed with "emacs: ". It's a - # convention that I always follow. - commit=`git rev-list -n 1 --grep '^emacs:' "$range"` - if [ -n "$commit" ] - then - #__mssola_sync - exit 0 - fi - fi -done - -exit 0 diff --git a/emacs/snippets/org-mode/header b/emacs/snippets/org-mode/header deleted file mode 100644 index a3f7fca..0000000 --- a/emacs/snippets/org-mode/header +++ /dev/null @@ -1,8 +0,0 @@ -# -*- mode: snippet -*- -#name : header -# -- -#+TITLE: ${1:<title>} -#+AUTHOR: `(user-full-name)` -#+EMAIL: `user-mail-address` - -* $0 \ No newline at end of file diff --git a/emacs/test-startup.sh b/emacs/test-startup.sh deleted file mode 100755 index d8f3547..0000000 --- a/emacs/test-startup.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -ex -# Kindly taken from: https://github.com/purcell/emacs.d - -if [ -n "$TRAVIS" ]; then - # We still need to have an .emacs.d directory, so emacs-async (dependency of - # some other package) is happy. - export HOME=$PWD/.. - ln -s emacs ../.emacs.d -fi - -echo "Attempting startup..." - -${EMACS:=emacs} -nw --batch \ - --eval '(let ((debug-on-error t) - (url-show-status nil) - (user-emacs-directory default-directory) - (package-user-dir (expand-file-name (concat "elpa-" emacs-version))) - (custom-theme-directory default-directory) - (user-init-file (expand-file-name "init.el"))) - (load-file user-init-file) - (run-hooks (quote after-init-hook)))' -echo "Startup successful" diff --git a/fonts/ClickerScript-Regular.ttf b/fonts/ClickerScript-Regular.ttf deleted file mode 100644 index dd1be83..0000000 Binary files a/fonts/ClickerScript-Regular.ttf and /dev/null differ diff --git a/fonts/DroidSansMono-Powerline.ttf b/fonts/DroidSansMono-Powerline.ttf deleted file mode 100644 index fafb790..0000000 Binary files a/fonts/DroidSansMono-Powerline.ttf and /dev/null differ diff --git a/fonts/DroidSansMonoDotted-Powerline.ttf b/fonts/DroidSansMonoDotted-Powerline.ttf deleted file mode 100644 index 3f941e9..0000000 Binary files a/fonts/DroidSansMonoDotted-Powerline.ttf and /dev/null differ diff --git a/fonts/DroidSansMonoSlashed-Powerline.ttf b/fonts/DroidSansMonoSlashed-Powerline.ttf deleted file mode 100644 index af42b83..0000000 Binary files a/fonts/DroidSansMonoSlashed-Powerline.ttf and /dev/null differ diff --git a/fonts/Inconsolata-dz-Powerline.otf b/fonts/Inconsolata-dz-Powerline.otf deleted file mode 100644 index 51bdd74..0000000 Binary files a/fonts/Inconsolata-dz-Powerline.otf and /dev/null differ diff --git a/fonts/Inconsolata-dz.otf b/fonts/Inconsolata-dz.otf deleted file mode 100644 index 8ff3104..0000000 Binary files a/fonts/Inconsolata-dz.otf and /dev/null differ diff --git a/fonts/Menlo-Powerline.otf b/fonts/Menlo-Powerline.otf deleted file mode 100644 index 417a3fa..0000000 Binary files a/fonts/Menlo-Powerline.otf and /dev/null differ diff --git a/fonts/fonts.dir b/fonts/fonts.dir deleted file mode 100644 index 573541a..0000000 --- a/fonts/fonts.dir +++ /dev/null @@ -1 +0,0 @@ -0 diff --git a/fonts/mensch-Powerline.otf b/fonts/mensch-Powerline.otf deleted file mode 100644 index 2eb2232..0000000 Binary files a/fonts/mensch-Powerline.otf and /dev/null differ diff --git a/gemrc b/gemrc deleted file mode 100644 index 8198640..0000000 --- a/gemrc +++ /dev/null @@ -1,3 +0,0 @@ -install: --no-document -update: --no-document - diff --git a/gitcompletion.sh b/gitcompletion.sh deleted file mode 100644 index 9f71bcd..0000000 --- a/gitcompletion.sh +++ /dev/null @@ -1,3096 +0,0 @@ -# bash/zsh completion support for core Git. -# -# Copyright (C) 2006,2007 Shawn O. Pearce <spearce@spearce.org> -# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). -# Distributed under the GNU General Public License, version 2.0. -# -# The contained completion routines provide support for completing: -# -# *) local and remote branch names -# *) local and remote tag names -# *) .git/remotes file names -# *) git 'subcommands' -# *) git email aliases for git-send-email -# *) tree paths within 'ref:path/to/file' expressions -# *) file paths within current working directory and index -# *) common --long-options -# -# To use these routines: -# -# 1) Copy this file to somewhere (e.g. ~/.git-completion.bash). -# 2) Add the following line to your .bashrc/.zshrc: -# source ~/.git-completion.bash -# 3) Consider changing your PS1 to also show the current branch, -# see git-prompt.sh for details. -# -# If you use complex aliases of form '!f() { ... }; f', you can use the null -# command ':' as the first command in the function body to declare the desired -# completion style. For example '!f() { : git commit ; ... }; f' will -# tell the completion to use commit completion. This also works with aliases -# of form "!sh -c '...'". For example, "!sh -c ': git commit ; ... '". -# -# Compatible with bash 3.2.57. -# -# You can set the following environment variables to influence the behavior of -# the completion routines: -# -# GIT_COMPLETION_CHECKOUT_NO_GUESS -# -# When set to "1", do not include "DWIM" suggestions in git-checkout -# completion (e.g., completing "foo" when "origin/foo" exists). - -case "$COMP_WORDBREAKS" in -*:*) : great ;; -*) COMP_WORDBREAKS="$COMP_WORDBREAKS:" -esac - -# Discovers the path to the git repository taking any '--git-dir=<path>' and -# '-C <path>' options into account and stores it in the $__git_repo_path -# variable. -__git_find_repo_path () -{ - if [ -n "$__git_repo_path" ]; then - # we already know where it is - return - fi - - if [ -n "${__git_C_args-}" ]; then - __git_repo_path="$(git "${__git_C_args[@]}" \ - ${__git_dir:+--git-dir="$__git_dir"} \ - rev-parse --absolute-git-dir 2>/dev/null)" - elif [ -n "${__git_dir-}" ]; then - test -d "$__git_dir" && - __git_repo_path="$__git_dir" - elif [ -n "${GIT_DIR-}" ]; then - test -d "${GIT_DIR-}" && - __git_repo_path="$GIT_DIR" - elif [ -d .git ]; then - __git_repo_path=.git - else - __git_repo_path="$(git rev-parse --git-dir 2>/dev/null)" - fi -} - -# Deprecated: use __git_find_repo_path() and $__git_repo_path instead -# __gitdir accepts 0 or 1 arguments (i.e., location) -# returns location of .git repo -__gitdir () -{ - if [ -z "${1-}" ]; then - __git_find_repo_path || return 1 - echo "$__git_repo_path" - elif [ -d "$1/.git" ]; then - echo "$1/.git" - else - echo "$1" - fi -} - -# Runs git with all the options given as argument, respecting any -# '--git-dir=<path>' and '-C <path>' options present on the command line -__git () -{ - git ${__git_C_args:+"${__git_C_args[@]}"} \ - ${__git_dir:+--git-dir="$__git_dir"} "$@" 2>/dev/null -} - -# Removes backslash escaping, single quotes and double quotes from a word, -# stores the result in the variable $dequoted_word. -# 1: The word to dequote. -__git_dequote () -{ - local rest="$1" len ch - - dequoted_word="" - - while test -n "$rest"; do - len=${#dequoted_word} - dequoted_word="$dequoted_word${rest%%[\\\'\"]*}" - rest="${rest:$((${#dequoted_word}-$len))}" - - case "${rest:0:1}" in - \\) - ch="${rest:1:1}" - case "$ch" in - $'\n') - ;; - *) - dequoted_word="$dequoted_word$ch" - ;; - esac - rest="${rest:2}" - ;; - \') - rest="${rest:1}" - len=${#dequoted_word} - dequoted_word="$dequoted_word${rest%%\'*}" - rest="${rest:$((${#dequoted_word}-$len+1))}" - ;; - \") - rest="${rest:1}" - while test -n "$rest" ; do - len=${#dequoted_word} - dequoted_word="$dequoted_word${rest%%[\\\"]*}" - rest="${rest:$((${#dequoted_word}-$len))}" - case "${rest:0:1}" in - \\) - ch="${rest:1:1}" - case "$ch" in - \"|\\|\$|\`) - dequoted_word="$dequoted_word$ch" - ;; - $'\n') - ;; - *) - dequoted_word="$dequoted_word\\$ch" - ;; - esac - rest="${rest:2}" - ;; - \") - rest="${rest:1}" - break - ;; - esac - done - ;; - esac - done -} - -# The following function is based on code from: -# -# bash_completion - programmable completion functions for bash 3.2+ -# -# Copyright © 2006-2008, Ian Macdonald <ian@caliban.org> -# © 2009-2010, Bash Completion Maintainers -# <bash-completion-devel@lists.alioth.debian.org> -# -# This program is free software; you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation; either version 2, or (at your option) -# any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, see <http://www.gnu.org/licenses/>. -# -# The latest version of this software can be obtained here: -# -# http://bash-completion.alioth.debian.org/ -# -# RELEASE: 2.x - -# This function can be used to access a tokenized list of words -# on the command line: -# -# __git_reassemble_comp_words_by_ref '=:' -# if test "${words_[cword_-1]}" = -w -# then -# ... -# fi -# -# The argument should be a collection of characters from the list of -# word completion separators (COMP_WORDBREAKS) to treat as ordinary -# characters. -# -# This is roughly equivalent to going back in time and setting -# COMP_WORDBREAKS to exclude those characters. The intent is to -# make option types like --date=<type> and <rev>:<path> easy to -# recognize by treating each shell word as a single token. -# -# It is best not to set COMP_WORDBREAKS directly because the value is -# shared with other completion scripts. By the time the completion -# function gets called, COMP_WORDS has already been populated so local -# changes to COMP_WORDBREAKS have no effect. -# -# Output: words_, cword_, cur_. - -__git_reassemble_comp_words_by_ref() -{ - local exclude i j first - # Which word separators to exclude? - exclude="${1//[^$COMP_WORDBREAKS]}" - cword_=$COMP_CWORD - if [ -z "$exclude" ]; then - words_=("${COMP_WORDS[@]}") - return - fi - # List of word completion separators has shrunk; - # re-assemble words to complete. - for ((i=0, j=0; i < ${#COMP_WORDS[@]}; i++, j++)); do - # Append each nonempty word consisting of just - # word separator characters to the current word. - first=t - while - [ $i -gt 0 ] && - [ -n "${COMP_WORDS[$i]}" ] && - # word consists of excluded word separators - [ "${COMP_WORDS[$i]//[^$exclude]}" = "${COMP_WORDS[$i]}" ] - do - # Attach to the previous token, - # unless the previous token is the command name. - if [ $j -ge 2 ] && [ -n "$first" ]; then - ((j--)) - fi - first= - words_[$j]=${words_[j]}${COMP_WORDS[i]} - if [ $i = $COMP_CWORD ]; then - cword_=$j - fi - if (($i < ${#COMP_WORDS[@]} - 1)); then - ((i++)) - else - # Done. - return - fi - done - words_[$j]=${words_[j]}${COMP_WORDS[i]} - if [ $i = $COMP_CWORD ]; then - cword_=$j - fi - done -} - -if ! type _get_comp_words_by_ref >/dev/null 2>&1; then -_get_comp_words_by_ref () -{ - local exclude cur_ words_ cword_ - if [ "$1" = "-n" ]; then - exclude=$2 - shift 2 - fi - __git_reassemble_comp_words_by_ref "$exclude" - cur_=${words_[cword_]} - while [ $# -gt 0 ]; do - case "$1" in - cur) - cur=$cur_ - ;; - prev) - prev=${words_[$cword_-1]} - ;; - words) - words=("${words_[@]}") - ;; - cword) - cword=$cword_ - ;; - esac - shift - done -} -fi - -# Fills the COMPREPLY array with prefiltered words without any additional -# processing. -# Callers must take care of providing only words that match the current word -# to be completed and adding any prefix and/or suffix (trailing space!), if -# necessary. -# 1: List of newline-separated matching completion words, complete with -# prefix and suffix. -__gitcomp_direct () -{ - local IFS=$'\n' - - COMPREPLY=($1) -} - -__gitcompappend () -{ - local x i=${#COMPREPLY[@]} - for x in $1; do - if [[ "$x" == "$3"* ]]; then - COMPREPLY[i++]="$2$x$4" - fi - done -} - -__gitcompadd () -{ - COMPREPLY=() - __gitcompappend "$@" -} - -# Generates completion reply, appending a space to possible completion words, -# if necessary. -# It accepts 1 to 4 arguments: -# 1: List of possible completion words. -# 2: A prefix to be added to each possible completion word (optional). -# 3: Generate possible completion matches for this word (optional). -# 4: A suffix to be appended to each possible completion word (optional). -__gitcomp () -{ - local cur_="${3-$cur}" - - case "$cur_" in - --*=) - ;; - --no-*) - local c i=0 IFS=$' \t\n' - for c in $1; do - if [[ $c == "--" ]]; then - continue - fi - c="$c${4-}" - if [[ $c == "$cur_"* ]]; then - case $c in - --*=*|*.) ;; - *) c="$c " ;; - esac - COMPREPLY[i++]="${2-}$c" - fi - done - ;; - *) - local c i=0 IFS=$' \t\n' - for c in $1; do - if [[ $c == "--" ]]; then - c="--no-...${4-}" - if [[ $c == "$cur_"* ]]; then - COMPREPLY[i++]="${2-}$c " - fi - break - fi - c="$c${4-}" - if [[ $c == "$cur_"* ]]; then - case $c in - --*=*|*.) ;; - *) c="$c " ;; - esac - COMPREPLY[i++]="${2-}$c" - fi - done - ;; - esac -} - -# Clear the variables caching builtins' options when (re-)sourcing -# the completion script. -if [[ -n ${ZSH_VERSION-} ]]; then - unset $(set |sed -ne 's/^\(__gitcomp_builtin_[a-zA-Z0-9_][a-zA-Z0-9_]*\)=.*/\1/p') 2>/dev/null -else - unset $(compgen -v __gitcomp_builtin_) -fi - -# This function is equivalent to -# -# __gitcomp "$(git xxx --git-completion-helper) ..." -# -# except that the output is cached. Accept 1-3 arguments: -# 1: the git command to execute, this is also the cache key -# 2: extra options to be added on top (e.g. negative forms) -# 3: options to be excluded -__gitcomp_builtin () -{ - # spaces must be replaced with underscore for multi-word - # commands, e.g. "git remote add" becomes remote_add. - local cmd="$1" - local incl="$2" - local excl="$3" - - local var=__gitcomp_builtin_"${cmd/-/_}" - local options - eval "options=\$$var" - - if [ -z "$options" ]; then - # leading and trailing spaces are significant to make - # option removal work correctly. - options=" $incl $(__git ${cmd/_/ } --git-completion-helper) " - for i in $excl; do - options="${options/ $i / }" - done - eval "$var=\"$options\"" - fi - - __gitcomp "$options" -} - -# Variation of __gitcomp_nl () that appends to the existing list of -# completion candidates, COMPREPLY. -__gitcomp_nl_append () -{ - local IFS=$'\n' - __gitcompappend "$1" "${2-}" "${3-$cur}" "${4- }" -} - -# Generates completion reply from newline-separated possible completion words -# by appending a space to all of them. -# It accepts 1 to 4 arguments: -# 1: List of possible completion words, separated by a single newline. -# 2: A prefix to be added to each possible completion word (optional). -# 3: Generate possible completion matches for this word (optional). -# 4: A suffix to be appended to each possible completion word instead of -# the default space (optional). If specified but empty, nothing is -# appended. -__gitcomp_nl () -{ - COMPREPLY=() - __gitcomp_nl_append "$@" -} - -# Fills the COMPREPLY array with prefiltered paths without any additional -# processing. -# Callers must take care of providing only paths that match the current path -# to be completed and adding any prefix path components, if necessary. -# 1: List of newline-separated matching paths, complete with all prefix -# path components. -__gitcomp_file_direct () -{ - local IFS=$'\n' - - COMPREPLY=($1) - - # use a hack to enable file mode in bash < 4 - compopt -o filenames +o nospace 2>/dev/null || - compgen -f /non-existing-dir/ >/dev/null || - true -} - -# Generates completion reply with compgen from newline-separated possible -# completion filenames. -# It accepts 1 to 3 arguments: -# 1: List of possible completion filenames, separated by a single newline. -# 2: A directory prefix to be added to each possible completion filename -# (optional). -# 3: Generate possible completion matches for this word (optional). -__gitcomp_file () -{ - local IFS=$'\n' - - # XXX does not work when the directory prefix contains a tilde, - # since tilde expansion is not applied. - # This means that COMPREPLY will be empty and Bash default - # completion will be used. - __gitcompadd "$1" "${2-}" "${3-$cur}" "" - - # use a hack to enable file mode in bash < 4 - compopt -o filenames +o nospace 2>/dev/null || - compgen -f /non-existing-dir/ >/dev/null || - true -} - -# Execute 'git ls-files', unless the --committable option is specified, in -# which case it runs 'git diff-index' to find out the files that can be -# committed. It return paths relative to the directory specified in the first -# argument, and using the options specified in the second argument. -__git_ls_files_helper () -{ - if [ "$2" == "--committable" ]; then - __git -C "$1" -c core.quotePath=false diff-index \ - --name-only --relative HEAD -- "${3//\\/\\\\}*" - else - # NOTE: $2 is not quoted in order to support multiple options - __git -C "$1" -c core.quotePath=false ls-files \ - --exclude-standard $2 -- "${3//\\/\\\\}*" - fi -} - - -# __git_index_files accepts 1 or 2 arguments: -# 1: Options to pass to ls-files (required). -# 2: A directory path (optional). -# If provided, only files within the specified directory are listed. -# Sub directories are never recursed. Path must have a trailing -# slash. -# 3: List only paths matching this path component (optional). -__git_index_files () -{ - local root="$2" match="$3" - - __git_ls_files_helper "$root" "$1" "$match" | - awk -F / -v pfx="${2//\\/\\\\}" '{ - paths[$1] = 1 - } - END { - for (p in paths) { - if (substr(p, 1, 1) != "\"") { - # No special characters, easy! - print pfx p - continue - } - - # The path is quoted. - p = dequote(p) - if (p == "") - continue - - # Even when a directory name itself does not contain - # any special characters, it will still be quoted if - # any of its (stripped) trailing path components do. - # Because of this we may have seen the same direcory - # both quoted and unquoted. - if (p in paths) - # We have seen the same directory unquoted, - # skip it. - continue - else - print pfx p - } - } - function dequote(p, bs_idx, out, esc, esc_idx, dec) { - # Skip opening double quote. - p = substr(p, 2) - - # Interpret backslash escape sequences. - while ((bs_idx = index(p, "\\")) != 0) { - out = out substr(p, 1, bs_idx - 1) - esc = substr(p, bs_idx + 1, 1) - p = substr(p, bs_idx + 2) - - if ((esc_idx = index("abtvfr\"\\", esc)) != 0) { - # C-style one-character escape sequence. - out = out substr("\a\b\t\v\f\r\"\\", - esc_idx, 1) - } else if (esc == "n") { - # Uh-oh, a newline character. - # We cant reliably put a pathname - # containing a newline into COMPREPLY, - # and the newline would create a mess. - # Skip this path. - return "" - } else { - # Must be a \nnn octal value, then. - dec = esc * 64 + \ - substr(p, 1, 1) * 8 + \ - substr(p, 2, 1) - out = out sprintf("%c", dec) - p = substr(p, 3) - } - } - # Drop closing double quote, if there is one. - # (There isnt any if this is a directory, as it was - # already stripped with the trailing path components.) - if (substr(p, length(p), 1) == "\"") - out = out substr(p, 1, length(p) - 1) - else - out = out p - - return out - }' -} - -# __git_complete_index_file requires 1 argument: -# 1: the options to pass to ls-file -# -# The exception is --committable, which finds the files appropriate commit. -__git_complete_index_file () -{ - local dequoted_word pfx="" cur_ - - __git_dequote "$cur" - - case "$dequoted_word" in - ?*/*) - pfx="${dequoted_word%/*}/" - cur_="${dequoted_word##*/}" - ;; - *) - cur_="$dequoted_word" - esac - - __gitcomp_file_direct "$(__git_index_files "$1" "$pfx" "$cur_")" -} - -# Lists branches from the local repository. -# 1: A prefix to be added to each listed branch (optional). -# 2: List only branches matching this word (optional; list all branches if -# unset or empty). -# 3: A suffix to be appended to each listed branch (optional). -__git_heads () -{ - local pfx="${1-}" cur_="${2-}" sfx="${3-}" - - __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \ - "refs/heads/$cur_*" "refs/heads/$cur_*/**" -} - -# Lists tags from the local repository. -# Accepts the same positional parameters as __git_heads() above. -__git_tags () -{ - local pfx="${1-}" cur_="${2-}" sfx="${3-}" - - __git for-each-ref --format="${pfx//\%/%%}%(refname:strip=2)$sfx" \ - "refs/tags/$cur_*" "refs/tags/$cur_*/**" -} - -# Lists refs from the local (by default) or from a remote repository. -# It accepts 0, 1 or 2 arguments: -# 1: The remote to list refs from (optional; ignored, if set but empty). -# Can be the name of a configured remote, a path, or a URL. -# 2: In addition to local refs, list unique branches from refs/remotes/ for -# 'git checkout's tracking DWIMery (optional; ignored, if set but empty). -# 3: A prefix to be added to each listed ref (optional). -# 4: List only refs matching this word (optional; list all refs if unset or -# empty). -# 5: A suffix to be appended to each listed ref (optional; ignored, if set -# but empty). -# -# Use __git_complete_refs() instead. -__git_refs () -{ - local i hash dir track="${2-}" - local list_refs_from=path remote="${1-}" - local format refs - local pfx="${3-}" cur_="${4-$cur}" sfx="${5-}" - local match="${4-}" - local fer_pfx="${pfx//\%/%%}" # "escape" for-each-ref format specifiers - - __git_find_repo_path - dir="$__git_repo_path" - - if [ -z "$remote" ]; then - if [ -z "$dir" ]; then - return - fi - else - if __git_is_configured_remote "$remote"; then - # configured remote takes precedence over a - # local directory with the same name - list_refs_from=remote - elif [ -d "$remote/.git" ]; then - dir="$remote/.git" - elif [ -d "$remote" ]; then - dir="$remote" - else - list_refs_from=url - fi - fi - - if [ "$list_refs_from" = path ]; then - if [[ "$cur_" == ^* ]]; then - pfx="$pfx^" - fer_pfx="$fer_pfx^" - cur_=${cur_#^} - match=${match#^} - fi - case "$cur_" in - refs|refs/*) - format="refname" - refs=("$match*" "$match*/**") - track="" - ;; - *) - for i in HEAD FETCH_HEAD ORIG_HEAD MERGE_HEAD REBASE_HEAD; do - case "$i" in - $match*) - if [ -e "$dir/$i" ]; then - echo "$pfx$i$sfx" - fi - ;; - esac - done - format="refname:strip=2" - refs=("refs/tags/$match*" "refs/tags/$match*/**" - "refs/heads/$match*" "refs/heads/$match*/**" - "refs/remotes/$match*" "refs/remotes/$match*/**") - ;; - esac - __git_dir="$dir" __git for-each-ref --format="$fer_pfx%($format)$sfx" \ - "${refs[@]}" - if [ -n "$track" ]; then - # employ the heuristic used by git checkout - # Try to find a remote branch that matches the completion word - # but only output if the branch name is unique - __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \ - --sort="refname:strip=3" \ - "refs/remotes/*/$match*" "refs/remotes/*/$match*/**" | \ - uniq -u - fi - return - fi - case "$cur_" in - refs|refs/*) - __git ls-remote "$remote" "$match*" | \ - while read -r hash i; do - case "$i" in - *^{}) ;; - *) echo "$pfx$i$sfx" ;; - esac - done - ;; - *) - if [ "$list_refs_from" = remote ]; then - case "HEAD" in - $match*) echo "${pfx}HEAD$sfx" ;; - esac - __git for-each-ref --format="$fer_pfx%(refname:strip=3)$sfx" \ - "refs/remotes/$remote/$match*" \ - "refs/remotes/$remote/$match*/**" - else - local query_symref - case "HEAD" in - $match*) query_symref="HEAD" ;; - esac - __git ls-remote "$remote" $query_symref \ - "refs/tags/$match*" "refs/heads/$match*" \ - "refs/remotes/$match*" | - while read -r hash i; do - case "$i" in - *^{}) ;; - refs/*) echo "$pfx${i#refs/*/}$sfx" ;; - *) echo "$pfx$i$sfx" ;; # symbolic refs - esac - done - fi - ;; - esac -} - -# Completes refs, short and long, local and remote, symbolic and pseudo. -# -# Usage: __git_complete_refs [<option>]... -# --remote=<remote>: The remote to list refs from, can be the name of a -# configured remote, a path, or a URL. -# --track: List unique remote branches for 'git checkout's tracking DWIMery. -# --pfx=<prefix>: A prefix to be added to each ref. -# --cur=<word>: The current ref to be completed. Defaults to the current -# word to be completed. -# --sfx=<suffix>: A suffix to be appended to each ref instead of the default -# space. -__git_complete_refs () -{ - local remote track pfx cur_="$cur" sfx=" " - - while test $# != 0; do - case "$1" in - --remote=*) remote="${1##--remote=}" ;; - --track) track="yes" ;; - --pfx=*) pfx="${1##--pfx=}" ;; - --cur=*) cur_="${1##--cur=}" ;; - --sfx=*) sfx="${1##--sfx=}" ;; - *) return 1 ;; - esac - shift - done - - __gitcomp_direct "$(__git_refs "$remote" "$track" "$pfx" "$cur_" "$sfx")" -} - -# __git_refs2 requires 1 argument (to pass to __git_refs) -# Deprecated: use __git_complete_fetch_refspecs() instead. -__git_refs2 () -{ - local i - for i in $(__git_refs "$1"); do - echo "$i:$i" - done -} - -# Completes refspecs for fetching from a remote repository. -# 1: The remote repository. -# 2: A prefix to be added to each listed refspec (optional). -# 3: The ref to be completed as a refspec instead of the current word to be -# completed (optional) -# 4: A suffix to be appended to each listed refspec instead of the default -# space (optional). -__git_complete_fetch_refspecs () -{ - local i remote="$1" pfx="${2-}" cur_="${3-$cur}" sfx="${4- }" - - __gitcomp_direct "$( - for i in $(__git_refs "$remote" "" "" "$cur_") ; do - echo "$pfx$i:$i$sfx" - done - )" -} - -# __git_refs_remotes requires 1 argument (to pass to ls-remote) -__git_refs_remotes () -{ - local i hash - __git ls-remote "$1" 'refs/heads/*' | \ - while read -r hash i; do - echo "$i:refs/remotes/$1/${i#refs/heads/}" - done -} - -__git_remotes () -{ - __git_find_repo_path - test -d "$__git_repo_path/remotes" && ls -1 "$__git_repo_path/remotes" - __git remote -} - -# Returns true if $1 matches the name of a configured remote, false otherwise. -__git_is_configured_remote () -{ - local remote - for remote in $(__git_remotes); do - if [ "$remote" = "$1" ]; then - return 0 - fi - done - return 1 -} - -__git_list_merge_strategies () -{ - LANG=C LC_ALL=C git merge -s help 2>&1 | - sed -n -e '/[Aa]vailable strategies are: /,/^$/{ - s/\.$// - s/.*:// - s/^[ ]*// - s/[ ]*$// - p - }' -} - -__git_merge_strategies= -# 'git merge -s help' (and thus detection of the merge strategy -# list) fails, unfortunately, if run outside of any git working -# tree. __git_merge_strategies is set to the empty string in -# that case, and the detection will be repeated the next time it -# is needed. -__git_compute_merge_strategies () -{ - test -n "$__git_merge_strategies" || - __git_merge_strategies=$(__git_list_merge_strategies) -} - -__git_merge_strategy_options="ours theirs subtree subtree= patience - histogram diff-algorithm= ignore-space-change ignore-all-space - ignore-space-at-eol renormalize no-renormalize no-renames - find-renames find-renames= rename-threshold=" - -__git_complete_revlist_file () -{ - local dequoted_word pfx ls ref cur_="$cur" - case "$cur_" in - *..?*:*) - return - ;; - ?*:*) - ref="${cur_%%:*}" - cur_="${cur_#*:}" - - __git_dequote "$cur_" - - case "$dequoted_word" in - ?*/*) - pfx="${dequoted_word%/*}" - cur_="${dequoted_word##*/}" - ls="$ref:$pfx" - pfx="$pfx/" - ;; - *) - cur_="$dequoted_word" - ls="$ref" - ;; - esac - - case "$COMP_WORDBREAKS" in - *:*) : great ;; - *) pfx="$ref:$pfx" ;; - esac - - __gitcomp_file "$(__git ls-tree "$ls" \ - | sed 's/^.* // - s/$//')" \ - "$pfx" "$cur_" - ;; - *...*) - pfx="${cur_%...*}..." - cur_="${cur_#*...}" - __git_complete_refs --pfx="$pfx" --cur="$cur_" - ;; - *..*) - pfx="${cur_%..*}.." - cur_="${cur_#*..}" - __git_complete_refs --pfx="$pfx" --cur="$cur_" - ;; - *) - __git_complete_refs - ;; - esac -} - -__git_complete_file () -{ - __git_complete_revlist_file -} - -__git_complete_revlist () -{ - __git_complete_revlist_file -} - -__git_complete_remote_or_refspec () -{ - local cur_="$cur" cmd="${words[1]}" - local i c=2 remote="" pfx="" lhs=1 no_complete_refspec=0 - if [ "$cmd" = "remote" ]; then - ((c++)) - fi - while [ $c -lt $cword ]; do - i="${words[c]}" - case "$i" in - --mirror) [ "$cmd" = "push" ] && no_complete_refspec=1 ;; - -d|--delete) [ "$cmd" = "push" ] && lhs=0 ;; - --all) - case "$cmd" in - push) no_complete_refspec=1 ;; - fetch) - return - ;; - *) ;; - esac - ;; - --multiple) no_complete_refspec=1; break ;; - -*) ;; - *) remote="$i"; break ;; - esac - ((c++)) - done - if [ -z "$remote" ]; then - __gitcomp_nl "$(__git_remotes)" - return - fi - if [ $no_complete_refspec = 1 ]; then - return - fi - [ "$remote" = "." ] && remote= - case "$cur_" in - *:*) - case "$COMP_WORDBREAKS" in - *:*) : great ;; - *) pfx="${cur_%%:*}:" ;; - esac - cur_="${cur_#*:}" - lhs=0 - ;; - +*) - pfx="+" - cur_="${cur_#+}" - ;; - esac - case "$cmd" in - fetch) - if [ $lhs = 1 ]; then - __git_complete_fetch_refspecs "$remote" "$pfx" "$cur_" - else - __git_complete_refs --pfx="$pfx" --cur="$cur_" - fi - ;; - pull|remote) - if [ $lhs = 1 ]; then - __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_" - else - __git_complete_refs --pfx="$pfx" --cur="$cur_" - fi - ;; - push) - if [ $lhs = 1 ]; then - __git_complete_refs --pfx="$pfx" --cur="$cur_" - else - __git_complete_refs --remote="$remote" --pfx="$pfx" --cur="$cur_" - fi - ;; - esac -} - -__git_complete_strategy () -{ - __git_compute_merge_strategies - case "$prev" in - -s|--strategy) - __gitcomp "$__git_merge_strategies" - return 0 - ;; - -X) - __gitcomp "$__git_merge_strategy_options" - return 0 - ;; - esac - case "$cur" in - --strategy=*) - __gitcomp "$__git_merge_strategies" "" "${cur##--strategy=}" - return 0 - ;; - --strategy-option=*) - __gitcomp "$__git_merge_strategy_options" "" "${cur##--strategy-option=}" - return 0 - ;; - esac - return 1 -} - -__git_all_commands= -__git_compute_all_commands () -{ - test -n "$__git_all_commands" || - __git_all_commands=$(__git --list-cmds=main,others,alias,nohelpers) -} - -# Lists all set config variables starting with the given section prefix, -# with the prefix removed. -__git_get_config_variables () -{ - local section="$1" i IFS=$'\n' - for i in $(__git config --name-only --get-regexp "^$section\..*"); do - echo "${i#$section.}" - done -} - -__git_pretty_aliases () -{ - __git_get_config_variables "pretty" -} - -# __git_aliased_command requires 1 argument -__git_aliased_command () -{ - local word cmdline=$(__git config --get "alias.$1") - for word in $cmdline; do - case "$word" in - \!gitk|gitk) - echo "gitk" - return - ;; - \!*) : shell command alias ;; - -*) : option ;; - *=*) : setting env ;; - git) : git itself ;; - \(\)) : skip parens of shell function definition ;; - {) : skip start of shell helper function ;; - :) : skip null command ;; - \'*) : skip opening quote after sh -c ;; - *) - echo "$word" - return - esac - done -} - -# __git_find_on_cmdline requires 1 argument -__git_find_on_cmdline () -{ - local word subcommand c=1 - while [ $c -lt $cword ]; do - word="${words[c]}" - for subcommand in $1; do - if [ "$subcommand" = "$word" ]; then - echo "$subcommand" - return - fi - done - ((c++)) - done -} - -# Echo the value of an option set on the command line or config -# -# $1: short option name -# $2: long option name including = -# $3: list of possible values -# $4: config string (optional) -# -# example: -# result="$(__git_get_option_value "-d" "--do-something=" \ -# "yes no" "core.doSomething")" -# -# result is then either empty (no option set) or "yes" or "no" -# -# __git_get_option_value requires 3 arguments -__git_get_option_value () -{ - local c short_opt long_opt val - local result= values config_key word - - short_opt="$1" - long_opt="$2" - values="$3" - config_key="$4" - - ((c = $cword - 1)) - while [ $c -ge 0 ]; do - word="${words[c]}" - for val in $values; do - if [ "$short_opt$val" = "$word" ] || - [ "$long_opt$val" = "$word" ]; then - result="$val" - break 2 - fi - done - ((c--)) - done - - if [ -n "$config_key" ] && [ -z "$result" ]; then - result="$(__git config "$config_key")" - fi - - echo "$result" -} - -__git_has_doubledash () -{ - local c=1 - while [ $c -lt $cword ]; do - if [ "--" = "${words[c]}" ]; then - return 0 - fi - ((c++)) - done - return 1 -} - -# Try to count non option arguments passed on the command line for the -# specified git command. -# When options are used, it is necessary to use the special -- option to -# tell the implementation were non option arguments begin. -# XXX this can not be improved, since options can appear everywhere, as -# an example: -# git mv x -n y -# -# __git_count_arguments requires 1 argument: the git command executed. -__git_count_arguments () -{ - local word i c=0 - - # Skip "git" (first argument) - for ((i=1; i < ${#words[@]}; i++)); do - word="${words[i]}" - - case "$word" in - --) - # Good; we can assume that the following are only non - # option arguments. - ((c = 0)) - ;; - "$1") - # Skip the specified git command and discard git - # main options - ((c = 0)) - ;; - ?*) - ((c++)) - ;; - esac - done - - printf "%d" $c -} - -__git_whitespacelist="nowarn warn error error-all fix" -__git_patchformat="mbox stgit stgit-series hg mboxrd" -__git_am_inprogress_options="--skip --continue --resolved --abort --quit --show-current-patch" - -_git_am () -{ - __git_find_repo_path - if [ -d "$__git_repo_path"/rebase-apply ]; then - __gitcomp "$__git_am_inprogress_options" - return - fi - case "$cur" in - --whitespace=*) - __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" - return - ;; - --patch-format=*) - __gitcomp "$__git_patchformat" "" "${cur##--patch-format=}" - return - ;; - --*) - __gitcomp_builtin am "" \ - "$__git_am_inprogress_options" - return - esac -} - -_git_apply () -{ - case "$cur" in - --whitespace=*) - __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" - return - ;; - --*) - __gitcomp_builtin apply - return - esac -} - -_git_add () -{ - case "$cur" in - --chmod=*) - __gitcomp "+x -x" "" "${cur##--chmod=}" - return - ;; - --*) - __gitcomp_builtin add - return - esac - - local complete_opt="--others --modified --directory --no-empty-directory" - if test -n "$(__git_find_on_cmdline "-u --update")" - then - complete_opt="--modified" - fi - __git_complete_index_file "$complete_opt" -} - -_git_archive () -{ - case "$cur" in - --format=*) - __gitcomp "$(git archive --list)" "" "${cur##--format=}" - return - ;; - --remote=*) - __gitcomp_nl "$(__git_remotes)" "" "${cur##--remote=}" - return - ;; - --*) - __gitcomp " - --format= --list --verbose - --prefix= --remote= --exec= --output - " - return - ;; - esac - __git_complete_file -} - -_git_bisect () -{ - __git_has_doubledash && return - - local subcommands="start bad good skip reset visualize replay log run" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __git_find_repo_path - if [ -f "$__git_repo_path"/BISECT_START ]; then - __gitcomp "$subcommands" - else - __gitcomp "replay start" - fi - return - fi - - case "$subcommand" in - bad|good|reset|skip|start) - __git_complete_refs - ;; - *) - ;; - esac -} - -__git_ref_fieldlist="refname objecttype objectsize objectname upstream push HEAD symref" - -_git_branch () -{ - local i c=1 only_local_ref="n" has_r="n" - - while [ $c -lt $cword ]; do - i="${words[c]}" - case "$i" in - -d|--delete|-m|--move) only_local_ref="y" ;; - -r|--remotes) has_r="y" ;; - esac - ((c++)) - done - - case "$cur" in - --set-upstream-to=*) - __git_complete_refs --cur="${cur##--set-upstream-to=}" - ;; - --*) - __gitcomp_builtin branch - ;; - *) - if [ $only_local_ref = "y" -a $has_r = "n" ]; then - __gitcomp_direct "$(__git_heads "" "$cur" " ")" - else - __git_complete_refs - fi - ;; - esac -} - -_git_bundle () -{ - local cmd="${words[2]}" - case "$cword" in - 2) - __gitcomp "create list-heads verify unbundle" - ;; - 3) - # looking for a file - ;; - *) - case "$cmd" in - create) - __git_complete_revlist - ;; - esac - ;; - esac -} - -_git_checkout () -{ - __git_has_doubledash && return - - case "$cur" in - --conflict=*) - __gitcomp "diff3 merge" "" "${cur##--conflict=}" - ;; - --*) - __gitcomp_builtin checkout - ;; - *) - # check if --track, --no-track, or --no-guess was specified - # if so, disable DWIM mode - local flags="--track --no-track --no-guess" track_opt="--track" - if [ "$GIT_COMPLETION_CHECKOUT_NO_GUESS" = "1" ] || - [ -n "$(__git_find_on_cmdline "$flags")" ]; then - track_opt='' - fi - __git_complete_refs $track_opt - ;; - esac -} - -__git_cherry_pick_inprogress_options="--continue --quit --abort" - -_git_cherry_pick () -{ - __git_find_repo_path - if [ -f "$__git_repo_path"/CHERRY_PICK_HEAD ]; then - __gitcomp "$__git_cherry_pick_inprogress_options" - return - fi - - __git_complete_strategy && return - - case "$cur" in - --*) - __gitcomp_builtin cherry-pick "" \ - "$__git_cherry_pick_inprogress_options" - ;; - *) - __git_complete_refs - ;; - esac -} - -_git_clean () -{ - case "$cur" in - --*) - __gitcomp_builtin clean - return - ;; - esac - - # XXX should we check for -x option ? - __git_complete_index_file "--others --directory" -} - -_git_clone () -{ - case "$cur" in - --*) - __gitcomp_builtin clone - return - ;; - esac -} - -__git_untracked_file_modes="all no normal" - -_git_commit () -{ - case "$prev" in - -c|-C) - __git_complete_refs - return - ;; - esac - - case "$cur" in - --cleanup=*) - __gitcomp "default scissors strip verbatim whitespace - " "" "${cur##--cleanup=}" - return - ;; - --reuse-message=*|--reedit-message=*|\ - --fixup=*|--squash=*) - __git_complete_refs --cur="${cur#*=}" - return - ;; - --untracked-files=*) - __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}" - return - ;; - --*) - __gitcomp_builtin commit - return - esac - - if __git rev-parse --verify --quiet HEAD >/dev/null; then - __git_complete_index_file "--committable" - else - # This is the first commit - __git_complete_index_file "--cached" - fi -} - -_git_describe () -{ - case "$cur" in - --*) - __gitcomp_builtin describe - return - esac - __git_complete_refs -} - -__git_diff_algorithms="myers minimal patience histogram" - -__git_diff_submodule_formats="diff log short" - -__git_diff_common_options="--stat --numstat --shortstat --summary - --patch-with-stat --name-only --name-status --color - --no-color --color-words --no-renames --check - --full-index --binary --abbrev --diff-filter= - --find-copies-harder --ignore-cr-at-eol - --text --ignore-space-at-eol --ignore-space-change - --ignore-all-space --ignore-blank-lines --exit-code - --quiet --ext-diff --no-ext-diff - --no-prefix --src-prefix= --dst-prefix= - --inter-hunk-context= - --patience --histogram --minimal - --raw --word-diff --word-diff-regex= - --dirstat --dirstat= --dirstat-by-file - --dirstat-by-file= --cumulative - --diff-algorithm= - --submodule --submodule= --ignore-submodules -" - -_git_diff () -{ - __git_has_doubledash && return - - case "$cur" in - --diff-algorithm=*) - __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" - return - ;; - --submodule=*) - __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}" - return - ;; - --*) - __gitcomp "--cached --staged --pickaxe-all --pickaxe-regex - --base --ours --theirs --no-index - $__git_diff_common_options - " - return - ;; - esac - __git_complete_revlist_file -} - -__git_mergetools_common="diffuse diffmerge ecmerge emerge kdiff3 meld opendiff - tkdiff vimdiff gvimdiff xxdiff araxis p4merge bc - codecompare smerge -" - -_git_difftool () -{ - __git_has_doubledash && return - - case "$cur" in - --tool=*) - __gitcomp "$__git_mergetools_common kompare" "" "${cur##--tool=}" - return - ;; - --*) - __gitcomp_builtin difftool "$__git_diff_common_options - --base --cached --ours --theirs - --pickaxe-all --pickaxe-regex - --relative --staged - " - return - ;; - esac - __git_complete_revlist_file -} - -__git_fetch_recurse_submodules="yes on-demand no" - -_git_fetch () -{ - case "$cur" in - --recurse-submodules=*) - __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}" - return - ;; - --filter=*) - __gitcomp "blob:none blob:limit= sparse:oid=" "" "${cur##--filter=}" - return - ;; - --*) - __gitcomp_builtin fetch - return - ;; - esac - __git_complete_remote_or_refspec -} - -__git_format_patch_extra_options=" - --full-index --not --all --no-prefix --src-prefix= - --dst-prefix= --notes -" - -_git_format_patch () -{ - case "$cur" in - --thread=*) - __gitcomp " - deep shallow - " "" "${cur##--thread=}" - return - ;; - --*) - __gitcomp_builtin format-patch "$__git_format_patch_extra_options" - return - ;; - esac - __git_complete_revlist -} - -_git_fsck () -{ - case "$cur" in - --*) - __gitcomp_builtin fsck - return - ;; - esac -} - -_git_gitk () -{ - _gitk -} - -# Lists matching symbol names from a tag (as in ctags) file. -# 1: List symbol names matching this word. -# 2: The tag file to list symbol names from. -# 3: A prefix to be added to each listed symbol name (optional). -# 4: A suffix to be appended to each listed symbol name (optional). -__git_match_ctag () { - awk -v pfx="${3-}" -v sfx="${4-}" " - /^${1//\//\\/}/ { print pfx \$1 sfx } - " "$2" -} - -# Complete symbol names from a tag file. -# Usage: __git_complete_symbol [<option>]... -# --tags=<file>: The tag file to list symbol names from instead of the -# default "tags". -# --pfx=<prefix>: A prefix to be added to each symbol name. -# --cur=<word>: The current symbol name to be completed. Defaults to -# the current word to be completed. -# --sfx=<suffix>: A suffix to be appended to each symbol name instead -# of the default space. -__git_complete_symbol () { - local tags=tags pfx="" cur_="${cur-}" sfx=" " - - while test $# != 0; do - case "$1" in - --tags=*) tags="${1##--tags=}" ;; - --pfx=*) pfx="${1##--pfx=}" ;; - --cur=*) cur_="${1##--cur=}" ;; - --sfx=*) sfx="${1##--sfx=}" ;; - *) return 1 ;; - esac - shift - done - - if test -r "$tags"; then - __gitcomp_direct "$(__git_match_ctag "$cur_" "$tags" "$pfx" "$sfx")" - fi -} - -_git_grep () -{ - __git_has_doubledash && return - - case "$cur" in - --*) - __gitcomp_builtin grep - return - ;; - esac - - case "$cword,$prev" in - 2,*|*,-*) - __git_complete_symbol && return - ;; - esac - - __git_complete_refs -} - -_git_help () -{ - case "$cur" in - --*) - __gitcomp_builtin help - return - ;; - esac - if test -n "$GIT_TESTING_ALL_COMMAND_LIST" - then - __gitcomp "$GIT_TESTING_ALL_COMMAND_LIST $(__git --list-cmds=alias,list-guide) gitk" - else - __gitcomp "$(__git --list-cmds=main,nohelpers,alias,list-guide) gitk" - fi -} - -_git_init () -{ - case "$cur" in - --shared=*) - __gitcomp " - false true umask group all world everybody - " "" "${cur##--shared=}" - return - ;; - --*) - __gitcomp_builtin init - return - ;; - esac -} - -_git_ls_files () -{ - case "$cur" in - --*) - __gitcomp_builtin ls-files - return - ;; - esac - - # XXX ignore options like --modified and always suggest all cached - # files. - __git_complete_index_file "--cached" -} - -_git_ls_remote () -{ - case "$cur" in - --*) - __gitcomp_builtin ls-remote - return - ;; - esac - __gitcomp_nl "$(__git_remotes)" -} - -_git_ls_tree () -{ - case "$cur" in - --*) - __gitcomp_builtin ls-tree - return - ;; - esac - - __git_complete_file -} - -# Options that go well for log, shortlog and gitk -__git_log_common_options=" - --not --all - --branches --tags --remotes - --first-parent --merges --no-merges - --max-count= - --max-age= --since= --after= - --min-age= --until= --before= - --min-parents= --max-parents= - --no-min-parents --no-max-parents -" -# Options that go well for log and gitk (not shortlog) -__git_log_gitk_options=" - --dense --sparse --full-history - --simplify-merges --simplify-by-decoration - --left-right --notes --no-notes -" -# Options that go well for log and shortlog (not gitk) -__git_log_shortlog_options=" - --author= --committer= --grep= - --all-match --invert-grep -" - -__git_log_pretty_formats="oneline short medium full fuller email raw format: mboxrd" -__git_log_date_formats="relative iso8601 iso8601-strict rfc2822 short local default raw unix format:" - -_git_log () -{ - __git_has_doubledash && return - __git_find_repo_path - - local merge="" - if [ -f "$__git_repo_path/MERGE_HEAD" ]; then - merge="--merge" - fi - case "$prev,$cur" in - -L,:*:*) - return # fall back to Bash filename completion - ;; - -L,:*) - __git_complete_symbol --cur="${cur#:}" --sfx=":" - return - ;; - -G,*|-S,*) - __git_complete_symbol - return - ;; - esac - case "$cur" in - --pretty=*|--format=*) - __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) - " "" "${cur#*=}" - return - ;; - --date=*) - __gitcomp "$__git_log_date_formats" "" "${cur##--date=}" - return - ;; - --decorate=*) - __gitcomp "full short no" "" "${cur##--decorate=}" - return - ;; - --diff-algorithm=*) - __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" - return - ;; - --submodule=*) - __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}" - return - ;; - --*) - __gitcomp " - $__git_log_common_options - $__git_log_shortlog_options - $__git_log_gitk_options - --root --topo-order --date-order --reverse - --follow --full-diff - --abbrev-commit --abbrev= - --relative-date --date= - --pretty= --format= --oneline - --show-signature - --cherry-mark - --cherry-pick - --graph - --decorate --decorate= - --walk-reflogs - --parents --children - $merge - $__git_diff_common_options - --pickaxe-all --pickaxe-regex - " - return - ;; - -L:*:*) - return # fall back to Bash filename completion - ;; - -L:*) - __git_complete_symbol --cur="${cur#-L:}" --sfx=":" - return - ;; - -G*) - __git_complete_symbol --pfx="-G" --cur="${cur#-G}" - return - ;; - -S*) - __git_complete_symbol --pfx="-S" --cur="${cur#-S}" - return - ;; - esac - __git_complete_revlist -} - -_git_merge () -{ - __git_complete_strategy && return - - case "$cur" in - --*) - __gitcomp_builtin merge - return - esac - __git_complete_refs -} - -_git_mergetool () -{ - case "$cur" in - --tool=*) - __gitcomp "$__git_mergetools_common tortoisemerge" "" "${cur##--tool=}" - return - ;; - --*) - __gitcomp "--tool= --prompt --no-prompt --gui --no-gui" - return - ;; - esac -} - -_git_merge_base () -{ - case "$cur" in - --*) - __gitcomp_builtin merge-base - return - ;; - esac - __git_complete_refs -} - -_git_mv () -{ - case "$cur" in - --*) - __gitcomp_builtin mv - return - ;; - esac - - if [ $(__git_count_arguments "mv") -gt 0 ]; then - # We need to show both cached and untracked files (including - # empty directories) since this may not be the last argument. - __git_complete_index_file "--cached --others --directory" - else - __git_complete_index_file "--cached" - fi -} - -_git_notes () -{ - local subcommands='add append copy edit get-ref list merge prune remove show' - local subcommand="$(__git_find_on_cmdline "$subcommands")" - - case "$subcommand,$cur" in - ,--*) - __gitcomp_builtin notes - ;; - ,*) - case "$prev" in - --ref) - __git_complete_refs - ;; - *) - __gitcomp "$subcommands --ref" - ;; - esac - ;; - *,--reuse-message=*|*,--reedit-message=*) - __git_complete_refs --cur="${cur#*=}" - ;; - *,--*) - __gitcomp_builtin notes_$subcommand - ;; - prune,*|get-ref,*) - # this command does not take a ref, do not complete it - ;; - *) - case "$prev" in - -m|-F) - ;; - *) - __git_complete_refs - ;; - esac - ;; - esac -} - -_git_pull () -{ - __git_complete_strategy && return - - case "$cur" in - --recurse-submodules=*) - __gitcomp "$__git_fetch_recurse_submodules" "" "${cur##--recurse-submodules=}" - return - ;; - --*) - __gitcomp_builtin pull - - return - ;; - esac - __git_complete_remote_or_refspec -} - -__git_push_recurse_submodules="check on-demand only" - -__git_complete_force_with_lease () -{ - local cur_=$1 - - case "$cur_" in - --*=) - ;; - *:*) - __git_complete_refs --cur="${cur_#*:}" - ;; - *) - __git_complete_refs --cur="$cur_" - ;; - esac -} - -_git_push () -{ - case "$prev" in - --repo) - __gitcomp_nl "$(__git_remotes)" - return - ;; - --recurse-submodules) - __gitcomp "$__git_push_recurse_submodules" - return - ;; - esac - case "$cur" in - --repo=*) - __gitcomp_nl "$(__git_remotes)" "" "${cur##--repo=}" - return - ;; - --recurse-submodules=*) - __gitcomp "$__git_push_recurse_submodules" "" "${cur##--recurse-submodules=}" - return - ;; - --force-with-lease=*) - __git_complete_force_with_lease "${cur##--force-with-lease=}" - return - ;; - --*) - __gitcomp_builtin push - return - ;; - esac - __git_complete_remote_or_refspec -} - -_git_range_diff () -{ - case "$cur" in - --*) - __gitcomp " - --creation-factor= --no-dual-color - $__git_diff_common_options - " - return - ;; - esac - __git_complete_revlist -} - -_git_rebase () -{ - __git_find_repo_path - if [ -f "$__git_repo_path"/rebase-merge/interactive ]; then - __gitcomp "--continue --skip --abort --quit --edit-todo --show-current-patch" - return - elif [ -d "$__git_repo_path"/rebase-apply ] || \ - [ -d "$__git_repo_path"/rebase-merge ]; then - __gitcomp "--continue --skip --abort --quit --show-current-patch" - return - fi - __git_complete_strategy && return - case "$cur" in - --whitespace=*) - __gitcomp "$__git_whitespacelist" "" "${cur##--whitespace=}" - return - ;; - --*) - __gitcomp " - --onto --merge --strategy --interactive - --rebase-merges --preserve-merges --stat --no-stat - --committer-date-is-author-date --ignore-date - --ignore-whitespace --whitespace= - --autosquash --no-autosquash - --fork-point --no-fork-point - --autostash --no-autostash - --verify --no-verify - --keep-empty --root --force-rebase --no-ff - --rerere-autoupdate - --exec - " - - return - esac - __git_complete_refs -} - -_git_reflog () -{ - local subcommands="show delete expire" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - else - __git_complete_refs - fi -} - -__git_send_email_confirm_options="always never auto cc compose" -__git_send_email_suppresscc_options="author self cc bodycc sob cccmd body all" - -_git_send_email () -{ - case "$prev" in - --to|--cc|--bcc|--from) - __gitcomp "$(__git send-email --dump-aliases)" - return - ;; - esac - - case "$cur" in - --confirm=*) - __gitcomp " - $__git_send_email_confirm_options - " "" "${cur##--confirm=}" - return - ;; - --suppress-cc=*) - __gitcomp " - $__git_send_email_suppresscc_options - " "" "${cur##--suppress-cc=}" - - return - ;; - --smtp-encryption=*) - __gitcomp "ssl tls" "" "${cur##--smtp-encryption=}" - return - ;; - --thread=*) - __gitcomp " - deep shallow - " "" "${cur##--thread=}" - return - ;; - --to=*|--cc=*|--bcc=*|--from=*) - __gitcomp "$(__git send-email --dump-aliases)" "" "${cur#--*=}" - return - ;; - --*) - __gitcomp_builtin send-email "--annotate --bcc --cc --cc-cmd --chain-reply-to - --compose --confirm= --dry-run --envelope-sender - --from --identity - --in-reply-to --no-chain-reply-to --no-signed-off-by-cc - --no-suppress-from --no-thread --quiet --reply-to - --signed-off-by-cc --smtp-pass --smtp-server - --smtp-server-port --smtp-encryption= --smtp-user - --subject --suppress-cc= --suppress-from --thread --to - --validate --no-validate - $__git_format_patch_extra_options" - return - ;; - esac - __git_complete_revlist -} - -_git_stage () -{ - _git_add -} - -_git_status () -{ - local complete_opt - local untracked_state - - case "$cur" in - --ignore-submodules=*) - __gitcomp "none untracked dirty all" "" "${cur##--ignore-submodules=}" - return - ;; - --untracked-files=*) - __gitcomp "$__git_untracked_file_modes" "" "${cur##--untracked-files=}" - return - ;; - --column=*) - __gitcomp " - always never auto column row plain dense nodense - " "" "${cur##--column=}" - return - ;; - --*) - __gitcomp_builtin status - return - ;; - esac - - untracked_state="$(__git_get_option_value "-u" "--untracked-files=" \ - "$__git_untracked_file_modes" "status.showUntrackedFiles")" - - case "$untracked_state" in - no) - # --ignored option does not matter - complete_opt= - ;; - all|normal|*) - complete_opt="--cached --directory --no-empty-directory --others" - - if [ -n "$(__git_find_on_cmdline "--ignored")" ]; then - complete_opt="$complete_opt --ignored --exclude=*" - fi - ;; - esac - - __git_complete_index_file "$complete_opt" -} - -__git_config_get_set_variables () -{ - local prevword word config_file= c=$cword - while [ $c -gt 1 ]; do - word="${words[c]}" - case "$word" in - --system|--global|--local|--file=*) - config_file="$word" - break - ;; - -f|--file) - config_file="$word $prevword" - break - ;; - esac - prevword=$word - c=$((--c)) - done - - __git config $config_file --name-only --list -} - -__git_config_vars= -__git_compute_config_vars () -{ - test -n "$__git_config_vars" || - __git_config_vars="$(git help --config-for-completion | sort | uniq)" -} - -_git_config () -{ - local varname - - if [ "${BASH_VERSINFO[0]:-0}" -ge 4 ]; then - varname="${prev,,}" - else - varname="$(echo "$prev" |tr A-Z a-z)" - fi - - case "$varname" in - branch.*.remote|branch.*.pushremote) - __gitcomp_nl "$(__git_remotes)" - return - ;; - branch.*.merge) - __git_complete_refs - return - ;; - branch.*.rebase) - __gitcomp "false true merges preserve interactive" - return - ;; - remote.pushdefault) - __gitcomp_nl "$(__git_remotes)" - return - ;; - remote.*.fetch) - local remote="${prev#remote.}" - remote="${remote%.fetch}" - if [ -z "$cur" ]; then - __gitcomp_nl "refs/heads/" "" "" "" - return - fi - __gitcomp_nl "$(__git_refs_remotes "$remote")" - return - ;; - remote.*.push) - local remote="${prev#remote.}" - remote="${remote%.push}" - __gitcomp_nl "$(__git for-each-ref \ - --format='%(refname):%(refname)' refs/heads)" - return - ;; - pull.twohead|pull.octopus) - __git_compute_merge_strategies - __gitcomp "$__git_merge_strategies" - return - ;; - color.branch|color.diff|color.interactive|\ - color.showbranch|color.status|color.ui) - __gitcomp "always never auto" - return - ;; - color.pager) - __gitcomp "false true" - return - ;; - color.*.*) - __gitcomp " - normal black red green yellow blue magenta cyan white - bold dim ul blink reverse - " - return - ;; - diff.submodule) - __gitcomp "$__git_diff_submodule_formats" - return - ;; - help.format) - __gitcomp "man info web html" - return - ;; - log.date) - __gitcomp "$__git_log_date_formats" - return - ;; - sendemail.aliasfiletype) - __gitcomp "mutt mailrc pine elm gnus" - return - ;; - sendemail.confirm) - __gitcomp "$__git_send_email_confirm_options" - return - ;; - sendemail.suppresscc) - __gitcomp "$__git_send_email_suppresscc_options" - return - ;; - sendemail.transferencoding) - __gitcomp "7bit 8bit quoted-printable base64" - return - ;; - --get|--get-all|--unset|--unset-all) - __gitcomp_nl "$(__git_config_get_set_variables)" - return - ;; - *.*) - return - ;; - esac - case "$cur" in - --*) - __gitcomp_builtin config - return - ;; - branch.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "remote pushRemote merge mergeOptions rebase" "$pfx" "$cur_" - return - ;; - branch.*) - local pfx="${cur%.*}." cur_="${cur#*.}" - __gitcomp_direct "$(__git_heads "$pfx" "$cur_" ".")" - __gitcomp_nl_append $'autoSetupMerge\nautoSetupRebase\n' "$pfx" "$cur_" - return - ;; - guitool.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp " - argPrompt cmd confirm needsFile noConsole noRescan - prompt revPrompt revUnmerged title - " "$pfx" "$cur_" - return - ;; - difftool.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "cmd path" "$pfx" "$cur_" - return - ;; - man.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "cmd path" "$pfx" "$cur_" - return - ;; - mergetool.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "cmd path trustExitCode" "$pfx" "$cur_" - return - ;; - pager.*) - local pfx="${cur%.*}." cur_="${cur#*.}" - __git_compute_all_commands - __gitcomp_nl "$__git_all_commands" "$pfx" "$cur_" - return - ;; - remote.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp " - url proxy fetch push mirror skipDefaultUpdate - receivepack uploadpack tagOpt pushurl - " "$pfx" "$cur_" - return - ;; - remote.*) - local pfx="${cur%.*}." cur_="${cur#*.}" - __gitcomp_nl "$(__git_remotes)" "$pfx" "$cur_" "." - __gitcomp_nl_append "pushDefault" "$pfx" "$cur_" - return - ;; - url.*.*) - local pfx="${cur%.*}." cur_="${cur##*.}" - __gitcomp "insteadOf pushInsteadOf" "$pfx" "$cur_" - return - ;; - *.*) - __git_compute_config_vars - __gitcomp "$__git_config_vars" - ;; - *) - __git_compute_config_vars - __gitcomp "$(echo "$__git_config_vars" | sed 's/\.[^ ]*/./g')" - esac -} - -_git_remote () -{ - local subcommands=" - add rename remove set-head set-branches - get-url set-url show prune update - " - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - case "$cur" in - --*) - __gitcomp_builtin remote - ;; - *) - __gitcomp "$subcommands" - ;; - esac - return - fi - - case "$subcommand,$cur" in - add,--*) - __gitcomp_builtin remote_add - ;; - add,*) - ;; - set-head,--*) - __gitcomp_builtin remote_set-head - ;; - set-branches,--*) - __gitcomp_builtin remote_set-branches - ;; - set-head,*|set-branches,*) - __git_complete_remote_or_refspec - ;; - update,--*) - __gitcomp_builtin remote_update - ;; - update,*) - __gitcomp "$(__git_remotes) $(__git_get_config_variables "remotes")" - ;; - set-url,--*) - __gitcomp_builtin remote_set-url - ;; - get-url,--*) - __gitcomp_builtin remote_get-url - ;; - prune,--*) - __gitcomp_builtin remote_prune - ;; - *) - __gitcomp_nl "$(__git_remotes)" - ;; - esac -} - -_git_replace () -{ - case "$cur" in - --format=*) - __gitcomp "short medium long" "" "${cur##--format=}" - return - ;; - --*) - __gitcomp_builtin replace - return - ;; - esac - __git_complete_refs -} - -_git_rerere () -{ - local subcommands="clear forget diff remaining status gc" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if test -z "$subcommand" - then - __gitcomp "$subcommands" - return - fi -} - -_git_reset () -{ - __git_has_doubledash && return - - case "$cur" in - --*) - __gitcomp_builtin reset - return - ;; - esac - __git_complete_refs -} - -__git_revert_inprogress_options="--continue --quit --abort" - -_git_revert () -{ - __git_find_repo_path - if [ -f "$__git_repo_path"/REVERT_HEAD ]; then - __gitcomp "$__git_revert_inprogress_options" - return - fi - __git_complete_strategy && return - case "$cur" in - --*) - __gitcomp_builtin revert "" \ - "$__git_revert_inprogress_options" - return - ;; - esac - __git_complete_refs -} - -_git_rm () -{ - case "$cur" in - --*) - __gitcomp_builtin rm - return - ;; - esac - - __git_complete_index_file "--cached" -} - -_git_shortlog () -{ - __git_has_doubledash && return - - case "$cur" in - --*) - __gitcomp " - $__git_log_common_options - $__git_log_shortlog_options - --numbered --summary --email - " - return - ;; - esac - __git_complete_revlist -} - -_git_show () -{ - __git_has_doubledash && return - - case "$cur" in - --pretty=*|--format=*) - __gitcomp "$__git_log_pretty_formats $(__git_pretty_aliases) - " "" "${cur#*=}" - return - ;; - --diff-algorithm=*) - __gitcomp "$__git_diff_algorithms" "" "${cur##--diff-algorithm=}" - return - ;; - --submodule=*) - __gitcomp "$__git_diff_submodule_formats" "" "${cur##--submodule=}" - return - ;; - --*) - __gitcomp "--pretty= --format= --abbrev-commit --oneline - --show-signature - $__git_diff_common_options - " - return - ;; - esac - __git_complete_revlist_file -} - -_git_show_branch () -{ - case "$cur" in - --*) - __gitcomp_builtin show-branch - return - ;; - esac - __git_complete_revlist -} - -_git_stash () -{ - local save_opts='--all --keep-index --no-keep-index --quiet --patch --include-untracked' - local subcommands='push list show apply clear drop pop create branch' - local subcommand="$(__git_find_on_cmdline "$subcommands save")" - if [ -n "$(__git_find_on_cmdline "-p")" ]; then - subcommand="push" - fi - if [ -z "$subcommand" ]; then - case "$cur" in - --*) - __gitcomp "$save_opts" - ;; - sa*) - if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then - __gitcomp "save" - fi - ;; - *) - if [ -z "$(__git_find_on_cmdline "$save_opts")" ]; then - __gitcomp "$subcommands" - fi - ;; - esac - else - case "$subcommand,$cur" in - push,--*) - __gitcomp "$save_opts --message" - ;; - save,--*) - __gitcomp "$save_opts" - ;; - apply,--*|pop,--*) - __gitcomp "--index --quiet" - ;; - drop,--*) - __gitcomp "--quiet" - ;; - list,--*) - __gitcomp "--name-status --oneline --patch-with-stat" - ;; - show,--*|branch,--*) - ;; - branch,*) - if [ $cword -eq 3 ]; then - __git_complete_refs - else - __gitcomp_nl "$(__git stash list \ - | sed -n -e 's/:.*//p')" - fi - ;; - show,*|apply,*|drop,*|pop,*) - __gitcomp_nl "$(__git stash list \ - | sed -n -e 's/:.*//p')" - ;; - *) - ;; - esac - fi -} - -_git_submodule () -{ - __git_has_doubledash && return - - local subcommands="add status init deinit update set-branch summary foreach sync absorbgitdirs" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - case "$cur" in - --*) - __gitcomp "--quiet" - ;; - *) - __gitcomp "$subcommands" - ;; - esac - return - fi - - case "$subcommand,$cur" in - add,--*) - __gitcomp "--branch --force --name --reference --depth" - ;; - status,--*) - __gitcomp "--cached --recursive" - ;; - deinit,--*) - __gitcomp "--force --all" - ;; - update,--*) - __gitcomp " - --init --remote --no-fetch - --recommend-shallow --no-recommend-shallow - --force --rebase --merge --reference --depth --recursive --jobs - " - ;; - set-branch,--*) - __gitcomp "--default --branch" - ;; - summary,--*) - __gitcomp "--cached --files --summary-limit" - ;; - foreach,--*|sync,--*) - __gitcomp "--recursive" - ;; - *) - ;; - esac -} - -_git_svn () -{ - local subcommands=" - init fetch clone rebase dcommit log find-rev - set-tree commit-diff info create-ignore propget - proplist show-ignore show-externals branch tag blame - migrate mkdirs reset gc - " - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - else - local remote_opts="--username= --config-dir= --no-auth-cache" - local fc_opts=" - --follow-parent --authors-file= --repack= - --no-metadata --use-svm-props --use-svnsync-props - --log-window-size= --no-checkout --quiet - --repack-flags --use-log-author --localtime - --add-author-from - --ignore-paths= --include-paths= $remote_opts - " - local init_opts=" - --template= --shared= --trunk= --tags= - --branches= --stdlayout --minimize-url - --no-metadata --use-svm-props --use-svnsync-props - --rewrite-root= --prefix= $remote_opts - " - local cmt_opts=" - --edit --rmdir --find-copies-harder --copy-similarity= - " - - case "$subcommand,$cur" in - fetch,--*) - __gitcomp "--revision= --fetch-all $fc_opts" - ;; - clone,--*) - __gitcomp "--revision= $fc_opts $init_opts" - ;; - init,--*) - __gitcomp "$init_opts" - ;; - dcommit,--*) - __gitcomp " - --merge --strategy= --verbose --dry-run - --fetch-all --no-rebase --commit-url - --revision --interactive $cmt_opts $fc_opts - " - ;; - set-tree,--*) - __gitcomp "--stdin $cmt_opts $fc_opts" - ;; - create-ignore,--*|propget,--*|proplist,--*|show-ignore,--*|\ - show-externals,--*|mkdirs,--*) - __gitcomp "--revision=" - ;; - log,--*) - __gitcomp " - --limit= --revision= --verbose --incremental - --oneline --show-commit --non-recursive - --authors-file= --color - " - ;; - rebase,--*) - __gitcomp " - --merge --verbose --strategy= --local - --fetch-all --dry-run $fc_opts - " - ;; - commit-diff,--*) - __gitcomp "--message= --file= --revision= $cmt_opts" - ;; - info,--*) - __gitcomp "--url" - ;; - branch,--*) - __gitcomp "--dry-run --message --tag" - ;; - tag,--*) - __gitcomp "--dry-run --message" - ;; - blame,--*) - __gitcomp "--git-format" - ;; - migrate,--*) - __gitcomp " - --config-dir= --ignore-paths= --minimize - --no-auth-cache --username= - " - ;; - reset,--*) - __gitcomp "--revision= --parent" - ;; - *) - ;; - esac - fi -} - -_git_tag () -{ - local i c=1 f=0 - while [ $c -lt $cword ]; do - i="${words[c]}" - case "$i" in - -d|--delete|-v|--verify) - __gitcomp_direct "$(__git_tags "" "$cur" " ")" - return - ;; - -f) - f=1 - ;; - esac - ((c++)) - done - - case "$prev" in - -m|-F) - ;; - -*|tag) - if [ $f = 1 ]; then - __gitcomp_direct "$(__git_tags "" "$cur" " ")" - fi - ;; - *) - __git_complete_refs - ;; - esac - - case "$cur" in - --*) - __gitcomp_builtin tag - ;; - esac -} - -_git_whatchanged () -{ - _git_log -} - -_git_worktree () -{ - local subcommands="add list lock move prune remove unlock" - local subcommand="$(__git_find_on_cmdline "$subcommands")" - if [ -z "$subcommand" ]; then - __gitcomp "$subcommands" - else - case "$subcommand,$cur" in - add,--*) - __gitcomp_builtin worktree_add - ;; - list,--*) - __gitcomp_builtin worktree_list - ;; - lock,--*) - __gitcomp_builtin worktree_lock - ;; - prune,--*) - __gitcomp_builtin worktree_prune - ;; - remove,--*) - __gitcomp "--force" - ;; - *) - ;; - esac - fi -} - -__git_complete_common () { - local command="$1" - - case "$cur" in - --*) - __gitcomp_builtin "$command" - ;; - esac -} - -__git_cmds_with_parseopt_helper= -__git_support_parseopt_helper () { - test -n "$__git_cmds_with_parseopt_helper" || - __git_cmds_with_parseopt_helper="$(__git --list-cmds=parseopt)" - - case " $__git_cmds_with_parseopt_helper " in - *" $1 "*) - return 0 - ;; - *) - return 1 - ;; - esac -} - -__git_complete_command () { - local command="$1" - local completion_func="_git_${command//-/_}" - if ! declare -f $completion_func >/dev/null 2>/dev/null && - declare -f _completion_loader >/dev/null 2>/dev/null - then - _completion_loader "git-$command" - fi - if declare -f $completion_func >/dev/null 2>/dev/null - then - $completion_func - return 0 - elif __git_support_parseopt_helper "$command" - then - __git_complete_common "$command" - return 0 - else - return 1 - fi -} - -__git_main () -{ - local i c=1 command __git_dir __git_repo_path - local __git_C_args C_args_count=0 - - while [ $c -lt $cword ]; do - i="${words[c]}" - case "$i" in - --git-dir=*) __git_dir="${i#--git-dir=}" ;; - --git-dir) ((c++)) ; __git_dir="${words[c]}" ;; - --bare) __git_dir="." ;; - --help) command="help"; break ;; - -c|--work-tree|--namespace) ((c++)) ;; - -C) __git_C_args[C_args_count++]=-C - ((c++)) - __git_C_args[C_args_count++]="${words[c]}" - ;; - -*) ;; - *) command="$i"; break ;; - esac - ((c++)) - done - - if [ -z "$command" ]; then - case "$prev" in - --git-dir|-C|--work-tree) - # these need a path argument, let's fall back to - # Bash filename completion - return - ;; - -c|--namespace) - # we don't support completing these options' arguments - return - ;; - esac - case "$cur" in - --*) __gitcomp " - --paginate - --no-pager - --git-dir= - --bare - --version - --exec-path - --exec-path= - --html-path - --man-path - --info-path - --work-tree= - --namespace= - --no-replace-objects - --help - " - ;; - *) - if test -n "$GIT_TESTING_PORCELAIN_COMMAND_LIST" - then - __gitcomp "$GIT_TESTING_PORCELAIN_COMMAND_LIST" - else - __gitcomp "$(__git --list-cmds=list-mainporcelain,others,nohelpers,alias,list-complete,config)" - fi - ;; - esac - return - fi - - __git_complete_command "$command" && return - - local expansion=$(__git_aliased_command "$command") - if [ -n "$expansion" ]; then - words[1]=$expansion - __git_complete_command "$expansion" - fi -} - -__gitk_main () -{ - __git_has_doubledash && return - - local __git_repo_path - __git_find_repo_path - - local merge="" - if [ -f "$__git_repo_path/MERGE_HEAD" ]; then - merge="--merge" - fi - case "$cur" in - --*) - __gitcomp " - $__git_log_common_options - $__git_log_gitk_options - $merge - " - return - ;; - esac - __git_complete_revlist -} - -if [[ -n ${ZSH_VERSION-} ]] && - # Don't define these functions when sourced from 'git-completion.zsh', - # it has its own implementations. - [[ -z ${GIT_SOURCING_ZSH_COMPLETION-} ]]; then - echo "WARNING: this script is deprecated, please see git-completion.zsh" 1>&2 - - autoload -U +X compinit && compinit - - __gitcomp () - { - emulate -L zsh - - local cur_="${3-$cur}" - - case "$cur_" in - --*=) - ;; - *) - local c IFS=$' \t\n' - local -a array - for c in ${=1}; do - c="$c${4-}" - case $c in - --*=*|*.) ;; - *) c="$c " ;; - esac - array[${#array[@]}+1]="$c" - done - compset -P '*[=:]' - compadd -Q -S '' -p "${2-}" -a -- array && _ret=0 - ;; - esac - } - - __gitcomp_direct () - { - emulate -L zsh - - local IFS=$'\n' - compset -P '*[=:]' - compadd -Q -- ${=1} && _ret=0 - } - - __gitcomp_nl () - { - emulate -L zsh - - local IFS=$'\n' - compset -P '*[=:]' - compadd -Q -S "${4- }" -p "${2-}" -- ${=1} && _ret=0 - } - - __gitcomp_file_direct () - { - emulate -L zsh - - local IFS=$'\n' - compset -P '*[=:]' - compadd -f -- ${=1} && _ret=0 - } - - __gitcomp_file () - { - emulate -L zsh - - local IFS=$'\n' - compset -P '*[=:]' - compadd -p "${2-}" -f -- ${=1} && _ret=0 - } - - _git () - { - local _ret=1 cur cword prev - cur=${words[CURRENT]} - prev=${words[CURRENT-1]} - let cword=CURRENT-1 - emulate ksh -c __${service}_main - let _ret && _default && _ret=0 - return _ret - } - - compdef _git git gitk - return -fi - -__git_func_wrap () -{ - local cur words cword prev - _get_comp_words_by_ref -n =: cur words cword prev - $1 -} - -# Setup completion for certain functions defined above by setting common -# variables and workarounds. -# This is NOT a public function; use at your own risk. -__git_complete () -{ - local wrapper="__git_wrap${2}" - eval "$wrapper () { __git_func_wrap $2 ; }" - complete -o bashdefault -o default -o nospace -F $wrapper $1 2>/dev/null \ - || complete -o default -o nospace -F $wrapper $1 -} - -# wrapper for backwards compatibility -_git () -{ - __git_wrap__git_main -} - -# wrapper for backwards compatibility -_gitk () -{ - __git_wrap__gitk_main -} - -__git_complete git __git_main -__git_complete gitk __gitk_main - -# The following are necessary only for Cygwin, and only are needed -# when the user has tab-completed the executable name and consequently -# included the '.exe' suffix. -# -if [ Cygwin = "$(uname -o 2>/dev/null)" ]; then -__git_complete git.exe __git_main -fi diff --git a/gitconfig b/gitconfig deleted file mode 100644 index 40dda5e..0000000 --- a/gitconfig +++ /dev/null @@ -1,35 +0,0 @@ -[user] - name = Miquel Sabaté Solà - email = msabate@suse.com - signingkey = 0x96BE8C6FD89D6565 - -[core] - editor = emacsclient-a-nw - excludesfile = ~/.gitignore - whitespace = trailing-space,space-before-tab - abbrev = 12 - -[help] - autocorrect = 1 - -[http] - sslVerify = true - -[alias] - a = commit -a -s -v - down = pull --rebase --stat - -[format] - signoff = true - -[push] - default = matching - -[apply] - whitespace = fix - -[color] - ui = true - -[merge] - tool = vimdiff diff --git a/global.gitignore b/global.gitignore deleted file mode 100644 index 9656fcb..0000000 --- a/global.gitignore +++ /dev/null @@ -1,20 +0,0 @@ -*.~ -*.swp -*.lvimrc - -.sass-cache - -# Ruby thingies -.rbx/ -.rake_tasks - -# KDE -build/ -.kdev4/ -*.kdev4 -.kdev_include_paths -.directory -*.kate-swp -LLEGEIXME.txt -*.kilepr -.kateconfig diff --git a/gnupg/gpg-agent.conf b/gnupg/gpg-agent.conf deleted file mode 100644 index 67c7dae..0000000 --- a/gnupg/gpg-agent.conf +++ /dev/null @@ -1,5 +0,0 @@ -pinentry-program /usr/bin/pinentry-qt4 -max-cache-ttl 720000 -default-cache-ttl 720000 -enable-ssh-support -use-standard-socket \ No newline at end of file diff --git a/gnupg/gpg.conf b/gnupg/gpg.conf deleted file mode 100644 index 9c5cf0c..0000000 --- a/gnupg/gpg.conf +++ /dev/null @@ -1,103 +0,0 @@ -# Options for GnuPG -# Copyright 1998-2003, 2010 Free Software Foundation, Inc. -# Copyright 1998-2003, 2010 Werner Koch -# -# This file is free software; as a special exception the author gives -# unlimited permission to copy and/or distribute it, with or without -# modifications, as long as this notice is preserved. -# -# This file is distributed in the hope that it will be useful, but -# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the -# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -# -# Unless you specify which option file to use (with the command line -# option "--options filename"), GnuPG uses the file ~/.gnupg/gpg.conf -# by default. -# -# An options file can contain any long options which are available in -# GnuPG. If the first non white space character of a line is a '#', -# this line is ignored. Empty lines are also ignored. -# -# See the man page for a list of options. - -# Config based on https://github.com/jfrazelle/dotfiles - -# -# default key -# - -default-key 0x96BE8C6FD89D6565 - -# -# behavior -# - -# Disable inclusion of the version string in ASCII armored output -no-emit-version - -# Disable comment string in clear text signatures and ASCII armored messages -no-comments - -# Display long key IDs -keyid-format 0xlong - -# List all keys (or the specified ones) along with their fingerprints -with-fingerprint - -# Display the calculated validity of user IDs during key listings -list-options show-uid-validity -verify-options show-uid-validity - -# -# keyserver -# - -keyserver hkp://keys.gnupg.net - -# When using --refresh-keys, if the key in question has a preferred keyserver -# URL, then disable use of that preferred keyserver to refresh the key from -keyserver-options no-honor-keyserver-url - -# When searching for a key with --search-keys, include keys that are marked on -# the keyserver as revoked -keyserver-options include-revoked - -# -# other -# - -# When verifying a signature made from a subkey, ensure that the cross -# certification "back signature" on the subkey is present and valid. -# This protects against a subtle attack against subkeys that can sign. -# Defaults to --no-require-cross-certification. However for new -# installations it should be enabled. - -require-cross-certification - -# If you do not use the Latin-1 (ISO-8859-1) charset, you should tell -# GnuPG which is the native character set. Please check the man page -# for supported character sets. This character set is only used for -# metadata and not for the actual message which does not undergo any -# translation. Note that future version of GnuPG will change to UTF-8 -# as default character set. - -charset utf-8 - -# -# algorithm and ciphers -# - -# list of personal digest preferences. When multiple digests are supported by -# all recipients, choose the strongest one -personal-cipher-preferences AES256 AES192 AES CAST5 - -# list of personal digest preferences. When multiple ciphers are supported by -# all recipients, choose the strongest one -personal-digest-preferences SHA512 SHA384 SHA256 SHA224 - -# message digest algorithm used when signing a key -cert-digest-algo SHA512 - -# This preference list is used for new keys and becomes the default for -# "setpref" in the edit menu -default-preference-list SHA512 SHA384 SHA256 SHA224 AES256 AES192 AES CAST5 ZLIB BZIP2 ZIP Uncompressed diff --git a/hgrc b/hgrc deleted file mode 100644 index 02b2893..0000000 --- a/hgrc +++ /dev/null @@ -1,28 +0,0 @@ -[ui] -username = Miquel Sabaté Solà <mikisabate@gmail.com> -ignore = ~/.hgignore - -[hooks] -preupdate = hg status --rev .:$HG_PARENT1 - -[alias] -show = log -pr -down = !$HG pull --rebase; $HG update -blame = annotate --user -c - -[pager] -pager = LESS='FSRX' less - -[extensions] -pager = -color = -rebase = -shelve = -progress = - -[color] -status.added = green -status.modified = red -status.removed = red -status.deleted = red -status.unknown = blue bold diff --git a/i3/config b/i3/config deleted file mode 100644 index b2915ae..0000000 --- a/i3/config +++ /dev/null @@ -1,244 +0,0 @@ -# Largely based on https://github.com/flavio/dotfiles. - -# i3 config file (v4) -# -# Please see http://i3wm.org/docs/userguide.html for a complete reference! - -set $mod Mod4 - -# Font for window titles. Will also be used by the bar unless a different font -# is used in the bar {} block below. ISO 10646 = Unicode -font -misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1 -# The font above is very space-efficient, that is, it looks good, sharp and -# clear in small sizes. However, if you need a lot of unicode glyphs or -# right-to-left text rendering, you should instead use pango for rendering and -# chose a FreeType font, such as: -font pango:DejaVu Sans Mono 10 - -#class border backgr. text indicator -client.focused #888888 #dddddd #222222 #2e9ef4 -client.focused_inactive #333333 #555555 #bbbbbb #484e50 -client.unfocused #333333 #333333 #888888 #292d2e -client.urgent #2f343a #900000 #ffffff #900000 - - -# Use Mouse+$mod to drag floating windows to their wanted position -floating_modifier $mod - -# start a terminal -bindsym $mod+Return exec konsole - -# kill focused window -bindsym $mod+Shift+q kill - -# Start dmenu (a program launcher) -bindsym $mod+d exec --no-startup-id i3-dmenu-desktop - -# Change focus -bindsym $mod+Up focus up -bindsym $mod+Down focus down -bindsym $mod+Left focus left -bindsym $mod+Right focus right -bindsym $mod+j focus left -bindsym $mod+k focus right - -# Move focused window -bindsym $mod+Shift+Up move up -bindsym $mod+Shift+Down move down -bindsym $mod+Shift+Left move left -bindsym $mod+Shift+Right move right -bindsym $mod+Shift+j move left -bindsym $mod+Shift+k move right - -# split in horizontal orientation -bindsym $mod+h split h - -# split in vertical orientation -bindsym $mod+v split v - -# enter fullscreen mode for the focused container -bindsym $mod+f fullscreen - -# Cool lock. Thanks franky! -bindsym $mod+l exec xlock -mode eyes - -# change container layout (stacked, tabbed, toggle split) -bindsym $mod+s layout stacking -bindsym $mod+w layout tabbed -bindsym $mod+e layout toggle split - -# toggle tiling / floating -bindsym $mod+Shift+space floating toggle - -# change focus between tiling / floating windows -bindsym $mod+space focus mode_toggle - -# focus the parent container -bindsym $mod+a focus parent - -# Go to workspace -bindsym $mod+1 workspace 1 -bindsym $mod+2 workspace 2 -bindsym $mod+3 workspace 3 -bindsym $mod+4 workspace 4 -bindsym $mod+5 workspace 5 -bindsym $mod+6 workspace 6 -bindsym $mod+7 workspace 7 -bindsym $mod+8 workspace 8 -bindsym $mod+9 workspace 9 -bindsym $mod+0 workspace 10 - -# move focused container to workspace -bindsym $mod+Shift+1 move container to workspace 1 -bindsym $mod+Shift+2 move container to workspace 2 -bindsym $mod+Shift+3 move container to workspace 3 -bindsym $mod+Shift+4 move container to workspace 4 -bindsym $mod+Shift+5 move container to workspace 5 -bindsym $mod+Shift+6 move container to workspace 6 -bindsym $mod+Shift+7 move container to workspace 7 -bindsym $mod+Shift+8 move container to workspace 8 -bindsym $mod+Shift+9 move container to workspace 9 -bindsym $mod+Shift+0 move container to workspace 10 - -# reload the configuration file -bindsym $mod+Shift+c reload - -# restart i3 inplace (preserves your layout/session, can be used to upgrade i3) -bindsym $mod+Shift+r restart - -# exit i3 (logs you out of your X session) -bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'" - -# resize window (you can also use the mouse for that) -mode "resize" { - # These bindings trigger as soon as you enter the resize mode - - # Pressing left will shrink the window’s width. - # Pressing right will grow the window’s width. - # Pressing up will shrink the window’s height. - # Pressing down will grow the window’s height. - bindsym j resize shrink width 10 px or 10 ppt - bindsym k resize grow height 10 px or 10 ppt - bindsym l resize shrink height 10 px or 10 ppt - bindsym semicolon resize grow width 10 px or 10 ppt - - # same bindings, but for the arrow keys - bindsym Left resize shrink width 10 px or 10 ppt - bindsym Down resize grow height 10 px or 10 ppt - bindsym Up resize shrink height 10 px or 10 ppt - bindsym Right resize grow width 10 px or 10 ppt - - # back to normal: Enter or Escape - bindsym Return mode "default" - bindsym Escape mode "default" -} - -bindsym $mod+r mode "resize" - -# Get volume keys working -bindsym XF86AudioRaiseVolume exec amixer -q set Master 5%+ unmute -bindsym XF86AudioLowerVolume exec amixer -q set Master 5%- unmute -bindsym XF86AudioMute exec amixer -q set Master toggle - -# Back & Forth support + $mod+z shortcut. -workspace_auto_back_and_forth yes -bindsym $mod+z workspace back_and_forth -bindsym $mod+Shift+z move container to workspace back_and_forth; workspace back_and_forth - -# Disallow the mouse from changing the focus. I prefer to be explicit with the -# mouse and click to get focus if I'm using it. -focus_follows_mouse no - -# Bindings for specific applications. -bindsym $mod+Shift+f [class="Firefox"] focus -bindsym $mod+Shift+t [class="Tor"] focus - -# Scrot -bindsym Print exec scrot -u - -# Toggle keyboard layout US <-> CAT -bindsym $mod+F1 exec ~/bin/toggle-keyboard-layout.sh - -# Emacs. By default we go with daemon mode, but if something is wrong, it's -# cool to have a safe way to start Emacs. -bindsym $mod+m exec emacsclient -c -a "" -bindsym $mod+Shift+m exec emacs - -# Start i3bar to display a workspace bar (plus the system information i3status -# finds out, if available). This setup has DP-1 as the monitor on the right, -# and DVI-I-1 as the monitor on the left. The tray will only be shown to the -# right. -bar { - output DP-1 - position top - status_command i3status - workspace_buttons yes - tray_output DP-1 - - colors { - separator #666666 - background #333333 - statusline #bbbbbb - focused_workspace #888888 #dddddd #222222 - active_workspace #333333 #555555 #bbbbbb - inactive_workspace #333333 #555555 #bbbbbb - urgent_workspace #2f343a #900000 #ffffff - } -} - -bar { - output DVI-I-1 - position top - status_command i3status - workspace_buttons yes - tray_output DP-1 - - colors { - separator #666666 - background #333333 - statusline #bbbbbb - focused_workspace #888888 #dddddd #222222 - active_workspace #333333 #555555 #bbbbbb - inactive_workspace #333333 #555555 #bbbbbb - urgent_workspace #2f343a #900000 #ffffff - } -} - -# NOTE: If you are using a laptop, use this bar config. -#bar { -#position top -#status_command i3status -#workspace_buttons yes -#tray_output eDP1 -# -#colors { -#separator #666666 -#background #333333 -#statusline #bbbbbb -#focused_workspace #888888 #dddddd #222222 -#active_workspace #333333 #555555 #bbbbbb -#inactive_workspace #333333 #555555 #bbbbbb -#urgent_workspace #2f343a #900000 #ffffff -#} -#} - -# Start dunst notification manager at boot -exec --no-startup-id dunst - -# Proper configuration of multi monitor -# NOTE: remove this if you are using a laptop. -exec --no-startup-id xrandr --output DP-1 --right-of DVI-I-1 - -# Disable system bell -exec --no-startup-id xset b off - -# Disable screensaver and power saving feature: they may crash on Tumbleweed. -exec --no-startup-id xset -dpms -exec --no-startup-id xset s off - -# Network manager -# NOTE: uncomment this if you are in a laptop -# exec --no-startup-id nm-applet - -# Wallpaper -exec --no-startup-id nitrogen --restore diff --git a/i3status.conf b/i3status.conf deleted file mode 100644 index b8fc77b..0000000 --- a/i3status.conf +++ /dev/null @@ -1,84 +0,0 @@ -# i3status configuration file. -# see "man i3status" for documentation. -# Largely based on https://github.com/flavio/dotfiles. - -# It is important that this file is edited as UTF-8. -# The following line should contain a sharp s: -# ß -# If the above line is not correctly displayed, fix your editor first! - -general { - colors = true - color_good = "#859900" - color_degraded = "#b58900" - color_bad = "#dc322f" - interval = 5 -} - -order += "disk /" -order += "disk /home" -order += "ethernet br0" -# NOTE: uncomment this and remove the previous line if you are using a laptop. -#order += "wireless wlan0" -order += "load" -order += "volume master" -# NOTE: use these two if you are using a laptop. -#order += "battery 0" -#order += "battery 1" -order += "tztime local" - -# Yes, I'm weird :P Use whatever ethernet interface you have here. -# NOTE: remove this if you are using a laptop. -ethernet br0 { - format_up = "E: %ip" - format_down = "E: down" -} - -# NOTE: use this if you are using a laptop. -#wireless wlp3s0 { -#format_up = "W: (%quality at %essid) %ip" -#format_down = "W: down" -#} - -# NOTE: use this if you are using a laptop. -#battery 0 { -#format = "%status %percentage" -#format_down = "No battery" -#status_chr = "⚇ CHR" -#status_bat = "⚡ BAT" -#status_full = "☻ FULL" -#low_threshold = 10 -#} - -# NOTE: use this if you are using a laptop. -#battery 1 { -#format = "%status %percentage" -#format_down = "No battery" -#status_chr = "⚇ CHR" -#status_bat = "⚡ BAT" -#status_full = "☻ FULL" -#low_threshold = 10 -#} - -tztime local { - format = "%Y-%m-%d %H:%M" -} - -load { - format = "%1min" -} - -disk "/" { - format = "/ %free" -} - -disk "/home" { - format = "/home %free" -} - -volume master { - format = "♪: %volume" - device = "default" - mixer = "Master" - mixer_idx = 0 -} diff --git a/inputrc b/inputrc deleted file mode 100644 index 67b1389..0000000 --- a/inputrc +++ /dev/null @@ -1,8 +0,0 @@ - "\e[1~": beginning-of-line -"\e[4~": end-of-line -"\e[7~": beginning-of-line -"\e[8~": end-of-line -"\eOH": beginning-of-line -"\eOF": end-of-line -"\e[H": beginning-of-line -"\e[F": end-of-line diff --git a/install.sh b/install.sh index 224546d..851b133 100755 --- a/install.sh +++ b/install.sh @@ -1,101 +1,86 @@ #!/bin/bash +# Copyright (C) 2014-2019 Miquel Sabaté Solà <mikisabate@gmail.com> +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. -PROJECTS="$HOME/Projects" - -# If something goes wrong, get the f*ck out. set -e -# Initialize and update git submodules. -git submodule init -git submodule update - -# Install the files on this repo. -cp bashrc $HOME/.bashrc -cp bash_profile $HOME/.bash_profile -cp psqlrc $HOME/.psqlrc -cp valgrindrc $HOME/.valgrindrc -cp irbrc $HOME/.irbrc -cp gemrc $HOME/.gemrc -cp gitcompletion.sh $HOME/.gitcompletion.sh -cp gitconfig $HOME/.gitconfig -cp global.gitignore $HOME/.gitignore -cp agignore $HOME/.agignore -cp hgrc $HOME/.hgrc -cp hgcompletion.sh $HOME/.hgcompletion.sh -cp global.hgignore $HOME/.hgignore -cp tmux.conf $HOME/.tmux.conf -cp rake_completion $HOME/.rake_completion -cp rvmrc $HOME/.rvmrc -cp gnupg/gpg.conf $HOME/.gnupg/gpg.conf -cp gnupg/gpg-agent.conf $HOME/.gnupg/gpg-agent.conf -cp mbsyncrc $HOME/.mbsyncrc -chmod +x $HOME/.rake_completion - -# Some random scripts -cp -r bin $HOME/bin -rm -rf $HOME/bin/test -chmod +x $HOME/bin/* -sudo mv $HOME/bin/e /usr/bin/e - -# i3 and X stuff. An incomplete list of openSUSE packages that I need in order -# to have a good i3 environment is: i3 xlockmore dunst i3status nitrogen scrot -# breeze5-cursors konsole gpicview okular dmenu the_silver_searcher. -mkdir -p $HOME/.config/dunst $HOME/.i3 -cp i3/config $HOME/.i3/config -cp i3status.conf $HOME/.i3status.conf -cp inputrc $HOME/.inputrc -cp Xresources $HOME/.Xresources -cp xinitrc $HOME/.xinitrc -cp -r fonts $HOME/.fonts -cp config/dunst/dunstrc $HOME/.config/dunst/dunstrc - -# Make Caps Lock an extra control. -# sudo localectl set-x11-keymap es "" cat, 'ctrl:nocaps' -sudo localectl set-x11-keymap us "" us, 'ctrl:nocaps' - -# Wipe out the current vim config and replace it with this one. -rm -rf $HOME/.vim -rm -rf $HOME/.vimrc -cp -rf vim $HOME/.vim -cp vimrc $HOME/.vimrc +## +# First some checks: we need GNU Emacs and Vim because we are going to +# initialize them right after installing their files. + +if ! [ -x "$(command -v emacs)" ]; then + echo 'Error: GNU Emacs is not installed.' >&2 + exit 1 +fi + +if ! [ -x "$(command -v vim)" ]; then + echo 'Error: Vim is not installed.' >&2 + exit 1 +fi + +## +# Main procedure: link as many files as possible. + +ary=(.git .gitignore .gitmodules LICENSE *.gitignore *.yml *.org install.sh + update.sh .emacs.d .config .gnupg Images) +ignore="-name ${ary[0]}" +for i in "${ary[@]:1:${#ary[@]}}"; do + ignore+=" -or -name $i" +done + +for file in $(find "$(pwd)" -mindepth 1 -maxdepth 1 ! \( $ignore \)); do + # The -F and -f flags of ln suck. Let's rm all the way. + rm -rf "${HOME:?}/$(basename $file)" + ln -s "$file" "${HOME:?}/$(basename $file)" +done + +## +# And now let's go for the exceptional cases. + +# Link the global.gitignore file +rm "${HOME:?}/.gitignore" +ln -s global.gitignore "${HOME:?}/.gitignore" + +# Copy entries of some of the directories inside of maybe existing ones. +for i in Images .config .gnupg; do + mkdir -p "${HOME:?}/$i" + cp -r "$i"/* "${HOME:?}/$i/" +done + +# GNU Emacs: most files can be simply linked, the only exception being +# init.el. To know why check .emacs.d/README.org. +mkdir -p "${HOME:?}/.emacs.d" +for i in lisp org-templates snippets custom.el gtkrc init.org; do + rm -rf "${HOME:?}/.emacs.d/$i" + ln -s "$(readlink -f .emacs.d/$i)" "${HOME:?}/.emacs.d/$i" +done +rm -f "${HOME:?}/.emacs.d/init.elc" +cp .emacs.d/init.el "${HOME:?}/.emacs.d/init.el" +emacs -l "${HOME:?}/.emacs.d/init.el" --eval "(kill-emacs)" + +## +# Other stuff + +# Initialize Vim plugins. vim +PluginInstall +qall -# GNU Emacs -rm -rf $HOME/.emacs.d -mkdir -p $HOME/.emacs.d -cp emacs/custom.el $HOME/.emacs.d/custom.el -cp emacs/init.el $HOME/.emacs.d/init.el -ln -s emacs/init.org $HOME/.emacs.d/init.org - -# Update the style for KTE users (KWrite, Kate, KDevelop & Kile). Note that -# there are two configs: the global one and the KDE one. The KDE one assumes -# that all your KDE projects are stored in the `$HOME/Projects/kde` directory. -# The global one is installed in the $HOME directory. -mkdir -p $PROJECTS/kde -cp kte/kde.kateconfig $PROJECTS/kde/.kateconfig -cp kte/global.kateconfig $HOME/.kateconfig - # Download and install the g utility -cd /tmp +pushd /tmp rm -rf g git clone https://github.com/mssola/g cd g -cp g.sh $HOME/.g.sh -cp gcompletion.sh $HOME/.gcompletion.sh - -# Download and install the review utility -cat <<HERE - -We'll now proceed to install the Review utility. The Review utility will be -installed in /opt/review, that's why we ask for root permissions. - -HERE - -cd /tmp -rm -rf review -git clone https://github.com/mssola/review -cd review -./install.sh - -# Install the completion file for the `docker` command. -wget https://raw.githubusercontent.com/docker/docker/master/contrib/completion/bash/docker -O $HOME/.dockercompletion.sh +cp g.sh "${HOME:?}/.g.sh" +cp gcompletion.sh "${HOME:?}/.gcompletion.sh" +popd diff --git a/irbrc b/irbrc deleted file mode 100644 index 176ed74..0000000 --- a/irbrc +++ /dev/null @@ -1,46 +0,0 @@ -#!/usr/bin/env ruby -# -# Author: Miquel Sabaté -# http://github.com/mssola/dotfiles - - -require 'irb/completion' -require 'irb/ext/save-history' -require 'rubygems' -require 'pp' -require 'wirble' - - -# Colorize! -Wirble.init -Wirble.colorize - -# Simple prompt -IRB.conf[:PROMPT_MODE] = :SIMPLE - -# History -IRB.conf[:SAVE_HISTORY] = 100 -IRB.conf[:HISTORY_FILE] = File.expand_path('~/.irb_history') - -# Auto-indentation -IRB.conf[:AUTO_INDENT] = true - -# Use readline -IRB.conf[:USE_READLINE] = true - -# List object methods -def local_methods(obj = self) - (obj.methods - obj.class.superclass.instance_methods).sort -end - -# Reload this .irbrc -def reload! - load __FILE__ -end - -# Beautify ls -def ls - %x{ls}.split("\n") -end - -alias p pp diff --git a/kte/README.md b/kte/README.md deleted file mode 100644 index e86f4fa..0000000 --- a/kte/README.md +++ /dev/null @@ -1,36 +0,0 @@ - -## KTextEditor (KTE) - -This is the configuration for KTE users (KWrite, Kate, KDevelop and Kile). It -basically contains: - -1. Global indentation configs (`.kateconfig` files). -2. Color schemas. - -The `.kateconfig` files will get installed automatically through the -main `install.sh` script. The color schemas have to be imported manually -though, because it's not possible to predict the installation path. - -There are two `.kateconfig` files: - -1. The `global` one, that is installed in the `$HOME` directory. This one - defines the global indentation settings that differ from the default - settings as given in the configuration dialog (for me it's 4 spaces no - tabs). -2. The `kde` one, that is installed by default in the `$HOME/Projects/kde` - directory. This config file overrides the global one so the end config - matches the one required by the KDE style guide. - -My color schemas are the ones that you can find inside the `colors` directory. -It contains the following color schemas: - -1. `mssola`: my first personalized color schema (oh good ol' times :P). It's a - light color schema that is pretty similar to the old defaults from KDE. It - has not been ported to KDE Frameworks 5, and I don't really use it anymore. -2. `mssola-solarized`: a Dark Solarized-like schema. It has not been ported to - KDE Frameworks 5, even though I have plans to do it eventually. -3. `xoria256`: a port of the - [xoria256](http://www.vim.org/scripts/script.php?script_id=2140) schema. - It has not been fully ported, but it's in the works. This is the one that - I'm mostly using currently. - diff --git a/kte/colors/mssola-solarized.kateschema b/kte/colors/mssola-solarized.kateschema deleted file mode 100644 index 10b8882..0000000 --- a/kte/colors/mssola-solarized.kateschema +++ /dev/null @@ -1,6870 +0,0 @@ -[Default Item Styles - Schema mssola-solarized] -Alert=ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Base-N Integer=ff2aa198,ff002b36,,,,,-,ff2aa198,,--- -Character=ff2aa198,ff002b36,,,,,-,ff2aa198,,--- -Comment=ff586e75,ff002b36,,0,,,-,ff586e75,,--- -Data Type=ffb58900,ff002b36,,,,,-,ffb58900,,--- -Decimal/Value=ff2aa198,ff002b36,,,,,-,ff2aa198,,--- -Error=ffdc322f,ff002b36,,,1,,-,ffdc322f,,--- -Floating Point=ff2aa198,ff002b36,,,,,-,ff2aa198,,--- -Function=ff268bd2,ff002b36,,,,,-,ff268bd2,,--- -Keyword=ff859900,ff002b36,1,,,,-,ff859900,,--- -Normal=ff839496,ff93a1a1,,,,,-,ff073642,,--- -Others=ffcb4b16,ff002b36,,,,,-,ffcb4b16,,--- -Region Marker=ff6c71c4,ff002b36,1,,,,ff073642,ff6c71c4,,--- -String=ff2aa198,ff002b36,,,,,-,ff2aa198,,--- - -[Editor Colors] -Color Background=0,43,54 -Color Code Folding=148,202,239 -Color Highlighted Bracket=0,43,54 -Color Highlighted Line=0,43,54 -Color Icon Bar=7,54,66 -Color Indentation Line=210,210,210 -Color Line Number=88,110,117 -Color MarkType 1=0,0,255 -Color MarkType 2=255,0,0 -Color MarkType 3=255,255,0 -Color MarkType 4=255,0,255 -Color MarkType 5=160,160,164 -Color MarkType 6=0,255,0 -Color MarkType 7=255,0,0 -Color Modified Lines=88,110,117 -Color Replace Highlight=0,255,0 -Color Saved Lines=100,134,111 -Color Search Highlight=255,255,0 -Color Selection=7,54,66 -Color Separator=137,136,135 -Color Spelling Mistake Line=220,50,47 -Color Tab Marker=88,110,117 -Color Template Background=131,148,150 -Color Template Editable Placeholder=88,110,117 -Color Template Focused Editable Placeholder=101,123,131 -Color Template Not Editable Placeholder=7,54,66 -Color Word Wrap Marker=88,110,117 - -[Highlighting .desktop - Schema mssola-solarized] -.desktop:Comment=8,,,,,,,,,,--- -.desktop:Key=2,,,,,,,,,,--- -.desktop:Language=3,,,1,,,,,,,--- -.desktop:Normal Text=0,,,,,,,,,,--- -.desktop:Section=1,,,,,,,,,,--- - -[Highlighting 4GL - Schema mssola-solarized] -4GL:Alert=10,,,,,,,,,,--- -4GL:Char=6,,,,,,,,,,--- -4GL:Comment=8,,,,,,,,,,--- -4GL:Data Type=2,,,,,,,,,,--- -4GL:Decimal=3,,,,,,,,,,--- -4GL:Float=5,,,,,,,,,,--- -4GL:Hex=4,,,,,,,,,,--- -4GL:Keyword=1,,,,,,,,,,--- -4GL:Normal Text=0,,,,,,,,,,--- -4GL:Octal=4,,,,,,,,,,--- -4GL:Prep. Lib=9,,,,,,,,,,--- -4GL:Preprocessor=9,,,,,,,,,,--- -4GL:String=7,,,,,,,,,,--- -4GL:String Char=6,,,,,,,,,,--- -4GL:Symbol=0,,,,,,,,,,--- - -[Highlighting 4GL-PER - Schema mssola-solarized] -4GL-PER:Alert=10,,,,,,,,,,--- -4GL-PER:Char=6,,,,,,,,,,--- -4GL-PER:Comment=8,,,,,,,,,,--- -4GL-PER:Data Type=2,,,,,,,,,,--- -4GL-PER:Decimal=3,,,,,,,,,,--- -4GL-PER:Float=5,,,,,,,,,,--- -4GL-PER:Hex=4,,,,,,,,,,--- -4GL-PER:Keyword=1,,,,,,,,,,--- -4GL-PER:Normal Text=0,,,,,,,,,,--- -4GL-PER:Octal=4,,,,,,,,,,--- -4GL-PER:Prep. Lib=9,,,,,,,,,,--- -4GL-PER:Preprocessor=9,,,,,,,,,,--- -4GL-PER:String=7,,,,,,,,,,--- -4GL-PER:String Char=6,,,,,,,,,,--- -4GL-PER:Symbol=0,,,,,,,,,,--- - -[Highlighting ABAP - Schema mssola-solarized] -ABAP:Comment=8,,,,,,,,,,--- -ABAP:Keyword=1,,,,,,,,,,--- -ABAP:Normal Text=0,,,,,,,,,,--- -ABAP:Symbol=0,,,,,,,,,,--- - -[Highlighting ABC - Schema mssola-solarized] -ABC:Bar=6,ff0000ff,,,,,,,,,--- -ABC:Comment=8,,,,,,,,,,--- -ABC:Decoration=5,ff00bbaa,,,,,,,,,--- -ABC:Header=5,,,,,,,,,,--- -ABC:Lyrics=2,ff00bb00,,,,,,,,,--- -ABC:Normal Text=0,,,,,,,,,,--- -ABC:Notes=1,,,1,,,,,,,--- -ABC:Preprocessor=7,,,,1,,,,,,--- -ABC:Sharp=0,ff22bb66,,1,,,,,,,--- -ABC:Slur=2,,,1,,,,,,,--- -ABC:String=7,,,1,,,,,,,--- -ABC:Tuplet=2,ffbb00bb,,,,,,,,,--- - -[Highlighting AHDL - Schema mssola-solarized] -AHDL:Bit=3,,,,,,,,,,--- -AHDL:Char=6,,,,,,,,,,--- -AHDL:Comment=8,,,,,,,,,,--- -AHDL:Data Type=2,,,,,,,,,,--- -AHDL:Decimal=3,,,,,,,,,,--- -AHDL:Hex=4,,,,,,,,,,--- -AHDL:Keyword=1,,,,,,,,,,--- -AHDL:Normal Text=0,,,,,,,,,,--- -AHDL:Octal=4,,,,,,,,,,--- -AHDL:Operator=9,,,,,,,,,,--- -AHDL:Region Marker=12,,,,,,,,,,--- -AHDL:String=7,,,,,,,,,,--- - -[Highlighting AMPLE - Schema mssola-solarized] -AMPLE:Alert=10,,,,,,,,,,--- -AMPLE:Base Functions=0,ff0a7700,,,,,,,,,--- -AMPLE:CUI Functions=0,ff0a7700,,,,,,,,,--- -AMPLE:Char=6,,,,,,,,,,--- -AMPLE:Comment=8,,,,,,,,,,--- -AMPLE:DVE Functions=0,ff0a775c,,,,,,,,,--- -AMPLE:Data Type=2,,,,,,,,,,--- -AMPLE:Decimal=3,,,,,,,,,,--- -AMPLE:Error=13,,,,,,,,,,--- -AMPLE:Float=5,,,,,,,,,,--- -AMPLE:Keyword=1,,,,,,,,,,--- -AMPLE:Layout Functions=0,ff007720,,,,,,,,,--- -AMPLE:Normal Text=0,,,,,,,,,,--- -AMPLE:Prep. Lib=9,,,,,,,,,,--- -AMPLE:Preprocessor=9,,,,,,,,,,--- -AMPLE:Region Marker=12,,,,,,,,,,--- -AMPLE:Reserved Variables=0,ffff0000,,,,,,,,,--- -AMPLE:Schematic Functions=0,ff0a7701,,,,,,,,,--- -AMPLE:String=7,,,,,,,,,,--- -AMPLE:String Char=6,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting ANS-Forth94 - Schema mssola-solarized] -ANS-Forth94:Alert=10,,,,,,,,,,--- -ANS-Forth94:Block Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Block Keyword=1,,,,,,,,,,--- -ANS-Forth94:Char=6,,,,,,,,,,--- -ANS-Forth94:Comment=8,,,,,,,,,,--- -ANS-Forth94:Constant=2,,,,,,,,,,--- -ANS-Forth94:Core Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Core Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Number=4,,,,,,,,,,--- -ANS-Forth94:Exception Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Exception Keyword=1,,,,,,,,,,--- -ANS-Forth94:Facility Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Facility Keyword=1,,,,,,,,,,--- -ANS-Forth94:File Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:File Keyword=1,,,,,,,,,,--- -ANS-Forth94:Float=5,,,,,,,,,,--- -ANS-Forth94:Floating Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Floating Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Variable=2,,,,,,,,,,--- -ANS-Forth94:Memory Keyword=1,,,,,,,,,,--- -ANS-Forth94:Normal Text=0,,,,,,,,,,--- -ANS-Forth94:Obs Core Ext Keyword=1,ffff0000,,,,,,,,,--- -ANS-Forth94:Obs Tools Ext Keyword=1,ffff0000,,,,,,,,,--- -ANS-Forth94:Search Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Search Keyword=1,,,,,,,,,,--- -ANS-Forth94:Single Number=4,,,,,,,,,,--- -ANS-Forth94:String=7,,,,,,,,,,--- -ANS-Forth94:String Keyword=1,,,,,,,,,,--- -ANS-Forth94:Tools Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Tools Keyword=1,,,,,,,,,,--- -ANS-Forth94:Variable=2,,,,,,,,,,--- -ANS-Forth94:Word=11,,,,,,,,,,--- - -[Highlighting ANSI C89 - Schema mssola-solarized] -ANSI C89:Char=6,,,,,,,,,,--- -ANSI C89:Comment=8,,,,,,,,,,--- -ANSI C89:Data Type=2,,,,,,,,,,--- -ANSI C89:Decimal=3,,,,,,,,,,--- -ANSI C89:Float=5,,,,,,,,,,--- -ANSI C89:Hex=4,,,,,,,,,,--- -ANSI C89:Keyword=1,,,,,,,,,,--- -ANSI C89:Normal Text=0,,,,,,,,,,--- -ANSI C89:Octal=4,,,,,,,,,,--- -ANSI C89:Prep. Lib=9,,,,,,,,,,--- -ANSI C89:Preprocessor=9,,,,,,,,,,--- -ANSI C89:String=7,,,,,,,,,,--- -ANSI C89:String Char=6,,,,,,,,,,--- -ANSI C89:Symbol=0,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- - -[Highlighting ASN.1 - Schema mssola-solarized] -ASN.1:Comment=8,,,,,,,,,,--- -ASN.1:Data Type=2,,,,,,,,,,--- -ASN.1:Keyword=1,,,,,,,,,,--- -ASN.1:Normal Text=0,,,,,,,,,,--- - -[Highlighting ASP - Schema mssola-solarized] -ASP:ASP Text=0,,,,,,,,,,--- -ASP:Comment=8,,,,,,,,,,--- -ASP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -ASP:Decimal=3,,,,,,,,,,--- -ASP:Escape Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -ASP:Float=5,,,,,,,,,,--- -ASP:Function=1,ff0000ff,ff00ffff,0,0,,,,,,--- -ASP:HTML Comment=8,,,,,,,,,,--- -ASP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -ASP:Hex=4,,,,,,,,,,--- -ASP:Identifier=9,,,,,,,,,,--- -ASP:Keyword=1,,,,,,,,,,--- -ASP:Normal Text=0,,,,,,,,,,--- -ASP:Octal=4,,,,,,,,,,--- -ASP:Other=9,,,,,,,,,,--- -ASP:String=7,,,,,,,,,,--- -ASP:Types=2,,,,,,,,,,--- -ASP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting AVR Assembler - Schema mssola-solarized] -AVR Assembler:Binary=4,,,,,,,,,,--- -AVR Assembler:Char=6,,,,,,,,,,--- -AVR Assembler:Comment=8,,,,,,,,,,--- -AVR Assembler:Decimal=3,,,,,,,,,,--- -AVR Assembler:Float=5,,,,,,,,,,--- -AVR Assembler:Hex=4,,,,,,,,,,--- -AVR Assembler:Keyword=1,,,,,,,,,,--- -AVR Assembler:Label=11,,,,,,,,,,--- -AVR Assembler:Normal Text=0,,,,,,,,,,--- -AVR Assembler:Octal=4,,,,,,,,,,--- -AVR Assembler:Preprocessor=9,,,,,,,,,,--- -AVR Assembler:String=7,,,,,,,,,,--- -AVR Assembler:String Char=6,,,,,,,,,,--- -AVR Assembler:Symbol=0,,,,,,,,,,--- - -[Highlighting AWK - Schema mssola-solarized] -AWK:Builtin=0,ffcc8822,,,,,,,,,--- -AWK:CharClass=7,ff008080,,,,,,,,,--- -AWK:Comment=8,,,,,,,,,,--- -AWK:Custom=7,ff449944,,,,,,,,,--- -AWK:Decimal=3,,,,,,,,,,--- -AWK:Error=13,,,,,,,,,,--- -AWK:Escape=7,ff4a5704,,,,,,,,,--- -AWK:Field=2,,,,,,,,,,--- -AWK:Float=5,,,,,,,,,,--- -AWK:Function=11,,,,,,,,,,--- -AWK:Keyword=1,,,,,,,,,,--- -AWK:Normal=0,,,,,,,,,,--- -AWK:Operator=0,ffff80e0,,,,,,,,,--- -AWK:Regex=7,ff4a5704,,,,,,,,,--- -AWK:Regex Op=9,ffff80e0,,,,,,,,,--- -AWK:Special=1,ffff9225,,0,,,,,,,--- -AWK:String=7,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- - -[Highlighting ActionScript 2.0 - Schema mssola-solarized] -ActionScript 2.0:Char=6,,,,,,,,,,--- -ActionScript 2.0:Classes=0,ff660066,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Comment=8,,,,,,,,,,--- -ActionScript 2.0:Constants=0,ff003300,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Data Type=2,,,,,,,,,,--- -ActionScript 2.0:Decimal=3,,,,,,,,,,--- -ActionScript 2.0:Float=5,,,,,,,,,,--- -ActionScript 2.0:Function=11,,,,,,,,,,--- -ActionScript 2.0:Global Functions=0,ff006666,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Hex=4,,,,,,,,,,--- -ActionScript 2.0:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -ActionScript 2.0:Keyword=1,,,,,,,,,,--- -ActionScript 2.0:Normal Text=0,,,,,,,,,,--- -ActionScript 2.0:Octal=4,,,,,,,,,,--- -ActionScript 2.0:Properties=0,ff000033,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -ActionScript 2.0:String=7,,,,,,,,,,--- -ActionScript 2.0:String Char=6,,,,,,,,,,--- -ActionScript 2.0:Symbol=0,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Ada - Schema mssola-solarized] -Ada:Base-N=4,,,,,,,,,,--- -Ada:Char=6,,,,,,,,,,--- -Ada:Comment=8,,,,,,,,,,--- -Ada:Data Type=2,,,,,,,,,,--- -Ada:Decimal=3,,,,,,,,,,--- -Ada:Float=5,,,,,,,,,,--- -Ada:Keyword=1,,,,,,,,,,--- -Ada:Normal Text=0,,,,,,,,,,--- -Ada:Pragmas=1,ff0095ff,ffffffff,1,0,,,,,,--- -Ada:Region Marker=12,,,,,,,,,,--- -Ada:String=7,,,,,,,,,,--- -Ada:Symbol=0,,,,,,,,,,--- - -[Highlighting Alerts - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- - -[Highlighting Alerts_indent - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- - -[Highlighting Ansys - Schema mssola-solarized] -Ansys:APDLcmd=11,,,,,,,,,,--- -Ansys:AUX12cmds=11,,,,,,,,,,--- -Ansys:AUX15cmds=11,,,,,,,,,,--- -Ansys:AUX2cmds=11,,,,,,,,,,--- -Ansys:AUX3cmds=11,,,,,,,,,,--- -Ansys:Commands=9,,,,,,,,,,--- -Ansys:DBcmd=11,,,,,,,,,,--- -Ansys:DISPLAYcmds=11,,,,,,,,,,--- -Ansys:GRPH_cmds=11,,,,,,,,,,--- -Ansys:Keyword=1,,,,,,,,,,--- -Ansys:Labels=6,,,,,,,,,,--- -Ansys:MatProp=2,,,,,,,,,,--- -Ansys:Normal Text=0,,,,,,,,,,--- -Ansys:NumFloat=5,,,,,,,,,,--- -Ansys:NumInt=3,,,,,,,,,,--- -Ansys:OPTIMIZATIONcmds=11,,,,,,,,,,--- -Ansys:POST1Commands=11,,,,,,,,,,--- -Ansys:POST26Commands=11,,,,,,,,,,--- -Ansys:PREP7Commands=11,,,,,,,,,,--- -Ansys:PROBcmds=11,,,,,,,,,,--- -Ansys:REDUORDERcmds=11,,,,,,,,,,--- -Ansys:RUNSTATcmds=11,,,,,,,,,,--- -Ansys:SESSIONcmd=11,,,,,,,,,,--- -Ansys:SOLUCommands=11,,,,,,,,,,--- -Ansys:String=7,,,,,,,,,,--- -Ansys:comment=8,,,,,,,,,,--- -Ansys:error=13,,,,,,,,,,--- -Ansys:functions_arg=1,,,,,,,,,,--- -Ansys:parentesis_not_closed=12,,,,,,,,,,--- -Ansys:variable=9,,,,,,,,,,--- - -[Highlighting Apache Configuration - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Apache Configuration:Alert=13,,,,,,,,,,--- -Apache Configuration:Alternates=1,,,,,,,,,,--- -Apache Configuration:Attribute=9,,,,,,,,,,--- -Apache Configuration:Comment=8,,,,,,,,,,--- -Apache Configuration:Container=11,,,,,,,,,,--- -Apache Configuration:Directives=9,ff0000ff,ff0000ff,1,0,,,,,,--- -Apache Configuration:Float=5,,,,,,,,,,--- -Apache Configuration:Int=5,,,,,,,,,,--- -Apache Configuration:Normal Text=0,,,,,,,,,,--- -Apache Configuration:Other=6,,,,,,,,,,--- -Apache Configuration:String=7,,,,,,,,,,--- - -[Highlighting Asm6502 - Schema mssola-solarized] -Asm6502:Command=0,,,,,,,,,,--- -Asm6502:Comment=8,,,,,,,,,,--- -Asm6502:Data Type=2,,,,,,,,,,--- -Asm6502:Decimal=3,,,,,,,,,,--- -Asm6502:Hex=4,,,,,,,,,,--- -Asm6502:Keyword=1,,,,,,,,,,--- -Asm6502:Normal Text=0,,,,,,,,,,--- -Asm6502:Operator=9,,,,,,,,,,--- -Asm6502:Parameter=9,,,,,,,,,,--- -Asm6502:Preprocessor=9,,,,,,,,,,--- -Asm6502:String=7,,,,,,,,,,--- -Asm6502:Substitution=9,,,,,,,,,,--- - -[Highlighting Asterisk - Schema mssola-solarized] -Asterisk:Comment=8,,,,,,,,,,--- -Asterisk:Keyword=1,,,,,,,,,,--- -Asterisk:Label=11,,,,,,,,,,--- -Asterisk:Normal Text=0,,,,,,,,,,--- -Asterisk:String=7,,,,,,,,,,--- -Asterisk:Symbol=0,,,,,,,,,,--- - -[Highlighting AutoHotKey - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -AutoHotKey:Char=6,,,,,,,,,,--- -AutoHotKey:Commands=1,ffff6827,,,,,,,,,--- -AutoHotKey:Comment=8,,,,,,,,,,--- -AutoHotKey:Decimal=3,,,,,,,,,,--- -AutoHotKey:Directives=0,ff663300,,1,,,,,,,--- -AutoHotKey:Error=13,,,,,,,,,,--- -AutoHotKey:Float=5,,,,,,,,,,--- -AutoHotKey:Flow of control=1,ffff0900,,,,,,,,,--- -AutoHotKey:Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -AutoHotKey:Hex=4,,,,,,,,,,--- -AutoHotKey:Keys and buttons=0,ff2313d4,,,,,,,,,--- -AutoHotKey:Keywords=1,ffff6827,,,,,,,,,--- -AutoHotKey:Normal Text=0,,,,,,,,,,--- -AutoHotKey:Octal=4,,,,,,,,,,--- -AutoHotKey:Prep. Lib=9,,,,,,,,,,--- -AutoHotKey:Preprocessor=9,,,,,,,,,,--- -AutoHotKey:Region Marker=12,,,,,,,,,,--- -AutoHotKey:String=7,,,,,,,,,,--- -AutoHotKey:String Char=6,,,,,,,,,,--- -AutoHotKey:Symbol=0,,,,,,,,,,--- -AutoHotKey:Variables=1,ff5127b2,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting B-Method - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -B-Method:Comment=8,,,,,,,,,,--- -B-Method:Data Type=2,,,,,,,,,,--- -B-Method:Decimal=3,,,,,,,,,,--- -B-Method:Normal Text=0,,,,,,,,,,--- -B-Method:OperationKeyword=1,ff0000ff,,,,,,,,,--- -B-Method:SectionKeyword=1,ffff0000,,,,,,,,,--- - -[Highlighting Bash - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 2=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 3=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ffcc00cc,ff002b36,1,,,,,ff859900,,--- -Bash:Command=1,ffcc00cc,ff002b36,1,,,,,ff859900,,--- -Bash:Comment=8,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ffcc00cc,ff002b36,1,,,,,ff859900,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff4060ff,ff002b36,1,,,,,ff859900,,--- -Bash:String DoubleQ=7,,,,,,,,,,--- -Bash:String Escape=2,,,,,,,,,,--- -Bash:String SingleQ=7,,,,,,,,,,--- -Bash:String Transl.=7,,,,,,,,,,--- -Bash:Variable=9,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting BibTeX - Schema mssola-solarized] -BibTeX:Command=11,,,,,,,,,,--- -BibTeX:Comment=8,,,,,,,,,,--- -BibTeX:Entry=1,ff0000ff,,,,,,,,,--- -BibTeX:Error=10,,,,,,,,,,--- -BibTeX:Field=2,,,,,,,,,,--- -BibTeX:LatexCommand=6,,,,,,,,,,--- -BibTeX:Normal Text=0,,,,,,,,,,--- -BibTeX:Ref Key=9,,,,,,,,,,--- -BibTeX:String=7,,,,,,,,,,--- - -[Highlighting Boo - Schema mssola-solarized] -Boo:Builtin Function=2,,,,,,,,,,--- -Boo:Comment=8,,,,,,,,,,--- -Boo:Complex=9,,,,,,,,,,--- -Boo:Data Type=2,,,,,,,,,,--- -Boo:Definition Keyword=1,,,,,,,,,,--- -Boo:Float=5,,,,,,,,,,--- -Boo:Flow Control Keyword=1,,,,,,,,,,--- -Boo:Hex=9,,,,,,,,,,--- -Boo:Int=3,,,,,,,,,,--- -Boo:Long=9,,,,,,,,,,--- -Boo:Normal Text=0,,,,,,,,,,--- -Boo:Octal=9,,,,,,,,,,--- -Boo:Operator=0,ff000077,,,,,,,,,--- -Boo:Preprocessor=6,,,,,,,,,,--- -Boo:Raw String=7,,,,,,,,,,--- -Boo:Special Variable=9,,,,,,,,,,--- -Boo:String=7,,,,,,,,,,--- -Boo:String Char=6,,,,,,,,,,--- -Boo:String Substitution=0,,,,,,,,,,--- - -[Highlighting C - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C:Alert=10,,,,,,,,,,--- -C:Binary=4,,,,,,,,,,--- -C:Char=6,,,,,,,,,,--- -C:Comment=8,,,,,,,,,,--- -C:Data Type=2,,,,,,,,,,--- -C:Decimal=3,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,,,,,,,,,,--- -C:Hex=4,,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,,--- -C:Region Marker=12,ff6c71c4,ff002b36,1,,,,ff002b36,ff6c71c4,,--- -C:String=7,,,,,,,,,,--- -C:String Char=6,,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting C# - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C#:Char=6,,,,,,,,,,--- -C#:Comment=8,,,,,,,,,,--- -C#:Data Type=2,,,,,,,,,,--- -C#:Decimal=3,,,,,,,,,,--- -C#:Float=5,,,,,,,,,,--- -C#:Function=11,,,,,,,,,,--- -C#:Hex=4,,,,,,,,,,--- -C#:Keyword=1,,,,,,,,,,--- -C#:Normal Text=0,,,,,,,,,,--- -C#:Octal=4,,,,,,,,,,--- -C#:String=7,,,,,,,,,,--- -C#:String Char=6,,,,,,,,,,--- -C#:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting C++ - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,ff586e75,ff002b36,,,,,,ff586e75,,--- -C++:Data Type=2,ffa40000,ff00316e,1,,,,,ffb58900,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff586e75,ff002b36,,0,,,,ff586e75,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,ff9c0e0e,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,0,,,,ff586e75,,--- -Doxygen:Entities=9,ff4086c0,ff002b36,1,0,,,,ffcb4b16,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,0,,,,ff586e75,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,0,,,,ff586e75,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting C++11 - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++11:Attribute=1,,,0,1,,,,,,--- -C++11:Binary=4,,,,,,,,,,--- -C++11:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++11:CONSTS/MACROS=0,,,,,,,,,,--- -C++11:Char=6,,,,,,,,,,--- -C++11:Comment=8,,,,,,,,,,--- -C++11:Data Members (m_*)=0,,,,,,,,,,--- -C++11:Data Type=2,,,,,,,,,,--- -C++11:Decimal=3,,,,,,,,,,--- -C++11:Error=13,,,,,,,,,,--- -C++11:Float=5,,,,,,,,,,--- -C++11:Globals (g_*)=0,,,,,,,,,,--- -C++11:Hex=4,,,,,,,,,,--- -C++11:Internals=0,ff808080,ff808080,,,,,,,,--- -C++11:Keyword=1,,,,,,,,,,--- -C++11:Normal Text=0,,,,,,,,,,--- -C++11:Octal=4,,,,,,,,,,--- -C++11:Prep. Lib=9,,,,,,,,,,--- -C++11:Preprocessor=9,,,,,,,,,,--- -C++11:Region Marker=12,,,,,,,,,,--- -C++11:Separator Symbol=0,,,,,,,,,,--- -C++11:Standard Attribute=1,,,0,1,,,,,,--- -C++11:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++11:Standard Macros=9,,,,,,,,,,--- -C++11:Statics (s_*)=0,,,,,,,,,,--- -C++11:String=7,,,,,,,,,,--- -C++11:String Char=6,,,,,,,,,,--- -C++11:Symbol=0,,,,,,,,,,--- -C++11:Type Modifiers=2,,,,,,,,,,--- -C++11:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting C++11/Qt4 - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++11/Qt4:Normal Text=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Classes=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Extensions=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Functions=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Macros=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Types=0,,,,,,,,,,--- -C++11:Attribute=1,,,0,1,,,,,,--- -C++11:Binary=4,,,,,,,,,,--- -C++11:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++11:CONSTS/MACROS=0,,,,,,,,,,--- -C++11:Char=6,,,,,,,,,,--- -C++11:Comment=8,,,,,,,,,,--- -C++11:Data Members (m_*)=0,,,,,,,,,,--- -C++11:Data Type=2,,,,,,,,,,--- -C++11:Decimal=3,,,,,,,,,,--- -C++11:Error=13,,,,,,,,,,--- -C++11:Float=5,,,,,,,,,,--- -C++11:Globals (g_*)=0,,,,,,,,,,--- -C++11:Hex=4,,,,,,,,,,--- -C++11:Internals=0,ff808080,ff808080,,,,,,,,--- -C++11:Keyword=1,,,,,,,,,,--- -C++11:Normal Text=0,,,,,,,,,,--- -C++11:Octal=4,,,,,,,,,,--- -C++11:Prep. Lib=9,,,,,,,,,,--- -C++11:Preprocessor=9,,,,,,,,,,--- -C++11:Region Marker=12,,,,,,,,,,--- -C++11:Separator Symbol=0,,,,,,,,,,--- -C++11:Standard Attribute=1,,,0,1,,,,,,--- -C++11:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++11:Standard Macros=9,,,,,,,,,,--- -C++11:Statics (s_*)=0,,,,,,,,,,--- -C++11:String=7,,,,,,,,,,--- -C++11:String Char=6,,,,,,,,,,--- -C++11:Symbol=0,,,,,,,,,,--- -C++11:Type Modifiers=2,,,,,,,,,,--- -C++11:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting CGiS - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CGiS:Alert=10,,,,,,,,,,--- -CGiS:Char=6,,,,,,,,,,--- -CGiS:Comment=8,,,,,,,,,,--- -CGiS:Data Type=2,,,,,,,,,,--- -CGiS:Decimal=3,,,,,,,,,,--- -CGiS:Float=5,,,,,,,,,,--- -CGiS:Hex=4,,,,,,,,,,--- -CGiS:Hint=9,,,,,,,,,,--- -CGiS:Keyword=1,,,,,,,,,,--- -CGiS:Normal Text=0,,,,,,,,,,--- -CGiS:Octal=4,,,,,,,,,,--- -CGiS:Region Marker=12,,,,,,,,,,--- -CGiS:String=7,,,,,,,,,,--- -CGiS:String Char=6,,,,,,,,,,--- -CGiS:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting CMake - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -CMake:Builtin CMake Variable=3,ffc09050,ffc09050,,,,,,,,--- -CMake:CMake Variable=3,,,,,,,,,,--- -CMake:Commands=1,,,,,,,,,,--- -CMake:Comment=8,,,,,,,,,,--- -CMake:Environment Variable=5,,,,,,,,,,--- -CMake:Escapes=6,,,,,,,,,,--- -CMake:Generator Expression=9,ffb86050,ffb86050,,,,,,,,--- -CMake:Generator Expression Keyword=1,ffb84040,ffb84040,,,,,,,,--- -CMake:Macros=11,,,,,,,,,,--- -CMake:Normal Text=0,,,,,,,,,,--- -CMake:Properties=9,,,,,,,,,,--- -CMake:Region Marker=12,,,,,,,,,,--- -CMake:Special Args=9,,,,,,,,,,--- -CMake:Strings=7,,,,,,,,,,--- -CMake:Third-Party Commands=11,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -reStructuredText:Bold=0,,,1,,,,,,,--- -reStructuredText:CMakeCode=2,,,,,,,,,,--- -reStructuredText:Citation=2,,,,,,,,,,--- -reStructuredText:Code=2,,,,,,,,,,--- -reStructuredText:CppCode=2,,,,,,,,,,--- -reStructuredText:Directive=2,,,,,,,,,,--- -reStructuredText:Field=11,,,,,,,,,,--- -reStructuredText:Footnote=2,,,,,,,,,,--- -reStructuredText:FootnoteReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkRefOrInterpretedText=9,,,,,,,,,,--- -reStructuredText:HyperlinkReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkTarget=2,,,,,,,,,,--- -reStructuredText:InlineInternalTarget=11,,,,,,,,,,--- -reStructuredText:InlineLiteral=2,,,,,,,,,,--- -reStructuredText:Italic=0,,,,1,,,,,,--- -reStructuredText:Monospaced=0,ff006600,,,,,,,,,--- -reStructuredText:Normal=0,,,,,,,,,,--- -reStructuredText:Role=0,,,1,,,,,,,--- -reStructuredText:SubstitutionDefinition=2,,,,,,,,,,--- -reStructuredText:SubstitutionReference=11,,,,,,,,,,--- - -[Highlighting CSS - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- - -[Highlighting CSS/PHP - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Alert=10,,,,,,,,,,--- -CSS/PHP:At Rule=3,,,,,,,,,,--- -CSS/PHP:Comment=8,,,,,,,,,,--- -CSS/PHP:Error=13,,,,,,,,,,--- -CSS/PHP:Important=1,,,,,,,,,,--- -CSS/PHP:Media=3,,,1,,,,,,,--- -CSS/PHP:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Property=1,,,,,,,,,,--- -CSS/PHP:Region Marker=12,,,,,,,,,,--- -CSS/PHP:Selector Attr=6,,,,,,,,,,--- -CSS/PHP:Selector Class=5,,,,,,,,,,--- -CSS/PHP:Selector Id=5,,,1,,,,,,,--- -CSS/PHP:Selector Pseudo=3,,,,,,,,,,--- -CSS/PHP:String=7,,,,,,,,,,--- -CSS/PHP:Unknown Property=1,,,,1,,,,,,--- -CSS/PHP:Value=2,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting CUE Sheet - Schema mssola-solarized] -CUE Sheet:Comment=8,,,,,,,,,,--- -CUE Sheet:Decimal=3,,,,,,,,,,--- -CUE Sheet:Flags=0,ff008000,,,,,,,,,--- -CUE Sheet:Format=0,ff800000,,,,,,,,,--- -CUE Sheet:Keyword=1,,,,,,,,,,--- -CUE Sheet:Mode=0,ff000080,,,,,,,,,--- -CUE Sheet:Normal Text=0,,,,,,,,,,--- -CUE Sheet:String=7,,,,,,,,,,--- - -[Highlighting Cg - Schema mssola-solarized] -Cg:Alert=10,,,,,,,,,,--- -Cg:Binding=1,,,,,,,,,,--- -Cg:Comment=8,,,,,,,,,,--- -Cg:Data Type=2,,,,,,,,,,--- -Cg:Decimal=3,,,,,,,,,,--- -Cg:Error=13,,,,,,,,,,--- -Cg:Fixed=5,,,,,,,,,,--- -Cg:Float=5,,,,,,,,,,--- -Cg:Function=11,,,0,,,,,,,--- -Cg:Half=5,,,,,,,,,,--- -Cg:Keyword=1,,,,,,,,,,--- -Cg:Normal Text=0,,,,,,,,,,--- -Cg:StdFunction=11,,,1,,,,,,,--- -Cg:Swizzle=0,,,1,,,,,,,--- -Cg:Symbol=0,,,,,,,,,,--- - -[Highlighting ChangeLog - Schema mssola-solarized] -ChangeLog:Date=2,,,,,,,,,,--- -ChangeLog:E-Mail=9,,,,,,,,,,--- -ChangeLog:Entry=3,,,,,,,,,,--- -ChangeLog:Name=1,,,,,,,,,,--- -ChangeLog:Normal Text=0,,,,,,,,,,--- - -[Highlighting Chicken - Schema mssola-solarized] -Chicken:BaseN=4,,,,,,,,,,--- -Chicken:Brackets1=0,ffff0000,ff000000,1,0,,,,,,--- -Chicken:Brackets2=0,ffff8800,ff000000,1,0,,,,,,--- -Chicken:Brackets3=0,ff888800,ff000000,1,0,,,,,,--- -Chicken:Brackets4=0,ff008800,ff000000,1,0,,,,,,--- -Chicken:Brackets5=0,ff000088,ff000000,1,0,,,,,,--- -Chicken:Brackets6=0,ff880088,ff000000,1,0,,,,,,--- -Chicken:Char=6,,,,,,,,,,--- -Chicken:Comment=8,,,,,,,,,,--- -Chicken:Data=2,,,,,,,,,,--- -Chicken:Decimal=3,,,,,,,,,,--- -Chicken:Definition=1,ffd22811,,,,,,,,,--- -Chicken:Float=5,,,,,,,,,,--- -Chicken:Function=11,,,,,,,,,,--- -Chicken:Keyword=1,,,,,,,,,,--- -Chicken:Normal=0,,,,,,,,,,--- -Chicken:Operator=1,ffd22811,,,,,,,,,--- -Chicken:Region Marker=12,,,,,,,,,,--- -Chicken:String=7,,,,,,,,,,--- - -[Highlighting Cisco - Schema mssola-solarized] -Cisco:Char=6,,,,,,,,,,--- -Cisco:Command=0,,,,,,,,,,--- -Cisco:Comment=8,,,,,,,,,,--- -Cisco:Decimal=3,,,,,,,,,,--- -Cisco:Float=5,,,,,,,,,,--- -Cisco:Keyword=1,,,,,,,,,,--- -Cisco:Normal Text=0,,,,,,,,,,--- -Cisco:Operator=9,,,,,,,,,,--- -Cisco:Parameter=9,,,,,,,,,,--- -Cisco:String=7,,,,,,,,,,--- -Cisco:Substitution=9,,,,,,,,,,--- - -[Highlighting CleanCSS - Schema mssola-solarized] -CleanCSS:Alert=10,,,,,,,,,,--- -CleanCSS:At Rule=3,,,,,,,,,,--- -CleanCSS:Comment=8,,,,,,,,,,--- -CleanCSS:Error=13,,,,,,,,,,--- -CleanCSS:Important=1,,,,,,,,,,--- -CleanCSS:Media=3,,,1,,,,,,,--- -CleanCSS:Normal Text=0,,,,,,,,,,--- -CleanCSS:Property=1,,,,,,,,,,--- -CleanCSS:Region Marker=12,,,,,,,,,,--- -CleanCSS:Selector Attr=6,,,,,,,,,,--- -CleanCSS:Selector Class=5,,,,,,,,,,--- -CleanCSS:Selector Id=5,,,1,,,,,,,--- -CleanCSS:Selector Pseudo=3,,,,,,,,,,--- -CleanCSS:String=7,,,,,,,,,,--- -CleanCSS:Unknown Property=1,,,,1,,,,,,--- -CleanCSS:Value=2,,,,,,,,,,--- - -[Highlighting Clipper - Schema mssola-solarized] -Clipper:Command=2,,,,,,,,,,--- -Clipper:Comment=8,,,,,,,,,,--- -Clipper:Decimal=3,,,,,,,,,,--- -Clipper:Eval Block=9,,,,,,,,,,--- -Clipper:Function=11,,,,,,,,,,--- -Clipper:Hex=4,,,,,,,,,,--- -Clipper:Keyword=1,,,,,,,,,,--- -Clipper:Normal Text=0,,,,,,,,,,--- -Clipper:Prep. Lib=9,,,,,,,,,,--- -Clipper:Preprocessor=9,,,,,,,,,,--- -Clipper:Region Marker=12,,,,,,,,,,--- -Clipper:String=7,,,,,,,,,,--- -Clipper:String Char=6,,,,,,,,,,--- -Clipper:Symbol=0,,,,,,,,,,--- - -[Highlighting Clojure - Schema mssola-solarized] -Clojure:BaseN=4,,,,,,,,,,--- -Clojure:Brackets=0,ff0000ff,ff00ff00,1,0,,,,,,--- -Clojure:Brackets1=0,ffff0000,ffffaa00,0,0,,,,,,--- -Clojure:Brackets2=0,ffff8800,ffffff00,0,0,,,,,,--- -Clojure:Brackets3=0,ff888800,ff888888,0,0,,,,,,--- -Clojure:Brackets4=0,ff008800,ff000000,0,0,,,,,,--- -Clojure:Brackets5=0,ff000088,ff000000,0,0,,,,,,--- -Clojure:Brackets6=0,ff880088,ff000000,0,0,,,,,,--- -Clojure:BracketsCurly=0,ff206620,ff219921,,,,,,,,--- -Clojure:BracketsSquare=0,ff3333ff,ff3333aa,,,,,,,,--- -Clojure:Char=6,,,,,,,,,,--- -Clojure:Comment=8,,,,,,,,,,--- -Clojure:Data=2,,,,,,,,,,--- -Clojure:Decimal=3,,,,,,,,,,--- -Clojure:Definition=1,ffd22811,,,,,,,,,--- -Clojure:Float=5,,,,,,,,,,--- -Clojure:Function=11,,,,,,,,,,--- -Clojure:Keyword=1,,,,,,,,,,--- -Clojure:Modifier=1,ff800000,,,,,,,,,--- -Clojure:Modifier2=1,ff555555,,,,,,,,,--- -Clojure:Normal=0,,,,,,,,,,--- -Clojure:Operator=1,ffd22811,,,,,,,,,--- -Clojure:Region Marker=12,,,,,,,,,,--- -Clojure:String=7,,,,,,,,,,--- -Clojure:Variable=1,ffb07e1f,,,,,,,,,--- - -[Highlighting CoffeeScript - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CoffeeScript:Accessor=2,,,,,,,,,,--- -CoffeeScript:Browser Globals=0,,,,,,,,,,--- -CoffeeScript:Class=2,,,1,,,,,,,--- -CoffeeScript:Comment=8,,,,,,,,,,--- -CoffeeScript:Decimal=3,,,,,,,,,,--- -CoffeeScript:Embedding=6,,,,,,,,,,--- -CoffeeScript:Float=5,,,,,,,,,,--- -CoffeeScript:Function=11,,,,,,,,,,--- -CoffeeScript:Globals=9,,,,,,,,,,--- -CoffeeScript:Hex=4,,,,,,,,,,--- -CoffeeScript:Identifier=0,,,,,,,,,,--- -CoffeeScript:Javascript=10,,,,1,,,,,,--- -CoffeeScript:Keyword=1,,,,,,,,,,--- -CoffeeScript:Node.js Globals=0,,,,,,,,,,--- -CoffeeScript:Normal=0,,,,,,,,,,--- -CoffeeScript:Oct=4,,,,,,,,,,--- -CoffeeScript:Regex=7,,,,,,,,,,--- -CoffeeScript:Reserved=10,,,,,,,,,,--- -CoffeeScript:String=7,,,,,,,,,,--- -CoffeeScript:Symbol=1,,,,,,,,,,--- -CoffeeScript:Value Keywords=9,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting ColdFusion - Schema mssola-solarized] -ColdFusion:Anchor Tags=0,ff008000,ffffffff,0,0,,,,,,--- -ColdFusion:Attribute Values=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Brackets=0,ff000080,ffffffff,1,0,,,,,,--- -ColdFusion:CF Comment=8,ffff9900,ff999999,0,0,,,,,,--- -ColdFusion:CF Tags=0,ff800000,ffffffff,0,0,,,,,,--- -ColdFusion:CFX Tags=0,ff008000,ffffffff,0,0,,,,,,--- -ColdFusion:Custom Tags=0,ffcc6666,ffffffff,0,0,,,,,,--- -ColdFusion:HTML Comment=8,ff008000,ff999999,0,0,,,,,,--- -ColdFusion:HTML Entities=0,ff000000,ffffffff,1,0,,,,,,--- -ColdFusion:Image Tags=0,ff800080,ffffffff,0,0,,,,,,--- -ColdFusion:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -ColdFusion:Numbers=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Comment=8,ffff9900,ff999999,0,0,,,,,,--- -ColdFusion:Script Functions=11,,,1,,,,,,,--- -ColdFusion:Script Keywords=0,ff0000cc,ffffffff,1,0,,,,,,--- -ColdFusion:Script Numbers=0,ffff00ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Objects=0,ff0000cc,ffffffff,1,0,,,,,,--- -ColdFusion:Script Operators=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Strings=0,ff008080,ffffffff,0,0,,,,,,--- -ColdFusion:Script Tags=0,ff800000,ffffffff,0,0,,,,,,--- -ColdFusion:Style Properties=0,ff000080,ffffffff,0,0,,,,,,--- -ColdFusion:Style Selectors=0,ffff00ff,ffffffff,0,0,,,,,,--- -ColdFusion:Style Tags=0,ff800080,ffffffff,0,0,,,,,,--- -ColdFusion:Style Values=0,ffff0000,ffffffff,0,0,,,,,,--- -ColdFusion:Table Tags=0,ff008080,ffffffff,0,0,,,,,,--- -ColdFusion:Tags=0,ff000080,ffffffff,0,0,,,,,,--- - -[Highlighting Common Lisp - Schema mssola-solarized] -Common Lisp:BaseN=4,,,,,,,,,,--- -Common Lisp:Brackets=0,ff0000ff,ff00ff00,1,0,,,,,,--- -Common Lisp:Char=6,,,,,,,,,,--- -Common Lisp:Comment=8,,,,,,,,,,--- -Common Lisp:Data=2,,,,,,,,,,--- -Common Lisp:Decimal=3,,,,,,,,,,--- -Common Lisp:Definition=1,ffd22811,,,,,,,,,--- -Common Lisp:Float=5,,,,,,,,,,--- -Common Lisp:Function=11,,,,,,,,,,--- -Common Lisp:Keyword=1,,,,,,,,,,--- -Common Lisp:Modifier=1,ff800000,,,,,,,,,--- -Common Lisp:Normal=0,,,,,,,,,,--- -Common Lisp:Operator=1,ffd22811,,,,,,,,,--- -Common Lisp:Region Marker=12,,,,,,,,,,--- -Common Lisp:String=7,,,,,,,,,,--- -Common Lisp:Variable=1,ffb07e1f,,,,,,,,,--- - -[Highlighting Component-Pascal - Schema mssola-solarized] -Component-Pascal:Attribute=9,,,,,,,,,,--- -Component-Pascal:Builtin=0,,,,,,,,,,--- -Component-Pascal:Char=6,,,,,,,,,,--- -Component-Pascal:CommentMaior=8,,,,,,,,,,--- -Component-Pascal:CommentMinor=8,,,,,,,,,,--- -Component-Pascal:Exit=1,,,,,,,,,,--- -Component-Pascal:ExportFull=9,,,,,,,,,,--- -Component-Pascal:ExportReadOnly=9,,,,,,,,,,--- -Component-Pascal:Float=5,,,,,,,,,,--- -Component-Pascal:Integer=4,,,,,,,,,,--- -Component-Pascal:Keyword=1,,,,,,,,,,--- -Component-Pascal:MemAlloc=1,,,,,,,,,,--- -Component-Pascal:Normal Text=0,,,,,,,,,,--- -Component-Pascal:Operator=0,,,,,,,,,,--- -Component-Pascal:Relation=0,,,,,,,,,,--- -Component-Pascal:SpecialValues=3,,,,,,,,,,--- -Component-Pascal:String=7,,,,,,,,,,--- -Component-Pascal:Type=2,,,,,,,,,,--- - -[Highlighting ConTeXt - Schema mssola-solarized] -ConTeXt:Alert=10,,,,,,,,,,--- -ConTeXt:Block=12,,,,,,,,,,--- -ConTeXt:Brace=6,,,,,,,,,,--- -ConTeXt:Comment=8,,,,,,,,,,--- -ConTeXt:Error=13,,,,,,,,,,--- -ConTeXt:Label Ref=12,,,,,,,,,,--- -ConTeXt:Macro=11,,,,,,,,,,--- -ConTeXt:Math=9,,,,,,,,,,--- -ConTeXt:Normal Text=0,,,,,,,,,,--- -ConTeXt:Section=1,,,,,,,,,,--- -ConTeXt:Verbatim=7,,,,,,,,,,--- - -[Highlighting Crack - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Crack:Annotation=1,,,,,,,,,,--- -Crack:Char=6,,,,,,,,,,--- -Crack:Comment=8,,,,,,,,,,--- -Crack:Data Type=2,,,,,,,,,,--- -Crack:Decimal=3,,,,,,,,,,--- -Crack:Float=5,,,,,,,,,,--- -Crack:Function=11,,,,,,,,,,--- -Crack:Hex=4,,,,,,,,,,--- -Crack:Keyword=1,,,,,,,,,,--- -Crack:Normal Text=0,,,,,,,,,,--- -Crack:Octal=4,,,,,,,,,,--- -Crack:Package=11,,,,,,,,,,--- -Crack:String=7,,,,,,,,,,--- -Crack:Substitution=9,,,,,,,,,,--- -Crack:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting CubeScript - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CubeScript:Brackets=0,,,1,,,,,,,--- -CubeScript:Comment=8,,,,,,,,,,--- -CubeScript:Error=13,,,,,,,,,,--- -CubeScript:Escaped=6,,,,,,,,,,--- -CubeScript:Float=5,,,,,,,,,,--- -CubeScript:Int10=3,,,,,,,,,,--- -CubeScript:IntOther=4,,,,,,,,,,--- -CubeScript:Key=9,,,,,,,,,,--- -CubeScript:Keyword=11,,,,,,,,,,--- -CubeScript:Lookup=2,,,,,,,,,,--- -CubeScript:LookupBrackets=12,,,,,,,,,,--- -CubeScript:Normal=0,,,,,,,,,,--- -CubeScript:Operator=1,,,,,,,,,,--- -CubeScript:String=7,,,,,,,,,,--- -CubeScript:String0=7,ff40ff80,,1,,,,ff3f3f3f,,,--- -CubeScript:String1=7,ff60a0ff,,1,,,,ffdfdfdf,,,--- -CubeScript:String2=7,ffffc040,,1,,,,ff3f3f3f,,,--- -CubeScript:String3=7,ffff4040,,1,,,,ffdfdfdf,,,--- -CubeScript:String4=7,ff808080,,1,,,,ffdfdfdf,,,--- -CubeScript:String5=7,ffa040a0,,1,,,,ffdfdfdf,,,--- -CubeScript:String6=7,ffff8000,,1,,,,ffdfdfdf,,,--- -CubeScript:String7=7,ffffffff,,1,,,,ff3f3f3f,,,--- - -[Highlighting Curry - Schema mssola-solarized] -Curry:Braces=0,,,,,,,,,,--- -Curry:Char=6,,,,,,,,,,--- -Curry:Comment=8,,,,,,,,,,--- -Curry:Currydoc=8,ff008000,ffffffff,,,,,,,,--- -Curry:Decimal=3,,,,,,,,,,--- -Curry:Float=5,,,,,,,,,,--- -Curry:Function=0,,,,,,,,,,--- -Curry:Hex=4,,,,,,,,,,--- -Curry:Infix Application=9,,,,,,,,,,--- -Curry:Keyword=1,,,,,,,,,,--- -Curry:Normal=0,,,,,,,,,,--- -Curry:Octal=4,,,,,,,,,,--- -Curry:Operator=11,,,,,,,,,,--- -Curry:Pragma=9,,,,,,,,,,--- -Curry:Prelude Constructor=1,,,,,,,,,,--- -Curry:Prelude Function=11,,,,,,,,,,--- -Curry:Prelude Type=2,,,,,,,,,,--- -Curry:Signature=9,,,,,,,,,,--- -Curry:Special Symbol=9,,,,,,,,,,--- -Curry:String=7,,,,,,,,,,--- -Curry:String Escape=6,,,,,,,,,,--- -Curry:Syntax Error=13,,,,,,,,,,--- -Curry:Type, Constructor=2,,,,,,,,,,--- - -[Highlighting D - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -D:Attribute=1,ff800080,,,,,,,,,--- -D:BQString=7,ffa100a1,ffff00ff,,,,,,,,--- -D:Binary=4,,,,,,,,,,--- -D:Char=6,,,,,,,,,,--- -D:Comment=8,,,,,,,,,,--- -D:Ddoc=8,ff7f7fff,,,,,,,,,--- -D:DdocCode=0,,,,1,,,,,,--- -D:DdocSection=1,ff7f7fff,,1,,,,,,,--- -D:Declarator=1,ff800000,,,,,,,,,--- -D:Deprecated=1,ff800080,,,,1,,,,,--- -D:Error=13,,,,,,,,,,--- -D:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -D:Expression=1,ff000080,,,,,,,,,--- -D:Float=5,,,,,,,,,,--- -D:Hex=4,,,,,,,,,,--- -D:HexString=7,ffa10022,ffff0055,,,,,,,,--- -D:Integer=3,,,,,,,,,,--- -D:LibrarySymbols=2,,,,1,,,,,,--- -D:Linkage=1,ff808000,,,,,,,,,--- -D:Linkage Type=0,,,1,,,,,,,--- -D:Macro Text=0,ffbf7fff,ffffffff,0,0,,,,,,--- -D:Macros=9,ffbf5fbf,ffffffff,1,0,,,,,,--- -D:Module=1,ff008000,,,,,,,,,--- -D:Module Name=0,ff008000,,,,,,,,,--- -D:Normal Text=0,,,,,,,,,,--- -D:Octal=4,,,,,,,,,,--- -D:Pragma=1,ff00aa00,,,,,,,,,--- -D:Property=2,ff000080,,,,,,,,,--- -D:RawString=7,ffa100a1,ffff00ff,,,,,,,,--- -D:Region Marker=12,,,,,,,,,,--- -D:SpecialTokens=0,ff00aa00,,,,,,,,,--- -D:Statement=1,,,,,,,,,,--- -D:String=7,,,,,,,,,,--- -D:Symbol=0,,,,,,,,,,--- -D:Template=1,ff008000,,,,,,,,,--- -D:Tests=1,ffff00ff,,,,,,,,,--- -D:Type=2,,,,,,,,,,--- -D:UserKeywords=2,,,,1,,,,,,--- -D:Version=1,ff808000,,,,,,,,,--- -D:Version Type=0,,,1,,,,,,,--- - -[Highlighting DTD - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -DTD:Comment=8,,,,,,,,,,--- -DTD:Declaration=2,,,1,,,,,,,--- -DTD:Delimiter=3,,,,,,,,,,--- -DTD:Entity=3,,,,,,,,,,--- -DTD:Keyword=1,,,,,,,,,,--- -DTD:Local=3,,,1,,,,,,,--- -DTD:Name=11,,,,,,,,,,--- -DTD:Normal=0,,,,,,,,,,--- -DTD:Other=0,,,,,,,,,,--- -DTD:Processing Instruction=1,,,,,,,,,,--- -DTD:String=7,,,,,,,,,,--- -DTD:Symbol=5,,,1,,,,,,,--- - -[Highlighting Debian Changelog - Schema mssola-solarized] -Debian Changelog:Bug=2,,,,,,,,,,--- -Debian Changelog:Data=2,,,,,,,,,,--- -Debian Changelog:Email=9,,,,,,,,,,--- -Debian Changelog:Keyword=1,,,,,,,,,,--- -Debian Changelog:Normal Text=0,,,,,,,,,,--- -Debian Changelog:Version=2,,,,,,,,,,--- - -[Highlighting Debian Control - Schema mssola-solarized] -Debian Control:Email=9,,,,,,,,,,--- -Debian Control:Keyword=1,,,,,,,,,,--- -Debian Control:Normal Text=0,,,,,,,,,,--- -Debian Control:Value=2,,,,,,,,,,--- -Debian Control:Variable=9,,,,,,,,,,--- -Debian Control:Version=3,,,,,,,,,,--- - -[Highlighting Diff - Schema mssola-solarized] -Diff:Added line=9,ffcb4b16,ff002b36,,,,,,ffcb4b16,,--- -Diff:Changed line (new)=9,ffcb4b16,ff002b36,,,,,,ffcb4b16,,--- -Diff:Changed line (old)=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -Diff:File=1,ff859900,ff002b36,1,,,,,ff859900,,--- -Diff:Header=2,ffb58900,ff002b36,,,,,,ffb58900,,--- -Diff:Normal Text=0,,,,,,,,,,--- -Diff:Removed line=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- - -[Highlighting Django HTML Template - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Django HTML Template:Attribute=9,,,,,,,,,,--- -Django HTML Template:CDATA=4,,,1,,,,,,,--- -Django HTML Template:Comment=8,,,,,,,,,,--- -Django HTML Template:Doctype=2,,,1,,,,,,,--- -Django HTML Template:Element=1,,,,,,,,,,--- -Django HTML Template:EntityRef=3,,,,,,,,,,--- -Django HTML Template:Error=13,,,,,,,,,,--- -Django HTML Template:Mismatched Block Tag=13,,,,,,,,,,--- -Django HTML Template:Normal Text=0,,,,,,,,,,--- -Django HTML Template:PEntityRef=3,,,,,,,,,,--- -Django HTML Template:Processing Instruction=1,,,,,,,,,,--- -Django HTML Template:Template Comment=8,,,,,,,,,,--- -Django HTML Template:Template Filter=9,,,,,,,,,,--- -Django HTML Template:Template String=7,,,,,,,,,,--- -Django HTML Template:Template Tag=11,,,,,,,,,,--- -Django HTML Template:Template Tag Argument=11,,,,,,,,,,--- -Django HTML Template:Template Var=11,,,,,,,,,,--- -Django HTML Template:Value=7,ffaa0000,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Doxygen - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting DoxygenLua - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- - -[Highlighting E Language - Schema mssola-solarized] -E Language:Action=0,ffff8080,ff00ff00,1,0,,,,,,--- -E Language:Bit=3,,,,,,,,,,--- -E Language:Comment=8,,,,,,,,,,--- -E Language:Data Type=2,,,,,,,,,,--- -E Language:Function=11,,,1,,,,,,,--- -E Language:Integer=3,,,,,,,,,,--- -E Language:Keyword=1,,,,,,,,,,--- -E Language:Normal Text=0,,,,,,,,,,--- -E Language:Operators=0,ff404000,ff00ff00,0,0,,,,,,--- -E Language:OutSide E code=8,,,,,,,,,,--- -E Language:Statement=0,ff8080ff,ff00ff00,1,0,,,,,,--- -E Language:Vector=7,,,,,,,,,,--- - -[Highlighting Eiffel - Schema mssola-solarized] -Eiffel:Assertions=9,,,,,,,,,,--- -Eiffel:Char=6,,,,,,,,,,--- -Eiffel:Comment=8,,,,,,,,,,--- -Eiffel:Decimal=3,,,,,,,,,,--- -Eiffel:Float=5,,,,,,,,,,--- -Eiffel:Keyword=1,,,,,,,,,,--- -Eiffel:Normal Text=0,,,,,,,,,,--- -Eiffel:Predefined entities=9,,,,,,,,,,--- -Eiffel:String=7,,,,,,,,,,--- - -[Highlighting Email - Schema mssola-solarized] -Email:Normal Text=0,,,,,,,,,,--- -Email:base64=12,,,,,,,,,,--- -Email:common=0,ffffd700,,,,,,,,,--- -Email:email=0,ff0000ff,,,,,,,,,--- -Email:indent1=0,ffff0000,,1,,,,,,,--- -Email:indent2=0,ff008000,,1,,,,,,,--- -Email:indent3=0,ff0000ff,,1,,,,,,,--- -Email:indent4=0,ff00ffff,,1,,,,,,,--- -Email:indent5=0,ffff00ff,,1,,,,,,,--- -Email:indent6=0,ffffff00,,1,,,,,,,--- -Email:marker=10,,,,,,,,,,--- -Email:other=0,ffff0000,,,,,,,,,--- -Email:rfc=0,ff006400,,,,,,,,,--- -Email:rfc-main=10,ff006400,,1,,,,,,,--- -Email:sign=8,,,,,,,,,,--- -Email:string=7,,,,,,,,,,--- - -[Highlighting Erlang - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Erlang:Atom=6,,,,,,,,,,--- -Erlang:Comment=8,,,,,,,,,,--- -Erlang:Float=5,,,,,,,,,,--- -Erlang:Function=11,,,,,,,,,,--- -Erlang:Integer=3,,,,,,,,,,--- -Erlang:Keyword=1,,,,,,,,,,--- -Erlang:Normal Text=0,,,,,,,,,,--- -Erlang:Number=4,,,,,,,,,,--- -Erlang:Operator=1,,,,,,,,,,--- -Erlang:Pragma=1,,,,,,,,,,--- -Erlang:Separator=11,,,,,,,,,,--- -Erlang:String=7,,,,,,,,,,--- -Erlang:Variable=2,,,,,,,,,,--- - -[Highlighting Error: /home/mssola/kde/share/apps/katepart/syntax/lilypond.xml - Schema mssola-solarized] -Normal Text=0,,,,,,,,,,--- - -[Highlighting Euphoria - Schema mssola-solarized] -Euphoria:Comment=8,,,,,,,,,,--- -Euphoria:Directive=9,,,,,,,,,,--- -Euphoria:GtkKeyword=1,,,,,,,,,,--- -Euphoria:Keyword=1,,,,,,,,,,--- -Euphoria:Normal Text=0,,,,,,,,,,--- -Euphoria:Number=3,,,,,,,,,,--- -Euphoria:Region Marker=12,,,,,,,,,,--- -Euphoria:String=7,,,,,,,,,,--- -Euphoria:Type=2,,,,,,,,,,--- - -[Highlighting FSharp - Schema mssola-solarized] -FSharp:Binary=4,,,,,,,,,,--- -FSharp:Camlp4 Quotation=7,,,,,,,,,,--- -FSharp:Character=6,,,,,,,,,,--- -FSharp:Comment=8,,,,,,,,,,--- -FSharp:Constructor=0,,,,,,,,,,--- -FSharp:Core Data Type=2,,,,,,,,,,--- -FSharp:Decimal=3,,,,,,,,,,--- -FSharp:Directive=9,,,,,,,,,,--- -FSharp:Escaped characters=6,,,,,,,,,,--- -FSharp:Float=5,,,,,,,,,,--- -FSharp:Hexadecimal=4,,,,,,,,,,--- -FSharp:Identifier=0,,,,,,,,,,--- -FSharp:Keyword=1,,,,,,,,,,--- -FSharp:Module=0,,,,,,,,,,--- -FSharp:Normal Text=0,,,,,,,,,,--- -FSharp:Octal=4,,,,,,,,,,--- -FSharp:Region Marker=1,,,,,,,,,,--- -FSharp:Revised Syntax Keyword=0,,,,,,,,,,--- -FSharp:String=7,,,,,,,,,,--- -FSharp:Symbol=0,,,,,,,,,,--- - -[Highlighting Fortran - Schema mssola-solarized] -Fortran:Comment=8,,,,,,,,,,--- -Fortran:Data Type=2,,,,,,,,,,--- -Fortran:Decimal=3,,,,,,,,,,--- -Fortran:Elemental Procedure=1,ff600060,ffffa0ff,1,0,,,,,,--- -Fortran:Float=5,,,,,,,,,,--- -Fortran:IO Function=11,ff006060,ffffffff,0,0,,,,,,--- -Fortran:Inquiry Function=11,ff000060,ffa0a0ff,1,1,,,,,,--- -Fortran:Keyword=1,,,,,,,,,,--- -Fortran:Logical=9,ff800080,ffffa0a0,1,0,,,,,,--- -Fortran:Non elemental subroutine=1,ff600060,ffffa0ff,1,0,,,,,,--- -Fortran:Normal Text=0,,,,,,,,,,--- -Fortran:Operator=1,ff008000,ffff00ff,1,0,,,,,,--- -Fortran:Preprocessor=9,,,,,,,,,,--- -Fortran:String=7,,,,,,,,,,--- -Fortran:Symbol=0,,,,,,,,,,--- -Fortran:Transformational Function=11,ff600060,ffffa0ff,1,0,,,,,,--- - -[Highlighting FreeBASIC - Schema mssola-solarized] -FreeBASIC:Comment=8,,,,,,,,,,--- -FreeBASIC:Constant=0,,,,,,,,,,--- -FreeBASIC:Data Types=2,,,,,,,,,,--- -FreeBASIC:Functions=11,,,,,,,,,,--- -FreeBASIC:Keyword=1,,,,,,,,,,--- -FreeBASIC:Normal Text=0,,,,,,,,,,--- -FreeBASIC:Number=3,,,,,,,,,,--- -FreeBASIC:Preprocessor=0,,,,,,,,,,--- -FreeBASIC:Region Marker=12,,,,,,,,,,--- -FreeBASIC:String=7,,,,,,,,,,--- - -[Highlighting GAP - Schema mssola-solarized] -GAP:Builtin Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -GAP:Commentary=8,ff009900,,,1,,,,,,--- -GAP:Control Statements=1,ffff0900,,,,,,,,,--- -GAP:Function=1,ffff6827,,,,,,,,,--- -GAP:GAP Keywords=1,ffff6827,,,,,,,,,--- -GAP:Incomplete String=6,ffa020f0,,,,,,,,,--- -GAP:Logic Operators=1,ff5127b2,,,,,,,,,--- -GAP:Math Operators=1,ff663333,,,,,,,,,--- -GAP:Normal Text=0,,,,,,,,,,--- -GAP:Number=5,,,,,,,,,,--- -GAP:Operator1=0,ff2313d4,,,,,,,,,--- -GAP:Operator2=0,ff663300,,1,,,,,,,--- -GAP:String=7,,,,,,,,,,--- -GAP:Variable=0,,,,,,,,,,--- - -[Highlighting GCCExtensions - Schema mssola-solarized] -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- - -[Highlighting GDB Backtrace - Schema mssola-solarized] -GDB Backtrace:Crash=13,,,1,,,,,,,--- -GDB Backtrace:File=2,,,,,,,,,,--- -GDB Backtrace:Function=11,,,1,,,,,,,--- -GDB Backtrace:Normal=0,,,,,,,,,,--- -GDB Backtrace:QualifiedIdentifier=9,,,,,,,,,,--- -GDB Backtrace:Thread=4,,,,,,,,,,--- - -[Highlighting GDL - Schema mssola-solarized] -GDL:Char=6,,,,,,,,,,--- -GDL:Comment=8,,,,,,,,,,--- -GDL:Datatype=2,,,,,,,,,,--- -GDL:Float=5,,,,,,,,,,--- -GDL:Integer=3,,,,,,,,,,--- -GDL:Keyword=1,,,,,,,,,,--- -GDL:Normal=0,,,,,,,,,,--- -GDL:String=7,,,,,,,,,,--- -GDL:Value=9,,,,,,,,,,--- - -[Highlighting GLSL - Schema mssola-solarized] -GLSL:Alert=10,,,,,,,,,,--- -GLSL:Comment=8,,,,,,,,,,--- -GLSL:Data Type=2,,,,,,,,,,--- -GLSL:Decimal=3,,,,,,,,,,--- -GLSL:Float=5,,,,,,,,,,--- -GLSL:Function=11,,,0,,,,,,,--- -GLSL:Hex=4,,,,,,,,,,--- -GLSL:Keyword=1,,,,,,,,,,--- -GLSL:Normal Text=0,,,,,,,,,,--- -GLSL:Octal=4,,,,,,,,,,--- -GLSL:Preprocessor=9,,,,,,,,,,--- -GLSL:StdFunction=11,,,1,,,,,,,--- -GLSL:StdVariable=11,,,0,,,,,,,--- -GLSL:Symbol=0,,,,,,,,,,--- -GLSL:Type Qualifier=2,,,,,,,,,,--- - -[Highlighting GNU Assembler - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -GNU Assembler:Binary=4,,,,,,,,,,--- -GNU Assembler:Char=6,,,,,,,,,,--- -GNU Assembler:Comment=8,,,,,,,,,,--- -GNU Assembler:Decimal=3,,,,,,,,,,--- -GNU Assembler:Float=5,,,,,,,,,,--- -GNU Assembler:Hex=4,,,,,,,,,,--- -GNU Assembler:Keyword=1,,,,,,,,,,--- -GNU Assembler:Label=1,,,,,,,,,,--- -GNU Assembler:Normal Text=0,,,,,,,,,,--- -GNU Assembler:Octal=4,,,,,,,,,,--- -GNU Assembler:Preprocessor=9,,,,,,,,,,--- -GNU Assembler:String=7,,,,,,,,,,--- -GNU Assembler:String Char=6,,,,,,,,,,--- -GNU Assembler:Symbol=0,,,,,,,,,,--- - -[Highlighting GNU Gettext - Schema mssola-solarized] -GNU Gettext:Automatic Comment=8,ff0000ff,,,,,,,,,--- -GNU Gettext:Char=6,ffff00ff,,,,,,,,,--- -GNU Gettext:CharPrevious=6,ff00c040,,,1,,,,,,--- -GNU Gettext:Entity=7,ffff0040,,1,,,,,,,--- -GNU Gettext:EntityPrevious=7,ff40c080,,1,1,,,,,,--- -GNU Gettext:Flag=8,ff0000ff,,,,,,,,,--- -GNU Gettext:FlagFuzzy=8,ff800080,,1,,,,,,,--- -GNU Gettext:Index=3,ff0000ff,,,,,,,,,--- -GNU Gettext:IndexPrevious=3,ff000000,,,1,,,,,,--- -GNU Gettext:Keyword=1,ff000000,,,,,,,,,--- -GNU Gettext:KeywordPrevious=1,ff006060,,,1,,,,,,--- -GNU Gettext:Normal Text=0,ff000000,,,,,,,,,--- -GNU Gettext:Reference=8,ff0000ff,,,,,,,,,--- -GNU Gettext:String=7,ffff0000,,,,,,,,,--- -GNU Gettext:StringDiffNew=7,ff0080f8,,,,,,,,,--- -GNU Gettext:StringDiffNewComment=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewPrevious=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewWrap=7,ff0080f8,,,,,,,,,--- -GNU Gettext:StringDiffNewWrapComment=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewWrapPrevious=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffOld=7,fff00080,,,,,,,,,--- -GNU Gettext:StringDiffOldComment=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldPrevious=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldWrap=7,fff00080,,,,,,,,,--- -GNU Gettext:StringDiffOldWrapComment=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldWrapPrevious=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringPrevious=7,ff008080,,,1,,,,,,--- -GNU Gettext:StringTag=7,ffc00000,,1,,,,,,,--- -GNU Gettext:StringTagPrevious=7,ff006060,,1,1,,,,,,--- -GNU Gettext:Translator Comment=8,ff888888,,,,,,,,,--- - -[Highlighting GNU Linker Script - Schema mssola-solarized] -GNU Linker Script:Command=1,,,,,,,,,,--- -GNU Linker Script:Comment=8,,,,,,,,,,--- -GNU Linker Script:Function=11,,,,,,,,,,--- -GNU Linker Script:Keyword=1,,,,,,,,,,--- -GNU Linker Script:Normal Text=0,,,,,,,,,,--- -GNU Linker Script:Number=4,,,,,,,,,,--- -GNU Linker Script:Section Name=6,,,,,,,,,,--- -GNU Linker Script:String=7,,,,,,,,,,--- - -[Highlighting GNU M4 - Schema mssola-solarized] -GNU M4:Builtins=1,,,,,,,,,,--- -GNU M4:Builtins (prefixed with m4_)=1,,,,,,,,,,--- -GNU M4:Commas=6,,,,,,,,,,--- -GNU M4:Comment=8,,,,,,,,,,--- -GNU M4:Int=3,,,,,,,,,,--- -GNU M4:Normal Text=0,,,,,,,,,,--- -GNU M4:Operators=6,,,,,,,,,,--- -GNU M4:Optional builtins=1,,,,,,,,,,--- -GNU M4:Optional builtins (prefixed with m4_)=1,,,,,,,,,,--- -GNU M4:Special arguments to macros=6,,,,,,,,,,--- - -[Highlighting Git Rebase - Schema mssola-solarized] -Git Rebase:Comment=8,,,,,,,,,,--- -Git Rebase:Commit=11,,,,,,,,,,--- -Git Rebase:Edit=2,,,,,,,,,,--- -Git Rebase:Exec=9,,,,,,,,,,--- -Git Rebase:Fixup=4,,,,,,,,,,--- -Git Rebase:Normal Text=0,,,,,,,,,,--- -Git Rebase:Pick=1,,,,,,,,,,--- -Git Rebase:Reword=3,,,,,,,,,,--- -Git Rebase:Squash=6,,,,,,,,,,--- -Git Rebase:Summary=7,,,,,,,,,,--- - -[Highlighting GlossTex - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GlossTex:Abbrev=9,,,,,,,,,,--- -GlossTex:Comment=8,,,,,,,,,,--- -GlossTex:Entry=1,ff0000ff,,,,,,,,,--- -GlossTex:Full=7,,,,,,,,,,--- -GlossTex:Label=2,,,,,,,,,,--- -GlossTex:Normal Text=0,,,,,,,,,,--- -GlossTex:Text=6,,,,,,,,,,--- -LaTeX:Alert=10,,,,,,,,,,--- -LaTeX:Ampersand=0,ff002793,,1,,,,,,,--- -LaTeX:Bullet=0,ffff00c4,,1,,,,,,,--- -LaTeX:Column Separator=0,ff002793,,,,,,,,,--- -LaTeX:Comment=8,,,,,,,,,,--- -LaTeX:Environment=0,ff0000d0,ffffff90,0,0,,,,,,--- -LaTeX:Error=10,,,,,,,,,,--- -LaTeX:Keyword=0,ff800000,ff60ffff,0,0,,,,,,--- -LaTeX:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -LaTeX:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -LaTeX:Normal Text=0,,,,,,,,,,--- -LaTeX:Option Text=0,,,,,,,,,,--- -LaTeX:Region Marker=12,,,,,,,,,,--- -LaTeX:Structure=0,fff00000,ff80ffd0,0,0,,,,,,--- -LaTeX:Structure Keyword=0,ff800000,ff60ffff,1,0,,,,,,--- -LaTeX:Structure Keyword Mathmode=0,ff606000,ffffd0ff,1,0,,,,,,--- -LaTeX:Structure Math=0,ff00a000,ffff40ff,1,0,,,,,,--- -LaTeX:Structure Text=0,ff000000,ffffffff,1,0,,,,,,--- -LaTeX:Verbatim=0,ffa08000,ff80d0ff,0,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting Gnuplot - Schema mssola-solarized] -Gnuplot:Comment=8,,,,,,,,,,--- -Gnuplot:Data Type=2,,,,,,,,,,--- -Gnuplot:Decimal=3,,,,,,,,,,--- -Gnuplot:FloatFunc=5,,,,,,,,,,--- -Gnuplot:Funktion=9,,,,,,,,,,--- -Gnuplot:Keyword=1,,,,,,,,,,--- -Gnuplot:Normal Text=0,,,,,,,,,,--- -Gnuplot:String=4,,,,,,,,,,--- - -[Highlighting Go - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 3=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Go:Builtin Function=11,,,,,,,,,,--- -Go:Char=6,,,,,,,,,,--- -Go:Comment=8,,,,,,,,,,--- -Go:Data Type=2,,,,,,,,,,--- -Go:Error=13,ffbf0303,ff9c0e0e,,,,,,,,--- -Go:Hex=4,,,,,,,,,,--- -Go:Keyword=1,,,,,,,,,,--- -Go:Normal Text=0,,,,,,,,,,--- -Go:Octal=4,,,,,,,,,,--- -Go:Predeclared Identifier=9,,,,,,,,,,--- -Go:String=7,,,,,,,,,,--- -Go:String Char=6,,,,,,,,,,--- -Go:Symbol=0,,,,,,,,,,--- - -[Highlighting HTML - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Haml - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Haml:Access Control=1,ff0000ff,,,,,,,,,--- -Haml:Alert=10,,,,,,,,,,--- -Haml:Attribute Definition=9,,,,,,,,,,--- -Haml:Bin=4,,,,,,,,,,--- -Haml:Blockcomment=8,,,,,,,,,,--- -Haml:Char=6,,,,,,,,,,--- -Haml:Class Variable=9,,,,,,,,,,--- -Haml:Command=7,ffaa3000,,,,,,,,,--- -Haml:Comment=8,,,,,,,,,,--- -Haml:Constant=2,,,,,,,,,,--- -Haml:Constant Value=2,ffbb1188,,,,,,,,,--- -Haml:Data=0,,,,,,,,,,--- -Haml:Dec=3,,,,,,,,,,--- -Haml:Default globals=2,ffc00000,,1,,,,,,,--- -Haml:Definition=1,,,,,,,,,,--- -Haml:Delimiter=6,,,,,,,,,,--- -Haml:Div Class=3,,,,,,,,,,--- -Haml:Div Id=3,,,1,,,,,,,--- -Haml:Doctype=2,,,1,,,,,,,--- -Haml:Element Class=5,,,,,,,,,,--- -Haml:Element Id=5,,,1,,,,,,,--- -Haml:Entity=3,,,,,,,,,,--- -Haml:Error=13,,,,,,,,,,--- -Haml:Expression=9,,,,,,,,,,--- -Haml:Filter=9,,,,,,,,,,--- -Haml:Float=5,,,,,,,,,,--- -Haml:GDL input=9,,,,,,,,,,--- -Haml:Global Constant=2,ffbb1188,,1,,,,,,,--- -Haml:Global Variable=2,ffc00000,,,,,,,,,--- -Haml:Hash=0,,,,,,,,,,--- -Haml:Hex=4,,,,,,,,,,--- -Haml:Instance Variable=9,,,,,,,,,,--- -Haml:Kernel methods=0,ff000080,ffffffff,,,,,,,,--- -Haml:Keyword=1,,,,,,,,,,--- -Haml:Member=0,,,,,,,,,,--- -Haml:Message=0,ff4000a7,,,,,,,,,--- -Haml:Normal Text=0,,,,,,,,,,--- -Haml:Octal=4,,,,,,,,,,--- -Haml:Operator=6,,,,,,,,,,--- -Haml:Pseudo variable=3,,,,,,,,,,--- -Haml:RDoc Value=9,,,,,,,,,,--- -Haml:Raw String=7,ffdd4a4a,ffdd4a4a,,,,,,,,--- -Haml:Region Marker=0,ff0000ff,,,,,,,,,--- -Haml:Regular Expression=9,ff4a5704,,,,,,,,,--- -Haml:Ruby Comment=8,,,,,,,,,,--- -Haml:Ruby Normal Text=0,,,,,,,,,,--- -Haml:String=0,,,,,,,,,,--- -Haml:Substitution=9,,,,,,,,,,--- -Haml:Symbol=2,,,,,,,,,,--- -Haml:Tag=1,,,,,,,,,,--- -Haml:Unquoted String=7,,,,,,,,,,--- - -[Highlighting Haskell - Schema mssola-solarized] -Haskell:C2HS Directive=7,,,,,,,,,,--- -Haskell:Char=6,,,,,,,,,,--- -Haskell:Class Prelude=1,,,,,,,,,,--- -Haskell:Comment=8,,,,,,,,,,--- -Haskell:Data Prelude=1,,,,,,,,,,--- -Haskell:Decimal=3,,,,,,,,,,--- -Haskell:EnumFromTo=9,,,,,,,,,,--- -Haskell:Float=5,,,,,,,,,,--- -Haskell:Function=0,,,,,,,,,,--- -Haskell:Function Infix=9,,,,,,,,,,--- -Haskell:Function Prelude=11,,,,,,,,,,--- -Haskell:Keyword=1,,,,,,,,,,--- -Haskell:Normal=0,,,,,,,,,,--- -Haskell:Operator=11,,,,,,,,,,--- -Haskell:Pragma=9,,,,,,,,,,--- -Haskell:Signature=9,,,,,,,,,,--- -Haskell:Special=9,,,,,,,,,,--- -Haskell:String=7,,,,,,,,,,--- -Haskell:Type=2,,,,,,,,,,--- -Haskell:Type Prelude=2,,,,,,,,,,--- - -[Highlighting Haxe - Schema mssola-solarized] -Haxe:Comment=8,,,,,,,,,,--- -Haxe:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -Haxe:Float=5,,,,,,,,,,--- -Haxe:Hex=4,,,,,,,,,,--- -Haxe:Integer=3,,,,,,,,,,--- -Haxe:Keyword=1,,,,,,,,,,--- -Haxe:Module=1,ff0000ff,ffffffff,,,,,,,,--- -Haxe:Module Name=0,ff0000ff,ffffffff,,,,,,,,--- -Haxe:Normal Text=0,,,,,,,,,,--- -Haxe:Preprocessor=9,,,,,,,,,,--- -Haxe:RawString=7,,,,,,,,,,--- -Haxe:String=7,,,,,,,,,,--- -Haxe:Type=2,,,,,,,,,,--- - -[Highlighting IDL - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -IDL:Alert=10,,,,,,,,,,--- -IDL:Char=6,,,,,,,,,,--- -IDL:Comment=8,,,,,,,,,,--- -IDL:Data Type=2,,,,,,,,,,--- -IDL:Decimal=3,,,,,,,,,,--- -IDL:Float=5,,,,,,,,,,--- -IDL:Hex=4,,,,,,,,,,--- -IDL:Keyword=1,,,,,,,,,,--- -IDL:Normal Text=0,,,,,,,,,,--- -IDL:Octal=4,,,,,,,,,,--- -IDL:Prep. Lib=9,,,,,,,,,,--- -IDL:Preprocessor=9,,,,,,,,,,--- -IDL:String=7,,,,,,,,,,--- -IDL:String Char=6,,,,,,,,,,--- -IDL:Symbol=0,,,,,,,,,,--- - -[Highlighting ILERPG - Schema mssola-solarized] -ILERPG:Alert=10,,,,,,,,,,--- -ILERPG:Base-N=4,,,,,,,,,,--- -ILERPG:Biff=1,,,,,,,,,,--- -ILERPG:BoldComment=0,ffcd853f,ff808080,1,1,,,,,,--- -ILERPG:Char=6,,,,,,,,,,--- -ILERPG:Comment=8,,,,,,,,,,--- -ILERPG:Constant=0,ffcc2222,ff000000,0,0,,,,,,--- -ILERPG:ConstantChar=0,ffdd0022,ff000000,0,0,,,,,,--- -ILERPG:Decimal=3,,,,,,,,,,--- -ILERPG:Directive=9,,,,,,,,,,--- -ILERPG:DivideComment=8,,,1,,,,,,,--- -ILERPG:Fill=0,ffff6347,ff000000,0,0,,,,,,--- -ILERPG:Float=5,,,,,,,,,,--- -ILERPG:Hex=4,,,,,,,,,,--- -ILERPG:Indicator=0,ffcc0000,ff000000,0,0,,,,,,--- -ILERPG:Keyword=1,,,,,,,,,,--- -ILERPG:Normal Text=0,,,,,,,,,,--- -ILERPG:Octal=4,,,,,,,,,,--- -ILERPG:RegExpr=4,,,,,,,,,,--- -ILERPG:Reserved=0,ffbb1133,ff000000,0,0,,,,,,--- -ILERPG:Symbol=0,,,,,,,,,,--- - -[Highlighting INI Files - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -INI Files:Assignment=9,,,,,,,,,,--- -INI Files:Comment=8,,,,,,,,,,--- -INI Files:Float=5,,,,,,,,,,--- -INI Files:Int=3,,,,,,,,,,--- -INI Files:Keyword=1,,,,,,,,,,--- -INI Files:Normal Text=2,,,,,,,,,,--- -INI Files:Section=1,,,,,,,,,,--- -INI Files:Value=7,,,,,,,,,,--- - -[Highlighting Inform - Schema mssola-solarized] -Inform:Actions=2,ffe06060,ff400000,0,0,,,,,,--- -Inform:Comment=8,ff707070,ffffffff,0,1,,,,,,--- -Inform:Function=11,,,,,,,,,,--- -Inform:Keyword=1,,,,,,,,,,--- -Inform:Normal Text=0,,,,,,,,,,--- -Inform:Number=3,ff5050c0,ff000000,0,0,,,,,,--- -Inform:OpCode=3,ff3015f0,ff000000,1,0,,,,,,--- -Inform:Operator=4,ffa01060,ff400040,0,0,,,,,,--- -Inform:Pragma=9,ff109010,ff400000,1,0,,,,,,--- -Inform:PredefFunction=11,,,,,,,,,,--- -Inform:String=7,ff007000,ff007000,0,0,,,,,,--- -Inform:Values=4,ff7020f0,ff400000,1,0,,,,,,--- -Inform:Word=7,ff007000,ff007000,0,1,,,,,,--- - -[Highlighting Intel x86 (FASM) - Schema mssola-solarized] -Intel x86 (FASM):BaseN=4,,,,,,,,,,--- -Intel x86 (FASM):Char=6,,,,,,,,,,--- -Intel x86 (FASM):Comment=8,,,,,,,,,,--- -Intel x86 (FASM):Data=2,,,,,,,,,,--- -Intel x86 (FASM):Float=5,,,,,,,,,,--- -Intel x86 (FASM):Instructions=1,,,,,,,,,,--- -Intel x86 (FASM):Label=11,,,,,,,,,,--- -Intel x86 (FASM):Normal Text=0,,,,,,,,,,--- -Intel x86 (FASM):Number=3,,,,,,,,,,--- -Intel x86 (FASM):Preprocessor=9,,,,,,,,,,--- -Intel x86 (FASM):Registers=1,,,,,,,,,,--- -Intel x86 (FASM):String=7,,,,,,,,,,--- - -[Highlighting Intel x86 (NASM) - Schema mssola-solarized] -Intel x86 (NASM):BaseN=4,,,,,,,,,,--- -Intel x86 (NASM):Char=6,,,,,,,,,,--- -Intel x86 (NASM):Comment=8,,,,,,,,,,--- -Intel x86 (NASM):Data=2,,,,,,,,,,--- -Intel x86 (NASM):Float=5,,,,,,,,,,--- -Intel x86 (NASM):Instructions=1,,,,,,,,,,--- -Intel x86 (NASM):Label=11,,,,,,,,,,--- -Intel x86 (NASM):NASM Keywords=1,,,,,,,,,,--- -Intel x86 (NASM):Normal Text=0,,,,,,,,,,--- -Intel x86 (NASM):Number=3,,,,,,,,,,--- -Intel x86 (NASM):Preprocessor=9,,,,,,,,,,--- -Intel x86 (NASM):Registers=1,,,,,,,,,,--- -Intel x86 (NASM):String=7,,,,,,,,,,--- - -[Highlighting JSON - Schema mssola-solarized] -JSON:Style_Decimal=3,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -JSON:Style_Error=13,,,,,,,,,,--- -JSON:Style_Float=5,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -JSON:Style_Keyword=3,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -JSON:Style_Normal=0,,,,,,,,,,--- -JSON:Style_Seperator_Array=0,ffb58900,ff002b36,,,,,,ffb58900,,--- -JSON:Style_Seperator_Pair=0,ffb58900,ff002b36,,,,,,ffb58900,,--- -JSON:Style_String_Key=2,ff2aa198,ff002b36,,,,,,ffb58900,,--- -JSON:Style_String_Key_Char=2,ff2aa198,ff002b36,,,,,,ffb58900,,--- -JSON:Style_String_Value=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -JSON:Style_String_Value_Char=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- - -[Highlighting JSP - Schema mssola-solarized] -JSP:Char=6,,,,,,,,,,--- -JSP:Comment=8,,,,,,,,,,--- -JSP:Decimal=3,,,,,,,,,,--- -JSP:Float=5,,,,,,,,,,--- -JSP:Hex=4,,,,,,,,,,--- -JSP:Html Comment=8,,,,,,,,,,--- -JSP:Identifier=9,,,,,,,,,,--- -JSP:Java 1.4.2 Classes=0,ff0095ff,ffffffff,1,0,,,,,,--- -JSP:Java Comment=8,,,,,,,,,,--- -JSP:Jsp Comment=8,,,,,,,,,,--- -JSP:Jsp Directive=0,ff0000ff,ff00ff00,1,1,,,,,,--- -JSP:Jsp Expression=0,ff000000,ffffffff,1,0,,,,,,--- -JSP:Jsp Param Name=9,,,,,,,,,,--- -JSP:Jsp Param Value=7,,,,,,,,,,--- -JSP:Jsp Scriptlet=0,ff000000,ffffffff,1,0,,,,,,--- -JSP:Keyword=1,,,,,,,,,,--- -JSP:Normal Text=0,,,,,,,,,,--- -JSP:Octal=4,,,,,,,,,,--- -JSP:String=7,,,,,,,,,,--- -JSP:String Char=6,,,,,,,,,,--- -JSP:Symbol=0,,,,,,,,,,--- -JSP:Types=2,,,,,,,,,,--- - -[Highlighting Jam - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ff880088,,,,,,,,,--- -Bash:Command=1,ffcc00cc,,,,,,,,,--- -Bash:Comment=8,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ff330033,,,,,,,,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff223388,,,,,,,,,--- -Bash:String DoubleQ=7,,,,,,,,,,--- -Bash:String Escape=2,,,,,,,,,,--- -Bash:String SingleQ=7,,,,,,,,,,--- -Bash:String Transl.=7,,,,,,,,,,--- -Bash:Variable=9,,,,,,,,,,--- -Jam:Action=0,,,,,,,,,,--- -Jam:ActionText=0,,,,,,,,,,--- -Jam:Alert=10,,,,,,,,,,--- -Jam:Comment=8,,,,,,,,,,--- -Jam:CommentTitle=8,ffff8c00,,1,,,,,,,--- -Jam:Error=13,,,,,,,,,,--- -Jam:EscapeSeq=7,ff800080,,1,,,,,,,--- -Jam:Keyword=1,,,1,,,,,,,--- -Jam:Normal=0,,,,,,,,,,--- -Jam:Operator=0,,,1,,,,,,,--- -Jam:Rule=11,ff000000,,,,,,,,,--- -Jam:String=7,ffff0000,,,,,,,,,--- -Jam:VarAssign=0,ff006400,,,,,,,,,--- -Jam:Variable=0,ff006400,,,,,,,,,--- -Jam:VariableAttribute=0,ff0000ff,,,,,,,,,--- -Jam:VariableDelimiter=0,ff0000ff,,,,,,,,,--- -Jam:Varname=0,ff006400,,,1,,,,,,--- -Jam:actionAttribute=0,,,,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Java - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -Java:Annotation=11,,,,,,,,,,--- -Java:Char=6,,,,,,,,,,--- -Java:Comment=8,,,,,,,,,,--- -Java:Data Type=2,,,,,,,,,,--- -Java:Decimal=3,,,,,,,,,,--- -Java:Float=5,,,,,,,,,,--- -Java:Function=11,,,,,,,,,,--- -Java:Hex=4,,,,,,,,,,--- -Java:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -Java:Java15=0,ff0095ff,ffffffff,1,0,,,,,,--- -Java:Keyword=1,,,,,,,,,,--- -Java:Normal Text=0,,,,,,,,,,--- -Java:Octal=4,,,,,,,,,,--- -Java:PrintfString=7,,,,,,,,,,--- -Java:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -Java:String=7,,,,,,,,,,--- -Java:String Char=6,,,,,,,,,,--- -Java:Symbol=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting JavaScript - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff859900,ff002b36,1,,,,,ff859900,,--- -Doxygen:Identifier=9,ff859900,ff002b36,1,,,,,ffcb4b16,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting JavaScript/PHP - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript/PHP:Char=6,,,,,,,,,,--- -JavaScript/PHP:Comment=8,,,,,,,,,,--- -JavaScript/PHP:Decimal=3,,,,,,,,,,--- -JavaScript/PHP:Float=5,,,,,,,,,,--- -JavaScript/PHP:Function=11,,,,,,,,,,--- -JavaScript/PHP:Hex=4,,,,,,,,,,--- -JavaScript/PHP:JSON=2,,,,,,,,,,--- -JavaScript/PHP:Keyword=1,,,,,,,,,,--- -JavaScript/PHP:Normal Text=0,,,,,,,,,,--- -JavaScript/PHP:Object Member=11,,,,,,,,,,--- -JavaScript/PHP:Objects=9,,,,,,,,,,--- -JavaScript/PHP:Octal=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Character Class=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript/PHP:Region Marker=12,,,,,,,,,,--- -JavaScript/PHP:Regular Expression=9,,,,,,,,,,--- -JavaScript/PHP:Reserved=1,,,,1,,,,,,--- -JavaScript/PHP:String=7,,,,,,,,,,--- -JavaScript/PHP:Symbol=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting JavaScript/PlasmaDesktop - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Javadoc - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Jira - Schema mssola-solarized] -Jira:Aqua=0,ff00ffff,,,,,,,,,--- -Jira:Blue=0,ff0000ff,,,,,,,,,--- -Jira:Bold=0,,,1,,,,,,,--- -Jira:Fuchsia=0,ffff00ff,,,,,,,,,--- -Jira:Gray=0,ff808080,,,,,,,,,--- -Jira:Green=0,ff008000,,,,,,,,,--- -Jira:Header=1,,,,,,,,,,--- -Jira:Italic=0,,,,1,,,,,,--- -Jira:Keyword=1,,,,,,,,,,--- -Jira:Lime=0,ff00ff00,,,,,,,,,--- -Jira:Maroon=0,ff800000,,,,,,,,,--- -Jira:Navy=0,ff000080,,,,,,,,,--- -Jira:Normal=0,,,,,,,,,,--- -Jira:Olive=0,ff808000,,,,,,,,,--- -Jira:Purple=0,ff800080,,,,,,,,,--- -Jira:Red=0,ffff0000,,,,,,,,,--- -Jira:Silver=0,ffc0c0c0,,,,,,,,,--- -Jira:Special Character=3,,,1,,,,,,,--- -Jira:Stroked Out=0,,,,,1,,,,,--- -Jira:Teal=0,ff008080,,,,,,,,,--- -Jira:Underlined=0,,,,,,,,,,--- -Jira:Yellow=0,ffffff00,,,,,,,,,--- - -[Highlighting Julia - Schema mssola-solarized] -Julia:Char=6,,,,,,,,,,--- -Julia:Comment=8,,,,,,,,,,--- -Julia:Data Type=2,,,,,,,,,,--- -Julia:Decimal=3,,,,,,,,,,--- -Julia:Delimiter=0,,,,,,,,,,--- -Julia:Float=5,,,,,,,,,,--- -Julia:FoldingComment=8,,,,,,,,,,--- -Julia:Hex=4,,,,,,,,,,--- -Julia:Incomplete Char=6,,,,,,,,,,--- -Julia:Keyword=1,,,,,,,,,,--- -Julia:Normal Text=0,,,,,,,,,,--- -Julia:Operator=0,,,,,,,,,,--- -Julia:String=7,,,,,,,,,,--- -Julia:System=4,,,,,,,,,,--- -Julia:Variable=0,,,,,,,,,,--- - -[Highlighting KBasic - Schema mssola-solarized] -KBasic:Comment=8,,,,,,,,,,--- -KBasic:Identifier=9,,,,,,,,,,--- -KBasic:Keyword=1,,,,,,,,,,--- -KBasic:Normal Text=0,,,,,,,,,,--- -KBasic:String=7,,,,,,,,,,--- -KBasic:Types=2,,,,,,,,,,--- - -[Highlighting KDev-PG\x5b-Qt\x5d Grammar - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Access=2,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstMember=0,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstMemberType=2,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstNode=11,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Code Segment=11,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Comment=8,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Decimal=3,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Error=13,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Float=5,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Keyword=1,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Location=9,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Normal Text=0,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:String=7,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:String Char=6,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Symbol=9,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Token=1,,,,,,,,,,--- - -[Highlighting Kate File Template - Schema mssola-solarized] -Kate File Template:Comment=8,,,,,,,ffeeeeee,,,--- -Kate File Template:Error=13,,,,,,,,,,--- -Kate File Template:Escape=9,,,,,,,,,,--- -Kate File Template:Header Keyword=1,,,,,,,ffeeeeee,,,--- -Kate File Template:Header Text=0,,,,,,,ffeeeeee,,,--- -Kate File Template:Keyword=1,,,,,,,,,,--- -Kate File Template:Macro=2,,,,,,,,,,--- -Kate File Template:Normal Text=0,,,,,,,,,,--- -Kate File Template:Property=3,,,1,,,,ffeeeeee,,,--- -Kate File Template:Property Value=7,,,,,,,ffeeeeee,,,--- - -[Highlighting LDIF - Schema mssola-solarized] -LDIF:AttributeType=1,ff404040,ffffffff,1,0,,,,,,--- -LDIF:Comment=8,ff808080,ff808080,0,0,,,,,,--- -LDIF:Description Keyword=1,ff000000,ffffffff,1,0,,,,,,--- -LDIF:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -LDIF:ObjectClass=1,ff800080,ffffffff,1,0,,,,,,--- -LDIF:Value (Encoded)=7,ffff8000,ff0080ff,0,0,,,,,,--- -LDIF:Value (Encrypted)=7,ffff0000,ff00ffff,0,0,,,,,,--- -LDIF:Value (Keyword)=7,ff008000,ff800080,1,0,,,,,,--- -LDIF:Value (Standard)=7,ff008000,ff008000,0,0,,,,,,--- -LDIF:Value (URL)=7,ff0000ff,ffffff00,0,0,,,,,,--- - -[Highlighting LESSCSS - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -LESSCSS:Alert=10,,,,,,,,,,--- -LESSCSS:At Rule=3,,,,,,,,,,--- -LESSCSS:Comment=8,,,,,,,,,,--- -LESSCSS:Error=13,,,,,,,,,,--- -LESSCSS:Important=1,,,,,,,,,,--- -LESSCSS:Media=3,,,1,,,,,,,--- -LESSCSS:Normal Text=0,,,,,,,,,,--- -LESSCSS:Property=1,,,,,,,,,,--- -LESSCSS:Region Marker=12,,,,,,,,,,--- -LESSCSS:Selector Attr=6,,,,,,,,,,--- -LESSCSS:Selector Class=5,,,,,,,,,,--- -LESSCSS:Selector Id=5,,,1,,,,,,,--- -LESSCSS:Selector Pseudo=3,,,,,,,,,,--- -LESSCSS:String=7,,,,,,,,,,--- -LESSCSS:Unknown Property=1,,,,1,,,,,,--- -LESSCSS:Value=2,,,,,,,,,,--- -LESSCSS:Variable=0,,,,,,,,,,--- - -[Highlighting LPC - Schema mssola-solarized] -LPC:Alert=10,,,,,,,,,,--- -LPC:Binary=4,,,,,,,,,,--- -LPC:Char=6,,,,,,,,,,--- -LPC:Closure=9,,,,,,,,,,--- -LPC:Datatype=2,,,,,,,,,,--- -LPC:Default=0,,,,,,,,,,--- -LPC:Floats=5,,,,,,,,,,--- -LPC:Hexadecimal=4,,,,,,,,,,--- -LPC:Integer=3,,,,,,,,,,--- -LPC:Keywords=1,,,,,,,,,,--- -LPC:Modifier=2,,,,,,,,,,--- -LPC:Multi-Line comments=8,,,,,,,,,,--- -LPC:Octal=4,,,,,,,,,,--- -LPC:Preprocessor=9,,,,,,,,,,--- -LPC:Preprocessor-Strings=7,,,,,,,,,,--- -LPC:Region Marker=12,,,,,,,,,,--- -LPC:Single-Line comments=8,,,,,,,,,,--- -LPC:Strings=7,,,,,,,,,,--- - -[Highlighting LSL - Schema mssola-solarized] -LSL:Alert=10,,,,,,,,,,--- -LSL:Brace=0,,,,,,,,,,--- -LSL:Comment=8,,,,,,,,,,--- -LSL:Constant=9,,,,,,,,,,--- -LSL:Data Type=2,,,,,,,,,,--- -LSL:Decimal=3,,,,,,,,,,--- -LSL:Event=9,,,,,,,,,,--- -LSL:Float=5,,,,,,,,,,--- -LSL:Function=11,,,,,,,,,,--- -LSL:Hex=4,,,,,,,,,,--- -LSL:Identifier=0,,,,,,,,,,--- -LSL:Keyword=1,,,,,,,,,,--- -LSL:Library Function=11,,,1,,,,,,,--- -LSL:Normal Text=0,,,,,,,,,,--- -LSL:String=7,,,,,,,,,,--- -LSL:Symbol=0,,,,,,,,,,--- - -[Highlighting LaTeX - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -LaTeX:Alert=10,,,,,,,,,,--- -LaTeX:Ampersand=0,ff002793,,1,,,,,,,--- -LaTeX:Bullet=0,ffff00c4,,1,,,,,,,--- -LaTeX:Column Separator=0,ff002793,,,,,,,,,--- -LaTeX:Comment=8,,,,,,,,,,--- -LaTeX:Environment=0,ff0000d0,ffffff90,0,0,,,,,,--- -LaTeX:Error=10,,,,,,,,,,--- -LaTeX:Keyword=0,ff9f0000,ff60ffff,1,0,,,,ff073642,,--- -LaTeX:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -LaTeX:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -LaTeX:Normal Text=0,,,,,,,,,,--- -LaTeX:Option Text=0,,,,,,,,,,--- -LaTeX:Region Marker=12,,,,,,,,,,--- -LaTeX:Structure=0,ff9f0000,ff80ffd0,1,0,,,,ff073642,,--- -LaTeX:Structure Keyword=0,ff9f0000,ff60ffff,1,0,,,,ff073642,,--- -LaTeX:Structure Keyword Mathmode=0,ff606000,ffffd0ff,1,0,,,,,,--- -LaTeX:Structure Math=0,ff00a000,ffff40ff,1,0,,,,,,--- -LaTeX:Structure Text=0,ff839496,ff93a1a1,,,,,,ff073642,,--- -LaTeX:Verbatim=0,ffa08000,ff80d0ff,0,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting Lex/Flex - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Lex/Flex:Alert=10,,,,,,,,,,--- -Lex/Flex:Backslash Code=7,,,1,,,,,,,--- -Lex/Flex:Comment=8,,,,,,,,,,--- -Lex/Flex:Content-Type Delimiter=4,,,1,,,,,,,--- -Lex/Flex:Definition=2,,,,,,,,,,--- -Lex/Flex:Directive=1,,,,,,,,,,--- -Lex/Flex:Normal Text=0,,,,,,,,,,--- -Lex/Flex:RegExpr=7,,,,,,,,,,--- - -[Highlighting Literate Curry - Schema mssola-solarized] -Curry:Braces=0,,,,,,,,,,--- -Curry:Char=6,,,,,,,,,,--- -Curry:Comment=8,,,,,,,,,,--- -Curry:Currydoc=8,ff008000,ffffffff,,,,,,,,--- -Curry:Decimal=3,,,,,,,,,,--- -Curry:Float=5,,,,,,,,,,--- -Curry:Function=0,,,,,,,,,,--- -Curry:Hex=4,,,,,,,,,,--- -Curry:Infix Application=9,,,,,,,,,,--- -Curry:Keyword=1,,,,,,,,,,--- -Curry:Normal=0,,,,,,,,,,--- -Curry:Octal=4,,,,,,,,,,--- -Curry:Operator=11,,,,,,,,,,--- -Curry:Pragma=9,,,,,,,,,,--- -Curry:Prelude Constructor=1,,,,,,,,,,--- -Curry:Prelude Function=11,,,,,,,,,,--- -Curry:Prelude Type=2,,,,,,,,,,--- -Curry:Signature=9,,,,,,,,,,--- -Curry:Special Symbol=9,,,,,,,,,,--- -Curry:String=7,,,,,,,,,,--- -Curry:String Escape=6,,,,,,,,,,--- -Curry:Syntax Error=13,,,,,,,,,,--- -Curry:Type, Constructor=2,,,,,,,,,,--- -Literate Curry:BirdTrack=9,,,,,,,,,,--- -Literate Curry:Comment=8,,,,,,,,,,--- -Literate Curry:Text=0,,,,,,,,,,--- - -[Highlighting Literate Haskell - Schema mssola-solarized] -Haskell:C2HS Directive=7,,,,,,,,,,--- -Haskell:Char=6,,,,,,,,,,--- -Haskell:Class Prelude=1,,,,,,,,,,--- -Haskell:Comment=8,,,,,,,,,,--- -Haskell:Data Prelude=1,,,,,,,,,,--- -Haskell:Decimal=3,,,,,,,,,,--- -Haskell:EnumFromTo=9,,,,,,,,,,--- -Haskell:Float=5,,,,,,,,,,--- -Haskell:Function=0,,,,,,,,,,--- -Haskell:Function Infix=9,,,,,,,,,,--- -Haskell:Function Prelude=11,,,,,,,,,,--- -Haskell:Keyword=1,,,,,,,,,,--- -Haskell:Normal=0,,,,,,,,,,--- -Haskell:Operator=11,,,,,,,,,,--- -Haskell:Pragma=9,,,,,,,,,,--- -Haskell:Signature=9,,,,,,,,,,--- -Haskell:Special=9,,,,,,,,,,--- -Haskell:String=7,,,,,,,,,,--- -Haskell:Type=2,,,,,,,,,,--- -Haskell:Type Prelude=2,,,,,,,,,,--- -Literate Haskell:BirdTrack=9,,,,,,,,,,--- -Literate Haskell:Comment=8,,,,,,,,,,--- -Literate Haskell:Text=0,,,,,,,,,,--- - -[Highlighting Logtalk - Schema mssola-solarized] -Logtalk:Built-in=1,,,,,,,,,,--- -Logtalk:Comment=8,,,,,,,,,,--- -Logtalk:Directive=1,,,,,,,,,,--- -Logtalk:Normal=0,,,,,,,,,,--- -Logtalk:Number=3,,,,,,,,,,--- -Logtalk:Operator=2,,,,,,,,,,--- -Logtalk:String=7,,,,,,,,,,--- -Logtalk:Variable=9,,,,,,,,,,--- - -[Highlighting Lua - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- -Lua:Alerts=10,,,,,,,,,,--- -Lua:BFunc=11,,,,,,,,,,--- -Lua:Comment=8,,,,,,,,,,--- -Lua:Constant=1,,,,,,,,,,--- -Lua:Control=1,ffa1a100,ffffffff,0,0,,,,,,--- -Lua:Error=13,,,,,,,,,,--- -Lua:Keyword=1,,,,,,,,,,--- -Lua:Normal Text=0,,,,,,,,,,--- -Lua:Numbers=3,,,,,,,,,,--- -Lua:Strings=7,,,,,,,,,,--- -Lua:Symbols=9,,,,,,,,,,--- -Lua:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting M3U - Schema mssola-solarized] -M3U:Comment=8,,,,,,,,,,--- -M3U:Descr=7,,,,,,,,,,--- -M3U:EXTINF=9,,,,,,,,,,--- -M3U:Lenght=3,,,,,,,,,,--- -M3U:M3USpec=1,,,,,,,,,,--- -M3U:Normal Text=0,,,,,,,,,,--- - -[Highlighting MAB-DB - Schema mssola-solarized] -MAB-DB:Comment=8,ff999999,ffffffff,1,1,,,,,,--- -MAB-DB:Database Header=1,ffff3322,ffffffff,1,0,,,,,,--- -MAB-DB:Header Medium=1,ff339922,ffffffff,1,0,,,,,,--- -MAB-DB:Header Piece=1,ff993322,ffffffff,1,0,,,,,,--- -MAB-DB:Mab Comment Description=8,ff3333ff,ffffffff,1,1,,,,,,--- -MAB-DB:Mab Comment Type=8,ffbb3333,ffffffff,1,1,,,,,,--- -MAB-DB:Mab I Field=1,ff330066,ffffffff,1,0,,,,,,--- -MAB-DB:Mab M Field=1,ff003366,ffffffff,1,0,,,,,,--- -MAB-DB:Normal Text=0,ffff0022,ffffffff,1,0,,,,,,--- - -[Highlighting MEL - Schema mssola-solarized] -MEL:Block comments=8,,,,,,,,,,--- -MEL:Data types=2,,,,,,,,,,--- -MEL:Expressions=9,,,,,,,,,,--- -MEL:Float values=5,,,,,,,,,,--- -MEL:Integer values=3,,,,,,,,,,--- -MEL:Keywords=1,,,,,,,,,,--- -MEL:Line comments=8,,,,,,,,,,--- -MEL:MEL commands=11,,,,,,,,,,--- -MEL:Normal Text=0,,,,,,,,,,--- -MEL:Operators=0,,,,,,,,,,--- -MEL:Strings=7,,,,,,,,,,--- -MEL:Variable names=4,,,,,,,,,,--- - -[Highlighting MIPS Assembler - Schema mssola-solarized] -MIPS Assembler:Char=6,,,,,,,,,,--- -MIPS Assembler:Comment=8,,,,,,,,,,--- -MIPS Assembler:Decimal=3,,,,,,,,,,--- -MIPS Assembler:Float=5,,,,,,,,,,--- -MIPS Assembler:Floating Point Register=5,,,,,,,,,,--- -MIPS Assembler:Hardware Instruction=1,,,,,,,,,,--- -MIPS Assembler:Hex=4,,,,,,,,,,--- -MIPS Assembler:Label=9,,,,,,,,,,--- -MIPS Assembler:Main Register=2,,,,,,,,,,--- -MIPS Assembler:Normal Text=0,,,,,,,,,,--- -MIPS Assembler:Octal=4,,,,,,,,,,--- -MIPS Assembler:Other Register=2,ff0000ff,,,,,,,,,--- -MIPS Assembler:Pseudo Instruction=11,,,,,,,,,,--- -MIPS Assembler:Region Marker=12,,,,,,,,,,--- -MIPS Assembler:Section=2,,,,,,,,,,--- -MIPS Assembler:String=7,,,,,,,,,,--- -MIPS Assembler:Type=1,,,,,,,,,,--- - -[Highlighting MS-DOS Batch - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -MS-DOS Batch:Builtin=1,,,,,,,,,,--- -MS-DOS Batch:Command=1,,,,,,,,,,--- -MS-DOS Batch:Comment=8,,,,,,,,,,--- -MS-DOS Batch:Echoed Text=0,,,,,,,,,,--- -MS-DOS Batch:Error=13,,,,,,,,,,--- -MS-DOS Batch:Escape=6,,,,,,,,,,--- -MS-DOS Batch:Keyword=1,,,,,,,,,,--- -MS-DOS Batch:Label=9,,,,,,,,,,--- -MS-DOS Batch:Normal Text=0,,,,,,,,,,--- -MS-DOS Batch:Number=3,,,,,,,,,,--- -MS-DOS Batch:Option=0,,,,,,,,,,--- -MS-DOS Batch:Path=0,,,,,,,,,,--- -MS-DOS Batch:Redirection=1,,,,,,,,,,--- -MS-DOS Batch:String=7,,,,,,,,,,--- -MS-DOS Batch:Variable=9,,,,,,,,,,--- - -[Highlighting Makefile - Schema mssola-solarized] -Makefile:Comment=8,,,,,,,,,,--- -Makefile:Error=13,,,,,,,,,,--- -Makefile:FuncParam=7,,,,,,,,,,--- -Makefile:Keyword=1,,,,,,,,,,--- -Makefile:Normal=0,,,,,,,,,,--- -Makefile:Operator=6,,,,,,,,,,--- -Makefile:Prereq=2,,,,,,,,,,--- -Makefile:Section=9,,,,,,,,,,--- -Makefile:Silent=11,,,,,,,,,,--- -Makefile:Special=5,,,,,,,,,,--- -Makefile:String=7,,,,,,,,,,--- -Makefile:Target=3,,,,,,,,,,--- -Makefile:Variable=2,,,,,,,,,,--- - -[Highlighting Mako - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Mako:Attribute=9,,,,,,,,,,--- -Mako:CDATA=4,,,1,,,,,,,--- -Mako:Comment=8,,,,,,,,,,--- -Mako:Doctype=2,,,1,,,,,,,--- -Mako:Element=1,,,,,,,,,,--- -Mako:EntityRef=3,,,,,,,,,,--- -Mako:Error=13,,,,,,,,,,--- -Mako:Flow Control Keyword=1,,,,,,,,,,--- -Mako:Mako=2,,,,,,,,,,--- -Mako:MakoKeyword=2,,,1,,,,,,,--- -Mako:MakoString=7,,,,,,,,,,--- -Mako:MakoVar=9,,,1,,,,,,,--- -Mako:Normal Text=0,,,,,,,,,,--- -Mako:PEntityRef=3,,,,,,,,,,--- -Mako:Processing Instruction=1,,,,,,,,,,--- -Mako:Value=7,ffaa0000,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting Markdown - Schema mssola-solarized] -Markdown:Normal Text=0,,,,,,,,,,--- -Markdown:autolink=9,,,,,,,,,,--- -Markdown:bl-emphasis=5,,,,1,,,,,,--- -Markdown:bl-strong=5,,,1,,,,,,,--- -Markdown:blockquote=2,,,,,,,,,,--- -Markdown:bq-emphasis=2,,,,1,,,,,,--- -Markdown:bq-strong=2,,,1,,,,,,,--- -Markdown:bullet=5,,,,,,,,,,--- -Markdown:code=4,,,,,,,,,,--- -Markdown:comment=8,,,,,,,,,,--- -Markdown:common=0,,,,,,,,,,--- -Markdown:emphasis=0,,,,1,,,,,,--- -Markdown:footnote=9,,,,1,,,,,,--- -Markdown:h1=11,,,1,,,,,,,--- -Markdown:h2=11,,,1,,,,,,,--- -Markdown:h3=11,,,1,,,,,,,--- -Markdown:h4=11,,,1,,,,,,,--- -Markdown:h5=11,,,1,,,,,,,--- -Markdown:h6=11,,,1,,,,,,,--- -Markdown:inlineimage=10,,,0,0,,,,,,--- -Markdown:inlinelink=9,,,,,,,,,,--- -Markdown:linebreak=0,ff999999,,,,,,,,,--- -Markdown:mailtolink=9,,,,,,,,,,--- -Markdown:meta=8,,,,,,,,,,--- -Markdown:nl-emphasis=5,,,,1,,,,,,--- -Markdown:nl-strong=5,,,1,,,,,,,--- -Markdown:numlist=5,,,,,,,,,,--- -Markdown:refimage=10,,,0,0,,,,,,--- -Markdown:reflink=9,,,,,,,,,,--- -Markdown:reflinktarget=9,,,0,0,,,,,,--- -Markdown:ruler=0,,,1,,,,,,,--- -Markdown:strikeout=0,,,,,1,,,,,--- -Markdown:strong=0,,,1,,,,,,,--- -Markdown:strongemphasis=0,,,1,1,,,,,,--- - -[Highlighting Mason - Schema mssola-solarized] -Mason:Char=6,,,,,,,,,,--- -Mason:Comment=8,,,,,,,,,,--- -Mason:Data Type=2,,,,,,,,,,--- -Mason:Decimal=3,,,,,,,,,,--- -Mason:Float=5,,,,,,,,,,--- -Mason:HTML=7,,,,,,,,,,--- -Mason:Hex=4,,,,,,,,,,--- -Mason:Keyword=1,,,,,,,,,,--- -Mason:Mason Method=1,,,,,,,,,,--- -Mason:Mason Tag=1,,,,,,,,,,--- -Mason:Octal=4,,,,,,,,,,--- -Mason:Pattern=9,,,,,,,,,,--- -Mason:String=7,,,,,,,,,,--- -Mason:String Char=6,,,,,,,,,,--- -Mason:Symbol=0,,,,,,,,,,--- -Mason:normal=0,,,,,,,,,,--- - -[Highlighting Matlab - Schema mssola-solarized] -Matlab:Comment=8,ff009900,,,,,,,,,--- -Matlab:Delimiter=0,,,,,,,,,,--- -Matlab:Incomplete String=6,ffa020f0,,,,,,,,,--- -Matlab:Keyword=0,ff0000ff,,,,,,,,,--- -Matlab:Normal Text=0,,,,,,,,,,--- -Matlab:Number=5,,,,,,,,,,--- -Matlab:Operator=0,,,,,,,,,,--- -Matlab:String=7,ffb20000,,,,,,,,,--- -Matlab:System=4,ffb28c00,,,,,,,,,--- -Matlab:Variable=0,,,,,,,,,,--- - -[Highlighting Maxima - Schema mssola-solarized] -Maxima:Comment=0,ff666666,,,,,,,,,--- -Maxima:Float=5,ff660066,,,,,,,,,--- -Maxima:Function=11,ff006666,,,,,,,,,--- -Maxima:Integer=3,ff0000cc,,,,,,,,,--- -Maxima:Keyword=1,ff000000,,1,,,,,,,--- -Maxima:Normal Text=0,ff000000,,,,,,,,,--- -Maxima:Quote=0,ff0000cc,,1,,,,,,,--- -Maxima:Special=0,ffcc0000,,1,,,,,,,--- -Maxima:String=7,ffcc0000,,,,,,,,,--- -Maxima:Variable=0,ff333366,,,1,,,,,,--- - -[Highlighting MediaWiki - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -MediaWiki:Bold=0,,,1,,,,,,,--- -MediaWiki:BoldItalic=0,,,1,1,,,,,,--- -MediaWiki:BoldItalicUnderlined=0,,,1,1,,,,,,--- -MediaWiki:BoldUnderlined=0,,,1,,,,,,,--- -MediaWiki:Comment=8,,,,,,,,,,--- -MediaWiki:DefinitionListHeader=1,,,,,,,,,,--- -MediaWiki:Error=13,,,,,,,,,,--- -MediaWiki:HtmlAttribute=9,,,,,,,,,,--- -MediaWiki:HtmlEntity=3,,,,,,,,,,--- -MediaWiki:HtmlTag=1,,,,,,,,,,--- -MediaWiki:HtmlValue=7,ffaa0000,,,,,,,,,--- -MediaWiki:Italic=0,,,,1,,,,,,--- -MediaWiki:ItalicUnderlined=0,,,,1,,,,,,--- -MediaWiki:Link=9,,,,,,,,,,--- -MediaWiki:LinkBold=9,,,1,,,,,,,--- -MediaWiki:LinkBoldItalic=9,,,1,1,,,,,,--- -MediaWiki:LinkBoldItalicUnderlined=9,,,1,1,,,,,,--- -MediaWiki:LinkBoldUnderlined=9,,,1,,,,,,,--- -MediaWiki:LinkItalic=9,,,,1,,,,,,--- -MediaWiki:LinkItalicUnderlined=9,,,,1,,,,,,--- -MediaWiki:LinkUnderlined=9,,,,,,,,,,--- -MediaWiki:NoWiki=0,,,,,,,,,,--- -MediaWiki:Normal=0,,,,,,,,,,--- -MediaWiki:Parameter=0,,,1,,,,,,,--- -MediaWiki:Section=1,,,,,,,,,,--- -MediaWiki:TemplateName=9,,,1,,,,,,,--- -MediaWiki:URL=9,,,,,,,,,,--- -MediaWiki:Underlined=0,,,,,,,,,,--- -MediaWiki:Unformatted=0,,,,,,,,,,--- -MediaWiki:WikiTag=3,,,1,,,,,,,--- -MediaWiki:WikiTagBold=3,,,1,,,,,,,--- -MediaWiki:WikiTagBoldItalic=3,,,1,1,,,,,,--- -MediaWiki:WikiTagBoldItalicUnderlined=3,,,1,1,,,,,,--- -MediaWiki:WikiTagBoldUnderlined=3,,,1,,,,,,,--- -MediaWiki:WikiTagItalic=3,,,1,1,,,,,,--- -MediaWiki:WikiTagItalicUnderlined=3,,,1,1,,,,,,--- -MediaWiki:WikiTagUnderlined=3,,,1,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Metapost/Metafont - Schema mssola-solarized] -Metapost/Metafont:Alert=10,,,,,,,,,,--- -Metapost/Metafont:BoolExp=1,ffaa00aa,ffffff00,0,1,,,,,,--- -Metapost/Metafont:Comment=8,,,,,,,,,,--- -Metapost/Metafont:Conditional=1,,,,,,,,,,--- -Metapost/Metafont:Decimal=3,,,,,,,,,,--- -Metapost/Metafont:Error=10,,,,,,,,,,--- -Metapost/Metafont:Float=5,,,,,,,,,,--- -Metapost/Metafont:Hex=4,,,,,,,,,,--- -Metapost/Metafont:Identifier=1,,,,,,,,,,--- -Metapost/Metafont:Keyword=0,ff800000,ff60ffff,0,0,,,,,,--- -Metapost/Metafont:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -Metapost/Metafont:Macro=1,ff770000,ff99ffff,0,0,,,,,,--- -Metapost/Metafont:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -Metapost/Metafont:Normal Text=0,,,,,,,,,,--- -Metapost/Metafont:NumExp=11,,,,,,,,,,--- -Metapost/Metafont:Octal=4,,,,,,,,,,--- -Metapost/Metafont:Operator=1,ff244cff,,0,,,,,,,--- -Metapost/Metafont:Special=1,ff008000,,0,,,,,,,--- -Metapost/Metafont:Statement=0,ff0000ff,ffffff00,0,0,,,,,,--- -Metapost/Metafont:String=7,,,,,,,,,,--- -Metapost/Metafont:TeX=0,,,,,,,,,,--- -Metapost/Metafont:Type=2,,,,,,,,,,--- -Metapost/Metafont:Variable=1,ff550022,,,,,,,,,--- - -[Highlighting Modelica - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Modelica:Class Type=1,,,,,,,,,,--- -Modelica:Comment=8,,,,,,,,,,--- -Modelica:Data Type=2,,,,,,,,,,--- -Modelica:Default Attribute=9,,,,,,,,,,--- -Modelica:Floating-Point Number=5,,,,,,,,,,--- -Modelica:Function=11,,,,,,,,,,--- -Modelica:Integer Number=3,,,,,,,,,,--- -Modelica:Keyword=1,,,,,,,,,,--- -Modelica:Normal Text=0,,,,,,,,,,--- -Modelica:String=7,,,,,,,,,,--- -Modelica:String Char=6,,,,,,,,,,--- -Modelica:Variable=0,,,,,,,,,,--- - -[Highlighting Modelines - Schema mssola-solarized] -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Modula-2 - Schema mssola-solarized] -Modula-2:Comment=8,,,,,,,,,,--- -Modula-2:Directive=9,,,,,,,,,,--- -Modula-2:Keyword=1,,,,,,,,,,--- -Modula-2:Normal Text=0,,,,,,,,,,--- -Modula-2:Number=3,,,,,,,,,,--- -Modula-2:String=7,,,,,,,,,,--- -Modula-2:Type=2,,,,,,,,,,--- - -[Highlighting MonoBasic - Schema mssola-solarized] -MonoBasic:Comment=8,ff008000,,,,,,,,,--- -MonoBasic:Keyword=1,ff000080,,0,,,,,,,--- -MonoBasic:Normal Text=0,,,,,,,,,,--- -MonoBasic:Preprocessor=9,ff008000,,,,,,,,,--- -MonoBasic:String=7,ff800000,,,,,,,,,--- -MonoBasic:Type=2,ff000080,,0,,,,,,,--- - -[Highlighting Motorola 68k (VASM/Devpac) - Schema mssola-solarized] -Motorola 68k (VASM/Devpac):Address Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):BaseN=4,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Char=6,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Comment=8,,,,0,,,,,,--- -Motorola 68k (VASM/Devpac):Constant=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Control Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Data Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Directives=9,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):FPU Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Float=5,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Instructions (CPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Instructions (FPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Label=11,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Local label=11,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Normal Text=0,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Number=3,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Operand sizes (CPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Operand sizes (FPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):String=7,,,,,,,,,,--- - -[Highlighting Motorola DSP56k - Schema mssola-solarized] -Motorola DSP56k:Address Registers=2,,,,,,,,,,--- -Motorola DSP56k:BaseN=4,,,,,,,,,,--- -Motorola DSP56k:Char=6,,,,,,,,,,--- -Motorola DSP56k:Comment=8,,,,0,,,,,,--- -Motorola DSP56k:Constant=2,,,,,,,,,,--- -Motorola DSP56k:Control Registers=2,,,,,,,,,,--- -Motorola DSP56k:Data Registers=2,,,,,,,,,,--- -Motorola DSP56k:Directives=9,,,1,,,,,,,--- -Motorola DSP56k:Float=5,,,,,,,,,,--- -Motorola DSP56k:Instructions=1,,,1,,,,,,,--- -Motorola DSP56k:Label=11,,,,,,,,,,--- -Motorola DSP56k:Local label=11,,,,,,,,,,--- -Motorola DSP56k:Memory=9,,,1,,,,,,,--- -Motorola DSP56k:Modifier Registers=2,,,,,,,,,,--- -Motorola DSP56k:Normal Text=0,,,,,,,,,,--- -Motorola DSP56k:Number=3,,,,,,,,,,--- -Motorola DSP56k:Offset Registers=2,,,,,,,,,,--- -Motorola DSP56k:String=7,,,,,,,,,,--- - -[Highlighting Music Publisher - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Music Publisher:Barline=3,ffcc6622,,,,,,,,,--- -Music Publisher:Comment=8,,,,,,,,,,--- -Music Publisher:Context=1,,,,,,,,,,--- -Music Publisher:Error=13,ff000000,,,,,,,,,--- -Music Publisher:Location=1,ff00cc44,,1,,,,,,,--- -Music Publisher:Location Probably=1,ff00cc44,,0,,,,,,,--- -Music Publisher:Lyrics=4,,,1,,,,,,,--- -Music Publisher:Macro=9,ff1111ff,ff11ffff,,,,,,,,--- -Music Publisher:Newscore=3,ffcc6622,,1,,,,,,,--- -Music Publisher:Normal Text=0,,,,,,,,,,--- -Music Publisher:Note=0,,,,,,,,,,--- -Music Publisher:Note Attribute=0,ff0077bb,,,1,,,,,,--- -Music Publisher:Parameter=6,,,,,,,,,,--- -Music Publisher:Print Command=4,,,,,,,,,,--- -Music Publisher:Special Char=1,,,,,,,,,,--- -Music Publisher:String=7,,,,,,,,,,--- -Music Publisher:String Error=13,,,,,,,,,,--- -Music Publisher:String Lyrics=7,ff880000,,,,,,,,,--- -Music Publisher:String Special=7,,,1,,,,,,,--- -Music Publisher:Tuplet=0,ff003355,,,,,,,,,--- -Music Publisher:Unset Command=5,,,1,,,,,,,--- -Music Publisher:Value=5,,,,,,,,,,--- - -[Highlighting Nagios - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Nagios:Comment=8,,,,,,,,,,--- -Nagios:Definition=1,,,,,,,,,,--- -Nagios:Definition Block=12,,,,,,,,,,--- -Nagios:Float=5,,,,,,,,,,--- -Nagios:Int=3,,,,,,,,,,--- -Nagios:Invalid Text=13,,,,,,,,,,--- -Nagios:Macro=11,,,,,,,,,,--- -Nagios:Macro Definition=11,,,,,,,,,,--- -Nagios:Normal Text=0,,,,,,,,,,--- -Nagios:Object=2,,,,,,,,,,--- -Nagios:Object Directive=0,,,,,,,,,,--- -Nagios:Symbol=9,,,,,,,,,,--- -Nagios:Value=7,,,,,,,,,,--- -Nagios:Variable=0,,,,,,,,,,--- - -[Highlighting Nemerle - Schema mssola-solarized] -Nemerle:Attribute=9,ff28712f,ff34923d,,,,,,,,--- -Nemerle:Comment=8,,,,,,,,,,--- -Nemerle:CompilationUnit=6,,,,,,,,,,--- -Nemerle:DataType=2,,,,,,,,,,--- -Nemerle:EscapeSequence=4,,,,,,,,,,--- -Nemerle:Keyword=1,,,,,,,,,,--- -Nemerle:Normal Text=0,,,,,,,,,,--- -Nemerle:Number=9,ff00009f,ff0000e9,,,,,,,,--- -Nemerle:Preprocessing=6,,,,,,,,,,--- -Nemerle:String=7,,,,,,,,,,--- -Nemerle:TypeDeclaration=9,ffeeb312,ff000000,1,,,,,,,--- - -[Highlighting None - Schema mssola-solarized] -Normal Text=0,,,,,,,,,,--- - -[Highlighting OORS - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -OORS:Alert=10,,,,,,,,,,--- -OORS:Backslash Code=7,,,1,,,,,,,--- -OORS:Comment=8,,,,,,,,,,--- -OORS:Content-Type Delimiter=4,,,1,,,,,,,--- -OORS:Data Type=2,,,,,,,,,,--- -OORS:Definition=0,,,,,,,,,,--- -OORS:Directive=1,,,,,,,,,,--- -OORS:Normal Text=0,,,,,,,,,,--- -OORS:Rule=7,,,,,,,,,,--- -OORS:String=7,,,,,,,,,,--- -OORS:String Char=6,,,,,,,,,,--- - -[Highlighting OPAL - Schema mssola-solarized] -OPAL:Comment=9,,,,,,,,,,--- -OPAL:Decimal=7,,,,,,,,,,--- -OPAL:Keyword=1,ff0000ff,,,,,,,,,--- -OPAL:Normal Text=0,,,,,,,,,,--- -OPAL:Sort=2,ff0000ff,,,,,,,,,--- -OPAL:String=7,,,,,,,,,,--- - -[Highlighting Objective Caml - Schema mssola-solarized] -Objective Caml:Binary=4,,,,,,,,,,--- -Objective Caml:Camlp4 Quotation=7,,,,,,,,,,--- -Objective Caml:Character=6,,,,,,,,,,--- -Objective Caml:Comment=8,,,,,,,,,,--- -Objective Caml:Constructor=2,,,,,,,,,,--- -Objective Caml:Core Data Type=2,,,,,,,,,,--- -Objective Caml:Decimal=3,,,,,,,,,,--- -Objective Caml:Directive=9,,,,,,,,,,--- -Objective Caml:Escaped characters=6,,,,,,,,,,--- -Objective Caml:Float=5,,,,,,,,,,--- -Objective Caml:Hexadecimal=4,,,,,,,,,,--- -Objective Caml:Identifier=0,,,,,,,,,,--- -Objective Caml:Keyword=1,,,,,,,,,,--- -Objective Caml:Module=0,,,,,,,,,,--- -Objective Caml:Normal Text=0,,,,,,,,,,--- -Objective Caml:Octal=4,,,,,,,,,,--- -Objective Caml:Region Marker=1,,,,,,,,,,--- -Objective Caml:Revised Syntax Keyword=0,,,,,,,,,,--- -Objective Caml:String=7,,,,,,,,,,--- -Objective Caml:Symbol=0,,,,,,,,,,--- - -[Highlighting Objective-C - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Objective-C:Char=6,,,,,,,,,,--- -Objective-C:Comment=8,,,,,,,,,,--- -Objective-C:Data Type=2,,,,,,,,,,--- -Objective-C:Decimal=3,,,,,,,,,,--- -Objective-C:Float=5,,,,,,,,,,--- -Objective-C:Hex=4,,,,,,,,,,--- -Objective-C:Keyword=1,,,,,,,,,,--- -Objective-C:Normal Text=0,,,,,,,,,,--- -Objective-C:Octal=4,,,,,,,,,,--- -Objective-C:Prep. Lib=9,,,,,,,,,,--- -Objective-C:Preprocessor=9,,,,,,,,,,--- -Objective-C:String=7,,,,,,,,,,--- -Objective-C:String Char=6,,,,,,,,,,--- -Objective-C:Symbol=0,,,,,,,,,,--- - -[Highlighting Objective-C++ - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Objective-C++:Char=6,,,,,,,,,,--- -Objective-C++:Comment=8,,,,,,,,,,--- -Objective-C++:Data Type=2,,,,,,,,,,--- -Objective-C++:Decimal=3,,,,,,,,,,--- -Objective-C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -Objective-C++:Float=5,,,,,,,,,,--- -Objective-C++:Hex=4,,,,,,,,,,--- -Objective-C++:Keyword=1,,,,,,,,,,--- -Objective-C++:Normal Text=0,,,,,,,,,,--- -Objective-C++:Octal=4,,,,,,,,,,--- -Objective-C++:Prep. Lib=9,,,,,,,,,,--- -Objective-C++:Preprocessor=9,,,,,,,,,,--- -Objective-C++:Region Marker=12,,,,,,,,,,--- -Objective-C++:String=7,,,,,,,,,,--- -Objective-C++:String Char=6,,,,,,,,,,--- -Objective-C++:Symbol=0,,,,,,,,,,--- - -[Highlighting Octave - Schema mssola-solarized] -Octave:Builtin=4,ffb28c00,,,,,,,,,--- -Octave:Commands=11,ffb28c00,,,,,,,,,--- -Octave:Comment=8,ff009900,,,,,,,,,--- -Octave:Delimiter=0,,,,,,,,,,--- -Octave:Forge=11,ff000099,ff009900,1,1,,,,,,--- -Octave:Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -Octave:Incomplete String=6,ffa020f0,,,,,,,,,--- -Octave:Keyword=0,ff0000ff,,,,,,,,,--- -Octave:Normal Text=0,,,,,,,,,,--- -Octave:Number=5,,,,,,,,,,--- -Octave:Operator=0,,,,,,,,,,--- -Octave:String=7,ffb20000,,,,,,,,,--- -Octave:String Char=6,,,,,,,,,,--- -Octave:Variable=0,,,,,,,,,,--- - -[Highlighting OpenCL - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -OpenCL:Alert=10,,,,,,,,,,--- -OpenCL:Char=6,,,,,,,,,,--- -OpenCL:Comment=8,,,,,,,,,,--- -OpenCL:Data Type=2,,,,,,,,,,--- -OpenCL:Decimal=3,,,,,,,,,,--- -OpenCL:Error=13,,,,,,,,,,--- -OpenCL:Float=5,,,,,,,,,,--- -OpenCL:Hex=4,,,,,,,,,,--- -OpenCL:Keyword=1,,,,,,,,,,--- -OpenCL:Normal Text=0,,,,,,,,,,--- -OpenCL:Octal=4,,,,,,,,,,--- -OpenCL:Prep. Lib=9,,,,,,,,,,--- -OpenCL:Preprocessor=9,,,,,,,,,,--- -OpenCL:Region Marker=12,,,,,,,,,,--- -OpenCL:String=7,,,,,,,,,,--- -OpenCL:String Char=6,,,,,,,,,,--- -OpenCL:Symbol=0,,,,,,,,,,--- - -[Highlighting PGN - Schema mssola-solarized] -PGN:Commentc=8,,,1,,,,,,,--- -PGN:Commentp=8,,,,,,,,,,--- -PGN:Keyword=1,,,1,,,,,,,--- -PGN:Normal Text=0,,,,,,,,,,--- -PGN:Number=3,ffbb00bb,,,,,,,,,--- -PGN:Piece=0,ff0095ff,,1,0,,,,,,--- -PGN:String=7,,,0,,,,,,,--- -PGN:Symbol=9,ff00bb00,,,,,,,,,--- - -[Highlighting PHP (HTML) - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 2=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 3=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Alert=10,,,,,,,,,,--- -CSS/PHP:At Rule=3,,,,,,,,,,--- -CSS/PHP:Comment=8,,,,,,,,,,--- -CSS/PHP:Error=13,ffdc322f,ff002b36,,,,,,ffdc322f,,--- -CSS/PHP:Important=1,,,,,,,,,,--- -CSS/PHP:Media=3,,,1,,,,,,,--- -CSS/PHP:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Property=1,,,,,,,,,,--- -CSS/PHP:Region Marker=12,,,,,,,,,,--- -CSS/PHP:Selector Attr=6,,,,,,,,,,--- -CSS/PHP:Selector Class=5,,,,,,,,,,--- -CSS/PHP:Selector Id=5,,,1,,,,,,,--- -CSS/PHP:Selector Pseudo=3,,,,,,,,,,--- -CSS/PHP:String=7,,,,,,,,,,--- -CSS/PHP:Unknown Property=1,,,,1,,,,,,--- -CSS/PHP:Value=2,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,ffdc322f,ff002b36,,,,,,ffdc322f,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff859900,ff002b36,1,,,,,ff859900,,--- -Doxygen:Identifier=9,ff859900,ff002b36,1,,,,,ffcb4b16,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,ffdc322f,ff002b36,,,,,,ffdc322f,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -JavaScript/PHP:Char=6,,,,,,,,,,--- -JavaScript/PHP:Comment=8,,,,,,,,,,--- -JavaScript/PHP:Decimal=3,,,,,,,,,,--- -JavaScript/PHP:Float=5,,,,,,,,,,--- -JavaScript/PHP:Function=11,,,,,,,,,,--- -JavaScript/PHP:Hex=4,,,,,,,,,,--- -JavaScript/PHP:JSON=2,,,,,,,,,,--- -JavaScript/PHP:Keyword=1,,,,,,,,,,--- -JavaScript/PHP:Normal Text=0,,,,,,,,,,--- -JavaScript/PHP:Object Member=11,,,,,,,,,,--- -JavaScript/PHP:Objects=9,,,,,,,,,,--- -JavaScript/PHP:Octal=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Character Class=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript/PHP:Region Marker=12,,,,,,,,,,--- -JavaScript/PHP:Regular Expression=9,,,,,,,,,,--- -JavaScript/PHP:Reserved=1,,,,1,,,,,,--- -JavaScript/PHP:String=7,,,,,,,,,,--- -JavaScript/PHP:Symbol=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP (HTML):Attribute=9,,,,,,,,,,--- -PHP (HTML):CDATA=4,,,1,,,,,,,--- -PHP (HTML):Comment=8,,,,,,,,,,--- -PHP (HTML):Doctype=2,,,1,,,,,,,--- -PHP (HTML):Element=1,,,,,,,,,,--- -PHP (HTML):EntityRef=3,,,,,,,,,,--- -PHP (HTML):Error=13,ffdc322f,ff002b36,,,,,,ffdc322f,,--- -PHP (HTML):Normal Text=0,,,,,,,,,,--- -PHP (HTML):Other Text=0,,,,,,,,,,--- -PHP (HTML):PEntityRef=3,,,,,,,,,,--- -PHP (HTML):Processing Instruction=1,,,,,,,,,,--- -PHP (HTML):Value=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -PHP/PHP:Backslash Code=1,ffcd00cd,ffffffff,1,0,,,,ff859900,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,ffdc322f,ff002b36,,,,,,ffdc322f,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff859900,ff002b36,1,,,,,ff859900,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,ffcb4b16,ff002b36,,,,,,ffcb4b16,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,ffcb4b16,ff002b36,,,,,,ffcb4b16,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting PHP/PHP - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting POV-Ray - Schema mssola-solarized] -POV-Ray:Char=6,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Comment=8,ff008000,ff008000,0,0,,,,,,--- -POV-Ray:Constant=5,ff0000ff,ffffffff,0,0,,,,,,--- -POV-Ray:Declaration=1,ff000080,ff000080,1,0,,,,,,--- -POV-Ray:Declare Keyword=1,ff990099,ff990099,1,0,,,,,,--- -POV-Ray:Declare Macro=1,ffcc0000,ff990099,1,0,,,,,,--- -POV-Ray:Directives=9,ff3300ff,ff3300ff,1,0,,,,,,--- -POV-Ray:Filetype=2,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Float=5,ff0000ff,ffffffff,0,0,,,,,,--- -POV-Ray:Functions=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Keyword=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Macro=1,ff000080,ff000080,1,0,,,,,,--- -POV-Ray:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -POV-Ray:Objects=1,ff800000,ffffffff,0,0,,,,,,--- -POV-Ray:Region Marker=12,,,,,,,,,,--- -POV-Ray:String=7,ffff0000,ffff0000,0,0,,,,,,--- -POV-Ray:String Char=6,ffff00ff,ffff00ff,0,0,,,,,,--- -POV-Ray:Symbol=0,ff660099,ff660099,0,0,,,,,,--- -POV-Ray:Texturing=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Transforms=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Unofficial=1,ff0080d0,ffffffff,0,0,,,,,,--- - -[Highlighting Pango - Schema mssola-solarized] -Pango:Color=5,,,,,,,,,,--- -Pango:Decimal=3,,,,,,,,,,--- -Pango:Element=1,,,,,,,,,,--- -Pango:Error=13,,,,,,,,,,--- -Pango:Key=9,,,,,,,,,,--- -Pango:Normal Text=0,,,,,,,,,,--- -Pango:String=7,,,,,,,,,,--- -Pango:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting Pascal - Schema mssola-solarized] -Pascal:Alert=10,,,,,,,,,,--- -Pascal:Comment=8,,,,,,,,,,--- -Pascal:Directive=9,,,,,,,,,,--- -Pascal:Hex=4,,,,,,,,,,--- -Pascal:ISO/Delphi Extended=1,ff000080,,,,,,,,,--- -Pascal:Keyword=1,,,,,,,,,,--- -Pascal:Normal Text=0,,,,,,,,,,--- -Pascal:Number=3,,,,,,,,,,--- -Pascal:String=7,,,,,,,,,,--- -Pascal:Type=2,,,,,,,,,,--- - -[Highlighting Perl - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 2=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 3=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Perl:Bin=4,,,,,,,,,,--- -Perl:Comment=8,,,,,,,,,,--- -Perl:Data=0,,,,,,,,,,--- -Perl:Data Type=2,,,,,,,,,,--- -Perl:Decimal=3,,,,,,,,,,--- -Perl:Float=5,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -Perl:Function=11,,,,,,,,,,--- -Perl:Hex=4,,,,,,,,,,--- -Perl:Keyword=1,,,,,,,,,,--- -Perl:Normal Text=0,,,,,,,,,,--- -Perl:Nothing=8,,,,,,,,,,--- -Perl:Octal=4,,,,,,,,,,--- -Perl:Operator=1,ff008000,,,,,,,,,--- -Perl:Pattern=9,,,,,,,,,,--- -Perl:Pattern Character Class=4,,,,,,,,,,--- -Perl:Pattern Internal Operator=6,,,,,,,,,,--- -Perl:Pod=8,,,,,,,,,,--- -Perl:Pragma=1,,,,,,,,,,--- -Perl:Special Variable=2,ffb70000,ff002b36,,,,,,ffb58900,,--- -Perl:String=7,ff2aa198,ff002b36,0,0,,,,ff2aa198,,--- -Perl:String (interpolated)=7,,,,,,,,,,--- -Perl:String Special Character=6,,,,,,,,,,--- - -[Highlighting PicAsm - Schema mssola-solarized] -PicAsm:Alert=10,,,,,,,,,,--- -PicAsm:Based Numbers=4,,,,,,,,,,--- -PicAsm:Char=6,,,,,,,,,,--- -PicAsm:Comment=8,,,,,,,,,,--- -PicAsm:Directives=9,,,,,,,,,,--- -PicAsm:Error=13,,,,,,,,,,--- -PicAsm:GPASM-macros=0,ff000000,ff000000,1,1,,,,,,--- -PicAsm:InstructionAttr=0,ff000080,ff000080,0,1,,,,,,--- -PicAsm:Instructions=1,,,,,,,,,,--- -PicAsm:Normal Text=0,,,,,,,,,,--- -PicAsm:Prep. Lib=9,,,,,,,,,,--- -PicAsm:Preprocessor=9,,,,,,,,,,--- -PicAsm:String=7,,,,,,,,,,--- -PicAsm:Symbol=0,ffff0000,ff083194,0,0,,,,,,--- -PicAsm:Unbased Numbers=3,,,,,,,,,,--- - -[Highlighting Pig - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Pig:Comment=8,,,,,,,,,,--- -Pig:Float=5,,,,,,,,,,--- -Pig:Function=2,,,1,,,,,,,--- -Pig:Grunt=9,ffba8200,ffffffff,1,0,,,,,,--- -Pig:Hex=4,,,,,,,,,,--- -Pig:Int=3,,,,,,,,,,--- -Pig:Keyword=1,,,,,,,,,,--- -Pig:Normal Text=0,,,,,,,,,,--- -Pig:Octal=4,,,,,,,,,,--- -Pig:Operator=0,,,1,,,,,,,--- -Pig:Parameter=9,ff25a000,ffffffff,,,,,,,,--- -Pig:Statement=9,,,1,,,,,,,--- -Pig:String=7,,,,,,,,,,--- -Pig:Type=2,,,,,,,,,,--- - -[Highlighting Pike - Schema mssola-solarized] -Pike:Binary=4,,,,,,,,,,--- -Pike:Builtin Function=11,,,,,,,,,,--- -Pike:Char=6,,,,,,,,,,--- -Pike:Comment=8,,,,,,,,,,--- -Pike:Data Type=2,,,,,,,,,,--- -Pike:Decimal=3,,,,,,,,,,--- -Pike:Float=5,,,,,,,,,,--- -Pike:Hex=4,,,,,,,,,,--- -Pike:Keyword=1,,,,,,,,,,--- -Pike:Normal Text=0,,,,,,,,,,--- -Pike:Note=10,,,,,,,,,,--- -Pike:Octal=4,,,,,,,,,,--- -Pike:Preprocessor=9,,,,,,,,,,--- -Pike:Preprocessor Lib=7,,,,,,,,,,--- -Pike:String=7,,,,,,,,,,--- -Pike:String Char=6,,,,,,,,,,--- - -[Highlighting PostScript - Schema mssola-solarized] -PostScript:Comment=8,,,,,,,,,,--- -PostScript:Data Type=2,,,,,,,,,,--- -PostScript:Decimal=3,,,,,,,,,,--- -PostScript:Float=5,,,,,,,,,,--- -PostScript:Header=9,,,,,,,,,,--- -PostScript:Keyword=1,,,,,,,,,,--- -PostScript:Normal Text=0,,,,,,,,,,--- -PostScript:String=7,,,,,,,,,,--- - -[Highlighting PostScript Printer Description - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -PostScript Printer Description:Colon=1,,,,,,,,,,--- -PostScript Printer Description:Comment=8,,,,,,,,,,--- -PostScript Printer Description:Keyword=1,,,,,,,,,,--- -PostScript Printer Description:Option=9,,,,,,,,,,--- -PostScript Printer Description:Value=7,,,,,,,,,,--- - -[Highlighting Prolog - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Prolog:"double-quoted"=9,,,,,,,,,,--- -Prolog:% italic predicates: w/ side effects=8,,,,,,,,,,--- -Prolog:%BEGIN folding region=12,,,,,,,,,,--- -Prolog:'quo Ted'=7,,,,,,,,,,--- -Prolog:( ) \x5b \x5d=0,,,,,,,,,,--- -Prolog:/* !avoid leading * to have folding */=8,,,,,,,,,,--- -Prolog:0'a (!use background)=4,,,,,,,ff0c0c0c,ffffffff,,--- -Prolog:0b1001 0o007 0xF1=4,,,,,,,,,,--- -Prolog:1 2 3 42=3,,,,,,,,,,--- -Prolog:2.718281E-9=5,,,,,,,,,,--- -Prolog:Arithmetics=2,,,1,1,,,,,,--- -Prolog:Dynamic Clause Management=1,,,,1,,,,,,--- -Prolog:Float Arithmetics=5,,,1,1,,,,,,--- -Prolog:Guru Meditation=0,ffff0000,ff00ffff,1,0,,,,,,--- -Prolog:Guru Meditation Terms=0,ffff0000,ff00ffff,0,1,,,,,,--- -Prolog:ISO Bogus=10,,,1,1,,,,,,--- -Prolog:Integer Arithmetics=3,,,1,1,,,,,,--- -Prolog:Logic & Control=1,,,,,,,,,,--- -Prolog:Normal Text=0,,,,,,,,,,--- -Prolog:Prolog State=11,,,1,,,,,,,--- -Prolog:Stream I/O=11,,,,1,,,,,,--- -Prolog:Syntax Error=13,,,,,,,,,,--- -Prolog:Type Checking=2,,,,,,,,,,--- -Prolog:Warning (!use background)=10,,,,,,,fffc000c,ff03fff3,,--- -Prolog:_VARIABLE=2,,,0,,,,,,,--- -Prolog:`back-quoted`=7,,,,1,,,,,,--- -Prolog:escaped (!use background)=6,,,,,,,ff0c0c0c,ffffffff,,--- -Prolog:other built-in operator=11,,,,,,,,,,--- -Prolog:other built-in predicate=11,,,,,,,,,,--- -Prolog:{ DCG }=1,,,,,,,,,,--- - -[Highlighting Protobuf - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Protobuf:Alert=10,,,,,,,,,,--- -Protobuf:Char=6,,,,,,,,,,--- -Protobuf:Comment=8,,,,,,,,,,--- -Protobuf:Data Type=2,,,,,,,,,,--- -Protobuf:Decimal=3,,,,,,,,,,--- -Protobuf:Error=13,,,,,,,,,,--- -Protobuf:Float=5,,,,,,,,,,--- -Protobuf:Hex=4,,,,,,,,,,--- -Protobuf:Imports=9,,,,,,,,,,--- -Protobuf:Keyword=1,,,,,,,,,,--- -Protobuf:Normal Text=0,,,,,,,,,,--- -Protobuf:Octal=4,,,,,,,,,,--- -Protobuf:String=7,,,,,,,,,,--- -Protobuf:String Char=6,,,,,,,,,,--- -Protobuf:Symbol=0,,,,,,,,,,--- - -[Highlighting PureBasic - Schema mssola-solarized] -PureBasic:Comment=8,,,,,,,,,,--- -PureBasic:Constant=2,,,,,,,,,,--- -PureBasic:Functions=11,,,,,,,,,,--- -PureBasic:Keyword=1,,,,,,,,,,--- -PureBasic:Normal Text=0,,,,,,,,,,--- -PureBasic:Number=3,,,,,,,,,,--- -PureBasic:Region Marker=12,,,,,,,,,,--- -PureBasic:String=7,,,,,,,,,,--- - -[Highlighting Python - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 2=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 3=10,ffdc322f,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Normal Text=0,ff839496,ff93a1a1,,,,,,ff073642,,--- -Modelines:Comment=8,ff586e75,ff002b36,,,,,,ff586e75,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting QML - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -QML:Elements=1,ff008000,ff00ffff,0,0,,,,,,--- -QML:Import=1,,,,,,,,,,--- -QML:ImportValue=7,,,,,,,,,,--- -QML:Keywords=1,,,,,,,,,,--- -QML:Normal Text=0,,,,,,,,,,--- -QML:Property Type=2,,,,,,,,,,--- -QML:Signal=1,ff0095ff,ffffffff,,,,,,,,--- - -[Highlighting QMake - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -QMake:Backslash Code=1,,,1,,,,,,,--- -QMake:Comment=8,,,,,,,,,,--- -QMake:Function=11,,,,,,,,,,--- -QMake:Keyword=1,,,,,,,,,,--- -QMake:Normal Text=0,,,,,,,,,,--- -QMake:Predefined Variable=2,,,1,,,,,,,--- -QMake:String=7,,,,,,,,,,--- -QMake:System=9,,,,,,,,,,--- -QMake:Variable=2,,,,,,,,,,--- - -[Highlighting Quake Script - Schema mssola-solarized] -Quake Script:Action=0,ffffcc00,ff00ff00,1,1,,,,,,--- -Quake Script:Command=1,,,,,,,,,,--- -Quake Script:Comment=8,,,,,,,,,,--- -Quake Script:Float=5,,,,,,,,,,--- -Quake Script:Hex=4,,,,,,,,,,--- -Quake Script:Identifier=2,,,,,,,,,,--- -Quake Script:Int=5,,,,,,,,,,--- -Quake Script:Normal Text=0,,,,,,,,,,--- -Quake Script:String=0,ffff0000,ff00ff00,0,1,,,,,,--- -Quake Script:String Char=6,,,,,,,,,,--- -Quake Script:Symbol=9,,,,,,,,,,--- -Quake Script:Variable=0,ff0000ff,ff00ff00,1,1,,,,,,--- - -[Highlighting R Script - Schema mssola-solarized] -R Script:Assign=0,ff336366,ffccc099,1,0,,,,,,--- -R Script:Comment=8,,,,,,,,,,--- -R Script:Control Structure=0,ff0000bf,ffbfbf00,,,,,,,,--- -R Script:Error=13,,,,,,,,,,--- -R Script:Float=5,,,,,,,,,,--- -R Script:Headline=0,ffb00000,ffb00000,1,0,,,,,,--- -R Script:Identifier=2,,,,,,,,,,--- -R Script:Int=3,,,,,,,,,,--- -R Script:Keyword=1,,,,,,,,,,--- -R Script:Normal Text=0,,,,,,,,,,--- -R Script:Operator=0,ff803f00,ff000077,0,0,,,,,,--- -R Script:Reserved Words=9,,,,,,,,,,--- -R Script:String=7,,,,,,,,,,--- -R Script:String Char=6,,,,,,,,,,--- -R Script:Symbol=0,,,,,,,,,,--- - -[Highlighting RELAX NG - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -RELAX NG:Attribute=9,,,,,,,,,,--- -RELAX NG:Attribute Value=7,ff800000,ffffffff,0,0,,,,,,--- -RELAX NG:Comment=8,,,,,,,,,,--- -RELAX NG:Invalid=13,,,,,,,,,,--- -RELAX NG:Normal Text=0,,,,,,,,,,--- -RELAX NG:RELAX NG Tags=1,ff000080,ffffffff,1,0,,,,,,--- -RELAX NG:Tag=1,,,,,,,,,,--- - -[Highlighting REXX - Schema mssola-solarized] -REXX:Alert=10,,,,,,,,,,--- -REXX:Built In=0,ff000090,,,,,,,,,--- -REXX:Comment=8,,,,,,,,,,--- -REXX:Function=11,,,,,,,,,,--- -REXX:Instructions=1,,,,,,,,,,--- -REXX:Normal Text=0,,,,,,,,,,--- -REXX:String=7,,,,,,,,,,--- -REXX:Symbol=0,,,,,,,,,,--- - -[Highlighting RPM Spec - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -RPM Spec:Comment=8,,,,,,,,,,--- -RPM Spec:Enumeration=9,,,,,,,,,,--- -RPM Spec:Error=13,,,,,,,,,,--- -RPM Spec:Escaped character=6,,,,,,,,,,--- -RPM Spec:Fallback for separator spaces=0,,,,,,,,,,--- -RPM Spec:Hint=13,,,,,,,,,,--- -RPM Spec:Integer=3,,,,,,,,,,--- -RPM Spec:Keyword=1,,,,,,,,,,--- -RPM Spec:Line break=1,,,,,,,,,,--- -RPM Spec:Macro call=11,,,,,,,,,,--- -RPM Spec:Section=12,,,,,,,,,,--- -RPM Spec:Shell commands=0,,,,,,,,,,--- -RPM Spec:String=7,,,,,,,,,,--- -RPM Spec:Tag=2,,,,,,,,,,--- -RPM Spec:Warning=13,,,,,,,,,,--- - -[Highlighting RSI IDL - Schema mssola-solarized] -RSI IDL:Char=6,,,,,,,,,,--- -RSI IDL:Command=4,ff050505,ffffffff,1,,,,,,,--- -RSI IDL:Comment=8,ff2b7805,ff945ca4,,,,,,,,--- -RSI IDL:Data Type=2,,,,,,,,,,--- -RSI IDL:Decimal=3,ff000000,ffffffff,,,,,,,,--- -RSI IDL:Float=3,ff000000,ffffffff,,,,,,,,--- -RSI IDL:Hex=3,,,,,,,,,,--- -RSI IDL:IOCommand=2,ff050505,ffffffff,1,,,,,,,--- -RSI IDL:Keyword=1,ff1414e4,ffffd60b,1,,,,,,,--- -RSI IDL:Normal Text=0,,,,,,,,,,--- -RSI IDL:Octal=3,,,,,,,,,,--- -RSI IDL:String=7,ffff0000,ffff0000,,,,,,,,--- -RSI IDL:String Char=6,ffff0000,ffff0000,,,,,,,,--- -RSI IDL:bracketed=5,,,,,,,,,,--- - -[Highlighting RapidQ - Schema mssola-solarized] -RapidQ:Comment=8,,,,,,,,,,--- -RapidQ:Decimal=3,,,,,,,,,,--- -RapidQ:Directive=9,,,,,,,,,,--- -RapidQ:Float=5,,,,,,,,,,--- -RapidQ:Keyword=1,,,,,,,,,,--- -RapidQ:Normal Text=0,,,,,,,,,,--- -RapidQ:Object=11,,,,,,,,,,--- -RapidQ:Propormeth=2,,,,,,,,,,--- -RapidQ:String=7,,,,,,,,,,--- - -[Highlighting RelaxNG-Compact - Schema mssola-solarized] -RelaxNG-Compact:Comments=8,,,,,,,,,,--- -RelaxNG-Compact:Datatypes=2,,,,,,,,,,--- -RelaxNG-Compact:Definitions=11,,,,,,,,,,--- -RelaxNG-Compact:Keywords=1,,,,,,,,,,--- -RelaxNG-Compact:Node Names=9,,,,,,,,,,--- -RelaxNG-Compact:Normal Text=0,,,,,,,,,,--- -RelaxNG-Compact:String=7,,,,,,,,,,--- - -[Highlighting RenderMan RIB - Schema mssola-solarized] -RenderMan RIB:Comment=8,,,,,,,,,,--- -RenderMan RIB:External Resource=1,,,,,,,,,,--- -RenderMan RIB:Float=5,,,,,,,,,,--- -RenderMan RIB:Geometric Primitive=1,,,,,,,,,,--- -RenderMan RIB:Graphics State=1,,,,,,,,,,--- -RenderMan RIB:Integer=3,,,,,,,,,,--- -RenderMan RIB:Motion=1,,,,,,,,,,--- -RenderMan RIB:Normal Text=0,,,,,,,,,,--- -RenderMan RIB:String=7,,,,,,,,,,--- - -[Highlighting Restructured Text - Schema mssola-solarized] -Restructured Text:Code=2,,,,,,,,,,--- -Restructured Text:Directive=3,,,,,,,,,,--- -Restructured Text:Emphasys=0,,,,1,,,,,,--- -Restructured Text:Error=13,,,,,,,,,,--- -Restructured Text:Keyword=1,,,,,,,,,,--- -Restructured Text:Link=7,,,,,,,,,,--- -Restructured Text:LinkUrl=7,,,1,,,,,,,--- -Restructured Text:Literal=2,,,,,,,,,,--- -Restructured Text:Normal Text=0,,,,,,,,,,--- -Restructured Text:OrderedList=3,,,,,,,,,,--- -Restructured Text:Strong=0,,,1,,,,,,,--- -Restructured Text:Title=1,,,1,,,,,,,--- -Restructured Text:UnorderedList=5,,,,,,,,,,--- - -[Highlighting Roff - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Roff:Comment=8,,,,,,,,,,--- -Roff:Error=13,,,,,,,,,,--- -Roff:Escape=6,,,,,,,,,,--- -Roff:Font=9,,,,,,,,,,--- -Roff:Format Macros=1,,,,,,,,,,--- -Roff:GNU Macros=2,,,,,,,,,,--- -Roff:Glyph=9,,,,,,,,,,--- -Roff:Identifier=7,,,,,,,,,,--- -Roff:Layout Macros=1,,,,,,,,,,--- -Roff:Normal Text=0,,,,,,,,,,--- -Roff:Number=3,,,,,,,,,,--- -Roff:Other Macros=11,,,,,,,,,,--- -Roff:Register=9,,,,,,,,,,--- -Roff:String=7,,,,,,,,,,--- - -[Highlighting Ruby - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffc00000,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 2=10,ffc00000,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Alert Level 3=10,ffc00000,ff002b36,1,,,,fff7e6e6,ffdc322f,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Ruby:Access Control=1,ff859900,ff002b36,1,,,,,ff859900,,--- -Ruby:Attribute Definition=9,,,,,,,,,,--- -Ruby:Bin=4,,,,,,,,,,--- -Ruby:Blockcomment=8,,,,,,,,,,--- -Ruby:Char=6,,,,,,,,,,--- -Ruby:Class Variable=9,,,,,,,,,,--- -Ruby:Command=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -Ruby:Comment=8,,,,,,,,,,--- -Ruby:Constant=2,,,,,,,,,,--- -Ruby:Constant Value=2,ffbb1188,,,,,,,,,--- -Ruby:Data=0,,,,,,,,,,--- -Ruby:Dec=3,,,,,,,,,,--- -Ruby:Default globals=2,ffb70000,ff002b36,0,,,,,ffb58900,,--- -Ruby:Definition=1,,,,,,,,,,--- -Ruby:Delimiter=0,ff839496,ff93a1a1,,,,,,ff073642,,--- -Ruby:Error=13,,,,,,,,,,--- -Ruby:Expression=9,ffcb4b16,ff002b36,,,,,,ffcb4b16,,--- -Ruby:Float=5,,,,,,,,,,--- -Ruby:GDL input=9,,,,,,,,,,--- -Ruby:Global Constant=2,ffbb1188,,1,,,,,,,--- -Ruby:Global Variable=2,ffb70000,ff002b36,0,,,,,ffb58900,,--- -Ruby:Here Document=9,,,,,,,,,,--- -Ruby:Hex=4,,,,,,,,,,--- -Ruby:Instance Variable=9,,,,,,,,,,--- -Ruby:Kernel methods=0,ff268bd2,ff002b36,,,,,,ff268bd2,,--- -Ruby:Keyword=1,ff859900,ff002b36,1,,,,,ff859900,,--- -Ruby:Member=0,,,,,,,,,,--- -Ruby:Message=0,ff839496,ff93a1a1,,,,,,ff073642,,--- -Ruby:Module mixin methods=0,ff268bd2,ff002b36,,,,,,ff268bd2,,--- -Ruby:Normal Text=0,,,,,,,,,,--- -Ruby:Octal=4,,,,,,,,,,--- -Ruby:Operator=0,ff839496,ff93a1a1,,,,,,ff073642,,--- -Ruby:Pseudo variable=3,,,,,,,,,,--- -Ruby:RDoc Value=9,,,,,,,,,,--- -Ruby:Raw String=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -Ruby:Region Marker=0,ff0000ff,,,,,,,,,--- -Ruby:Regular Expression=9,ffcb4b16,ff002b36,,,,,,ffcb4b16,,--- -Ruby:String=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -Ruby:Substitution=9,,,,,,,,,,--- -Ruby:Symbol=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- - -[Highlighting Ruby/Rails/RHTML - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Ruby/Rails/RHTML:Access Control=1,ff0000ff,,,,,,,,,--- -Ruby/Rails/RHTML:Alert=10,,,,,,,,,,--- -Ruby/Rails/RHTML:Attribute=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Attribute Definition=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Bin=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Blockcomment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:CDATA=4,,,1,,,,,,,--- -Ruby/Rails/RHTML:Char=6,,,,,,,,,,--- -Ruby/Rails/RHTML:Class Variable=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Command=7,ffaa3000,,,,,,,,,--- -Ruby/Rails/RHTML:Comment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:Constant=2,,,,,,,,,,--- -Ruby/Rails/RHTML:Constant Value=2,ffbb1188,,,,,,,,,--- -Ruby/Rails/RHTML:Data=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Dec=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Default globals=2,ffc00000,,1,,,,,,,--- -Ruby/Rails/RHTML:Definition=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Delimiter=6,,,,,,,,,,--- -Ruby/Rails/RHTML:Doctype=2,,,1,,,,,,,--- -Ruby/Rails/RHTML:Element=1,,,,,,,,,,--- -Ruby/Rails/RHTML:EntityRef=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Error=13,,,,,,,,,,--- -Ruby/Rails/RHTML:Expression=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Float=5,,,,,,,,,,--- -Ruby/Rails/RHTML:GDL input=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Global Constant=2,ffbb1188,,1,,,,,,,--- -Ruby/Rails/RHTML:Global Variable=2,ffc00000,,,,,,,,,--- -Ruby/Rails/RHTML:Hex=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Instance Variable=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Kernel methods=0,ff000080,ffffffff,,,,,,,,--- -Ruby/Rails/RHTML:Keyword=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Member=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Message=0,ff4000a7,,,,,,,,,--- -Ruby/Rails/RHTML:Normal Text=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Octal=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Operator=6,,,,,,,,,,--- -Ruby/Rails/RHTML:PEntityRef=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Processing Instruction=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Pseudo variable=3,,,,,,,,,,--- -Ruby/Rails/RHTML:RDoc Value=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Raw String=7,ffdd4a4a,ffdd4a4a,,,,,,,,--- -Ruby/Rails/RHTML:Region Marker=0,ff0000ff,,,,,,,,,--- -Ruby/Rails/RHTML:Regular Expression=9,ff4a5704,,,,,,,,,--- -Ruby/Rails/RHTML:Ruby Comment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:Ruby Normal Text=0,,,,,,,,,,--- -Ruby/Rails/RHTML:String=7,,,,,,,,,,--- -Ruby/Rails/RHTML:Substitution=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Symbol=7,ffd40000,,,,,,,,,--- -Ruby/Rails/RHTML:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting Rust - Schema mssola-solarized] -Rust:Attribute=9,,,,,,,,,,--- -Rust:CConstant=0,ff116644,,,,,,,,,--- -Rust:CType=0,ff4e9a06,,,,,,,,,--- -Rust:CharEscape=6,ffff0000,,1,,,,,,,--- -Rust:Character=6,ffff0000,,,,,,,,,--- -Rust:Comment=8,ffaa5500,,,,,,,,,--- -Rust:Constant=1,ff116644,,,,,,,,,--- -Rust:Definition=0,ff0000ff,,,,,,,,,--- -Rust:Error=13,,,,,,,,,,--- -Rust:Keyword=1,ff770088,,1,,,,,,,--- -Rust:Lifetime=9,,,1,,,,,,,--- -Rust:Macro=9,,,,,,,,,,--- -Rust:Normal Text=0,,,,,,,,,,--- -Rust:Number=3,ff116644,,,,,,,,,--- -Rust:Scope=0,ff0055aa,,,,,,,,,--- -Rust:Self=1,ffff0000,,1,,,,,,,--- -Rust:String=7,ffff0000,,,,,,,,,--- -Rust:Trait=1,ff4e9a06,,1,,,,,,,--- -Rust:Type=1,ff4e9a06,,1,,,,,,,--- - -[Highlighting SCSS - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -SCSS:Alert=10,,,,,,,,,,--- -SCSS:At Rule=3,,,,,,,,,,--- -SCSS:Comment=8,,,,,,,,,,--- -SCSS:Error=13,,,,,,,,,,--- -SCSS:Important=1,,,,,,,,,,--- -SCSS:Media=3,,,1,,,,,,,--- -SCSS:Normal Text=0,,,,,,,,,,--- -SCSS:Property=1,,,,,,,,,,--- -SCSS:Region Marker=12,,,,,,,,,,--- -SCSS:Selector Attr=6,,,,,,,,,,--- -SCSS:Selector Class=5,,,,,,,,,,--- -SCSS:Selector Id=5,,,1,,,,,,,--- -SCSS:Selector Pseudo=3,,,,,,,,,,--- -SCSS:String=7,,,,,,,,,,--- -SCSS:Unknown Property=1,,,,1,,,,,,--- -SCSS:Value=2,,,,,,,,,,--- -SCSS:Variable=0,,,,,,,,,,--- - -[Highlighting SGML - Schema mssola-solarized] -SGML:Attribute Name=9,,,,,,,,,,--- -SGML:Attribute Value=2,,,,,,,,,,--- -SGML:Comment=8,,,,,,,,,,--- -SGML:Normal Text=0,,,,,,,,,,--- -SGML:Tag=1,,,,,,,,,,--- - -[Highlighting SML - Schema mssola-solarized] -SML:Comment=8,,,,,,,,,,--- -SML:Data Type=2,,,,,,,,,,--- -SML:Decimal=3,,,,,,,,,,--- -SML:Float=5,,,,,,,,,,--- -SML:Keyword=1,,,,,,,,,,--- -SML:Normal Text=0,,,,,,,,,,--- -SML:Notice=7,,,,,,,,,,--- -SML:String=7,,,,,,,,,,--- -SML:String Char=6,,,,,,,,,,--- - -[Highlighting SQL (MySQL) - Schema mssola-solarized] -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting SQL (PostgreSQL) - Schema mssola-solarized] -SQL (PostgreSQL):Comment=8,,,,,,,,,,--- -SQL (PostgreSQL):Data Type=2,,,,,,,,,,--- -SQL (PostgreSQL):Decimal=3,,,,,,,,,,--- -SQL (PostgreSQL):Float=5,,,,,,,,,,--- -SQL (PostgreSQL):Function=11,,,,,,,,,,--- -SQL (PostgreSQL):Identifier=9,,,,,,,,,,--- -SQL (PostgreSQL):Keyword=1,,,,,,,,,,--- -SQL (PostgreSQL):Normal Text=0,,,,,,,,,,--- -SQL (PostgreSQL):Operator=0,,,,,,,,,,--- -SQL (PostgreSQL):Preprocessor=9,,,,,,,,,,--- -SQL (PostgreSQL):String=7,,,,,,,,,,--- -SQL (PostgreSQL):String Char=6,,,,,,,,,,--- -SQL (PostgreSQL):Symbol=6,,,,,,,,,,--- - -[Highlighting SQL - Schema mssola-solarized] -SQL:Comment=8,,,,,,,,,,--- -SQL:Data Type=2,,,,,,,,,,--- -SQL:Decimal=3,,,,,,,,,,--- -SQL:External Variable=6,,,,,,,,,,--- -SQL:Float=5,,,,,,,,,,--- -SQL:Function=11,,,,,,,,,,--- -SQL:Hex=4,,,,,,,,,,--- -SQL:Identifier=9,,,,,,,,,,--- -SQL:Keyword=1,,,,,,,,,,--- -SQL:Normal Text=0,,,,,,,,,,--- -SQL:Operator=0,,,,,,,,,,--- -SQL:Preprocessor=9,,,,,,,,,,--- -SQL:String=7,,,,,,,,,,--- -SQL:String Char=6,,,,,,,,,,--- -SQL:Symbol=6,,,,,,,,,,--- - -[Highlighting Sather - Schema mssola-solarized] -Sather:Char=6,,,,,,,,,,--- -Sather:Comment=8,,,,,,,,,,--- -Sather:Data Type=2,,,,,,,,,,--- -Sather:Decimal=3,,,,,,,,,,--- -Sather:Features=9,,,,,,,,,,--- -Sather:Float=5,,,,,,,,,,--- -Sather:Keyword=1,,,,,,,,,,--- -Sather:Normal Text=0,,,,,,,,,,--- -Sather:String=7,,,,,,,,,,--- - -[Highlighting Scala - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Scala:Char=6,,,,,,,,,,--- -Scala:Comment=8,,,,,,,,,,--- -Scala:Data Type=2,,,,,,,,,,--- -Scala:Decimal=3,,,,,,,,,,--- -Scala:Float=5,,,,,,,,,,--- -Scala:Function=11,,,,,,,,,,--- -Scala:Hex=4,,,,,,,,,,--- -Scala:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -Scala:Java15=0,ff0095ff,ffffffff,1,0,,,,,,--- -Scala:Keyword=1,,,,,,,,,,--- -Scala:Normal Text=0,,,,,,,,,,--- -Scala:Octal=4,,,,,,,,,,--- -Scala:PrintfString=7,,,,,,,,,,--- -Scala:Scala2=0,ff0095ff,ffffffff,1,0,,,,,,--- -Scala:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -Scala:String=7,,,,,,,,,,--- -Scala:String Char=6,,,,,,,,,,--- -Scala:Symbol=0,,,,,,,,,,--- - -[Highlighting Scheme - Schema mssola-solarized] -Scheme:BaseN=4,,,,,,,,,,--- -Scheme:Brackets1=0,ffff0000,ff000000,1,0,,,,,,--- -Scheme:Brackets2=0,ffff8800,ff000000,1,0,,,,,,--- -Scheme:Brackets3=0,ff888800,ff000000,1,0,,,,,,--- -Scheme:Brackets4=0,ff008800,ff000000,1,0,,,,,,--- -Scheme:Brackets5=0,ff000088,ff000000,1,0,,,,,,--- -Scheme:Brackets6=0,ff880088,ff000000,1,0,,,,,,--- -Scheme:Char=6,,,,,,,,,,--- -Scheme:Comment=8,,,,,,,,,,--- -Scheme:Data=2,,,,,,,,,,--- -Scheme:Decimal=3,,,,,,,,,,--- -Scheme:Definition=1,ffd22811,,,,,,,,,--- -Scheme:Float=5,,,,,,,,,,--- -Scheme:Function=11,,,,,,,,,,--- -Scheme:Keyword=1,,,,,,,,,,--- -Scheme:Normal=0,,,,,,,,,,--- -Scheme:Operator=1,ffd22811,,,,,,,,,--- -Scheme:Region Marker=12,,,,,,,,,,--- -Scheme:String=7,,,,,,,,,,--- - -[Highlighting SiSU - Schema mssola-solarized] -SiSU:Bold=0,ff800000,ff60ffff,1,0,,,,,,--- -SiSU:Break=0,ffff0000,ff60ffff,0,0,,,,,,--- -SiSU:Comment=8,,,,,,,,,,--- -SiSU:Endnote=0,ff086800,ff60ffff,0,0,,,,,,--- -SiSU:Group=12,,,,,,,,,,--- -SiSU:Header=0,ff1c869b,ff60ffff,0,0,,,,,,--- -SiSU:Heading=0,ffff0000,ff60ffff,1,0,,,,,,--- -SiSU:Indent=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Insert=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Italic=0,ff800000,ff60ffff,0,1,,,,,,--- -SiSU:Keyword=1,,,,,,,,,,--- -SiSU:Link=0,ff0000ff,ff60ffff,0,0,,,,,,--- -SiSU:Normal Text=0,,,,,,,,,,--- -SiSU:Strike=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:String=7,,,,,,,,,,--- -SiSU:Structure=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Subscript=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Superscript=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Underscore=0,fff00000,ff80ffd0,0,0,,,,,,--- - -[Highlighting Sieve - Schema mssola-solarized] -Sieve:Comment=8,,,,,,,,,,--- -Sieve:Decimal=3,,,,,,,,,,--- -Sieve:Function=11,,,,,,,,,,--- -Sieve:Keyword=1,,,,,,,,,,--- -Sieve:Normal Text=0,,,,,,,,,,--- -Sieve:String=7,,,,,,,,,,--- -Sieve:String Char=6,,,,,,,,,,--- -Sieve:Symbol=0,,,,,,,,,,--- -Sieve:Tagged Argument=9,,,,,,,,,,--- - -[Highlighting Spice - Schema mssola-solarized] -Spice:Comment=8,,,,,,,,,,--- -Spice:Keyword=1,,,,,,,,,,--- -Spice:Normal Text=0,,,,,,,,,,--- -Spice:Number=3,,,,,,,,,,--- -Spice:String=7,,,,,,,,,,--- - -[Highlighting Stata - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Stata:Comment=8,,,,,,,,,,--- -Stata:Constants=2,,,,,,,,,,--- -Stata:Data Type=2,,,,,,,,,,--- -Stata:Functions=11,,,,,,,,,,--- -Stata:GlobalMacro=9,,,,,,,,,,--- -Stata:Graphics=4,,,,,,,,,,--- -Stata:Keyword=1,,,,,,,,,,--- -Stata:Macro=9,,,,,,,,,,--- -Stata:Mata=1,,,,,,,,,,--- -Stata:Normal Text=0,,,,,,,,,,--- -Stata:String=7,,,,,,,,,,--- -Stata:String Char=6,,,,,,,,,,--- -Stata:System Params=3,,,,,,,,,,--- - -[Highlighting SystemC - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -SystemC:Comment=8,,,,,,,,,,--- -SystemC:Data Type=2,,,,,,,,,,--- -SystemC:Extensions-Functions=1,ff000000,ffffffff,1,1,,,,,,--- -SystemC:Extensions-Keywords=1,,,,,,,,,,--- -SystemC:Extensions-Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -SystemC:Keyword=1,,,,,,,,,,--- -SystemC:Normal Text=0,,,,,,,,,,--- - -[Highlighting SystemVerilog - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -SystemVerilog:Assert Keyword=1,,,,,,,,,,--- -SystemVerilog:Binary=4,,,,,,,,,,--- -SystemVerilog:Block Keyword=1,,,,,,,,,,--- -SystemVerilog:Block Name=2,,,,,,,,,,--- -SystemVerilog:Case Keyword=1,,,,,,,,,,--- -SystemVerilog:Checker Keyword=1,,,,,,,,,,--- -SystemVerilog:Class Keyword=1,,,,,,,,,,--- -SystemVerilog:Comment=8,,,,,,,,,,--- -SystemVerilog:Config Keyword=1,,,,,,,,,,--- -SystemVerilog:Confitional Keyword=1,,,,,,,,,,--- -SystemVerilog:Constraint Keyword=1,,,,,,,,,,--- -SystemVerilog:Continuous Assign Keyword=1,,,,,,,,,,--- -SystemVerilog:Coverage Keyword=1,,,,,,,,,,--- -SystemVerilog:DPI Keyword=1,,,,,,,,,,--- -SystemVerilog:Data Type Keyword=2,,,,,,,,,,--- -SystemVerilog:Decimal=4,,,,,,,,,,--- -SystemVerilog:Delay=4,,,,,,,,,,--- -SystemVerilog:Deprecated Keyword=13,,,,,,,,,,--- -SystemVerilog:Drive/Charge Strength Keyword=4,,,,,,,,,,--- -SystemVerilog:Event Keyword=1,,,,,,,,,,--- -SystemVerilog:Float=5,,,,,,,,,,--- -SystemVerilog:Gate Instantiation Keyword=2,,,,,,,,,,--- -SystemVerilog:Generator Keyword=1,,,,,,,,,,--- -SystemVerilog:Hex=4,,,,,,,,,,--- -SystemVerilog:Integer=3,,,,,,,,,,--- -SystemVerilog:Interface Keyword=1,,,,,,,,,,--- -SystemVerilog:Keyword=1,,,,,,,,,,--- -SystemVerilog:Library Keyword=1,,,,,,,,,,--- -SystemVerilog:Loop Keyword=1,,,,,,,,,,--- -SystemVerilog:Method Keyword=1,,,,,,,,,,--- -SystemVerilog:Normal Text=0,,,,,,,,,,--- -SystemVerilog:Octal=4,,,,,,,,,,--- -SystemVerilog:PLI Task=2,,,,,,,,,,--- -SystemVerilog:Port Connection=2,,,,,,,,,,--- -SystemVerilog:Prep. Lib=5,,,,,,,,,,--- -SystemVerilog:Preprocessor=9,,,,,,,,,,--- -SystemVerilog:Preprocessor Keyword=9,,,,,,,,,,--- -SystemVerilog:Process Block Keyword=1,,,,,,,,,,--- -SystemVerilog:Specify Keyword=1,,,,,,,,,,--- -SystemVerilog:Standard Library=9,,,,,,,,,,--- -SystemVerilog:String=7,,,,,,,,,,--- -SystemVerilog:String Char=6,,,,,,,,,,--- -SystemVerilog:Symbol=0,,,,,,,,,,--- -SystemVerilog:System Task Keyword=2,,,,,,,,,,--- -SystemVerilog:Time Keyword=1,,,,,,,,,,--- -SystemVerilog:Type Keyword=1,,,,,,,,,,--- - -[Highlighting TADS 3 - Schema mssola-solarized] -TADS 3:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -TADS 3:Comment=8,,,,,,,,,,--- -TADS 3:Decimal=3,,,,,,,,,,--- -TADS 3:Embedded Expression=0,ff000000,ffffffff,0,1,,,,,,--- -TADS 3:HTML Tag=1,ff0f0f8f,ffffffff,0,1,,,,,,--- -TADS 3:Hex=4,,,,,,,,,,--- -TADS 3:Keyword=1,,,,,,,,,,--- -TADS 3:Normal Text=0,,,,,,,,,,--- -TADS 3:Octal=4,,,,,,,,,,--- -TADS 3:Preprocessor=9,,,,,,,,,,--- -TADS 3:String=7,,,,,,,,,,--- -TADS 3:Symbol=0,,,,,,,,,,--- -TADS 3:ValString=7,,,,,,,,,,--- - -[Highlighting TI Basic - Schema mssola-solarized] -TI Basic:Assignment=9,,,,,,,,,,--- -TI Basic:Keyword=1,,,,,,,,,,--- -TI Basic:Matrix=0,,,,,,,,,,--- -TI Basic:Normal Text=0,,,,,,,,,,--- -TI Basic:Special operators=0,,,,,,,,,,--- -TI Basic:String=7,,,,,,,,,,--- - -[Highlighting TT2 - Schema mssola-solarized] -TT2:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -TT2:Comment=8,,,,,,,,,,--- -TT2:Control Structures=1,ff0000dd,ffffffff,1,0,,,,,,--- -TT2:Decimal=3,,,,,,,,,,--- -TT2:Float=5,,,,,,,,,,--- -TT2:Function=1,ff0000ff,ff00ffff,0,0,,,,,,--- -TT2:HTML Comment=8,,,,,,,,,,--- -TT2:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -TT2:Hex=4,,,,,,,,,,--- -TT2:Identifier=9,,,,,,,,,,--- -TT2:Keyword=1,,,,,,,,,,--- -TT2:Normal Text=0,,,,,,,,,,--- -TT2:Octal=4,,,,,,,,,,--- -TT2:Operator=1,ff008000,,,,,,,,,--- -TT2:Other=9,,,,,,,,,,--- -TT2:String=7,ffff6c6c,ffff6c6c,0,0,,,,,,--- -TT2:TT2 Text=0,,,,,,,,,,--- -TT2:Types=2,,,,,,,,,,--- -TT2:Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- - -[Highlighting Tcl/Tk - Schema mssola-solarized] -Tcl/Tk:Char=6,,,,,,,,,,--- -Tcl/Tk:Comment=8,,,,,,,,,,--- -Tcl/Tk:Decimal=3,,,,,,,,,,--- -Tcl/Tk:Float=5,,,,,,,,,,--- -Tcl/Tk:Keyword=1,,,,,,,,,,--- -Tcl/Tk:Normal Text=0,,,,,,,,,,--- -Tcl/Tk:Parameter=9,,,,,,,,,,--- -Tcl/Tk:Region Marker=12,,,,,,,,,,--- -Tcl/Tk:String=7,,,,,,,,,,--- -Tcl/Tk:Variable=2,,,,,,,,,,--- - -[Highlighting Tcsh - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Tcsh:Backquote=1,,,,,,,,,,--- -Tcsh:Builtin=1,,,,,,,,,,--- -Tcsh:Command=1,,,,,,,,,,--- -Tcsh:Comment=8,,,,,,,,,,--- -Tcsh:Control=1,,,,,,,,,,--- -Tcsh:Escape=2,,,,,,,,,,--- -Tcsh:Expression=9,,,,,,,,,,--- -Tcsh:Function=11,,,,,,,,,,--- -Tcsh:Keyword=1,,,,,,,,,,--- -Tcsh:Label=9,,,,,,,,,,--- -Tcsh:Normal Text=0,,,,,,,,,,--- -Tcsh:Option=0,,,,,,,,,,--- -Tcsh:Path=0,,,,,,,,,,--- -Tcsh:Redirection=1,,,,,,,,,,--- -Tcsh:String DoubleQ=7,,,,,,,,,,--- -Tcsh:String Escape=2,,,,,,,,,,--- -Tcsh:String SingleQ=7,,,,,,,,,,--- -Tcsh:String Transl.=7,,,,,,,,,,--- -Tcsh:Variable=9,,,,,,,,,,--- - -[Highlighting Texinfo - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Texinfo:Command=11,,,,,,,,,,--- -Texinfo:Comment=8,,,,,,,,,,--- -Texinfo:Normal Text=0,,,,,,,,,,--- - -[Highlighting Textile - Schema mssola-solarized] -Textile:Normal Text=0,,,,,,,,,,--- -Textile:blockattrs=8,,,,,,,,,,--- -Textile:comment=8,,,,,,,,,,--- -Textile:htmllink=2,,,,,,,,,,--- -Textile:image=5,,,,,,,,,,--- -Textile:imagefilename=1,,,,,,,,,,--- -Textile:itemlist=2,,,,,,,,,,--- -Textile:macro=8,,,1,,,,,,,--- -Textile:sectionblockattrs=8,,,1,,,,,,,--- -Textile:sectionheader=11,,,1,,,,,,,--- -Textile:sectiontitle=1,,,1,,,,,,,--- -Textile:strikeout=0,,,,,1,,,,,--- -Textile:strong=0,,,1,,,,,,,--- -Textile:textblock=8,,,,,,,,,,--- - -[Highlighting Troff Mandoc - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Roff:Comment=8,,,,,,,,,,--- -Roff:Error=13,,,,,,,,,,--- -Roff:Escape=6,,,,,,,,,,--- -Roff:Font=9,,,,,,,,,,--- -Roff:Format Macros=1,,,,,,,,,,--- -Roff:GNU Macros=2,,,,,,,,,,--- -Roff:Glyph=9,,,,,,,,,,--- -Roff:Identifier=7,,,,,,,,,,--- -Roff:Layout Macros=1,,,,,,,,,,--- -Roff:Normal Text=0,,,,,,,,,,--- -Roff:Number=3,,,,,,,,,,--- -Roff:Other Macros=11,,,,,,,,,,--- -Roff:Register=9,,,,,,,,,,--- -Roff:String=7,,,,,,,,,,--- -Troff Mandoc:Comment=8,,,,,,,,,,--- -Troff Mandoc:Formatting=1,,,,,,,,,,--- -Troff Mandoc:Headings=1,,,,,,,,,,--- -Troff Mandoc:Identifier=7,,,,,,,,,,--- -Troff Mandoc:Macros=11,,,,,,,,,,--- -Troff Mandoc:Normal Text=0,,,,,,,,,,--- -Troff Mandoc:Other Macros=11,,,,,,,,,,--- -Troff Mandoc:Paragraphs=2,,,,,,,,,,--- - -[Highlighting UnrealScript - Schema mssola-solarized] -UnrealScript:Char=6,,,,,,,,,,--- -UnrealScript:Comment=8,,,,,,,,,,--- -UnrealScript:Data Type=2,,,,,,,,,,--- -UnrealScript:Decimal=3,,,,,,,,,,--- -UnrealScript:Float=5,,,,,,,,,,--- -UnrealScript:Hex=4,,,,,,,,,,--- -UnrealScript:Keyword=1,,,,,,,,,,--- -UnrealScript:Normal Text=0,,,,,,,,,,--- -UnrealScript:Octal=4,,,,,,,,,,--- -UnrealScript:Preprocessor=9,,,,,,,,,,--- -UnrealScript:Region Marker=12,,,,,,,,,,--- -UnrealScript:String=7,,,,,,,,,,--- -UnrealScript:String Char=6,,,,,,,,,,--- -UnrealScript:Symbol=0,,,,,,,,,,--- - -[Highlighting VHDL - Schema mssola-solarized] -VHDL:Attribute=4,,,,,,,,,,--- -VHDL:Bit=6,,,,,,,,,,--- -VHDL:Comment=8,,,,,,,,,,--- -VHDL:Control=1,ff223388,,,,,,,,,--- -VHDL:Data Type=2,,,,,,,,,,--- -VHDL:Error=13,ffff0000,,1,,,,,,,--- -VHDL:Integer=3,,,,,,,,,,--- -VHDL:Keyword=1,,,,,,,,,,--- -VHDL:Name=1,ffbb6600,,1,,,,,,,--- -VHDL:Normal Text=0,,,,,,,,,,--- -VHDL:Operator=9,,,,,,,,,,--- -VHDL:Process=1,ff0099aa,,,,,,,,,--- -VHDL:Range=9,,,,,,,,,,--- -VHDL:Redirection=1,ff223388,,,,,,,,,--- -VHDL:Region Marker=12,,,,,,,,,,--- -VHDL:Signal=9,,,,,,,,,,--- -VHDL:Vector=7,,,,,,,,,,--- - -[Highlighting VRML - Schema mssola-solarized] -VRML:Comment=8,,,,,,,,,,--- -VRML:Data Type=2,,,,,,,,,,--- -VRML:Decimal=3,,,,,,,,,,--- -VRML:Float=5,,,,,,,,,,--- -VRML:Hex=4,,,,,,,,,,--- -VRML:Keyword=1,,,,,,,,,,--- -VRML:Node=0,ff000080,ffffffff,1,0,,,,,,--- -VRML:Normal Text=0,,,,,,,,,,--- -VRML:String=7,,,,,,,,,,--- -VRML:String Char=6,,,,,,,,,,--- - -[Highlighting Vala - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Vala:Char=6,,,,,,,,,,--- -Vala:Comment=8,,,,,,,,,,--- -Vala:Data Type=2,,,,,,,,,,--- -Vala:Decimal=3,,,,,,,,,,--- -Vala:Error=13,,,,,,,,,,--- -Vala:Escaped Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -Vala:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -Vala:Float=5,,,,,,,,,,--- -Vala:Hex=4,,,,,,,,,,--- -Vala:Keyword=1,,,,,,,,,,--- -Vala:MultiLine String=7,,,,,,,,,,--- -Vala:Normal Text=0,,,,,,,,,,--- -Vala:Octal=4,,,,,,,,,,--- -Vala:Prep. Lib=9,,,,,,,,,,--- -Vala:Preprocessor=9,,,,,,,,,,--- -Vala:Region Marker=12,,,,,,,,,,--- -Vala:String=7,,,,,,,,,,--- -Vala:String Char=6,,,,,,,,,,--- -Vala:Symbol=0,,,,,,,,,,--- -Vala:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting Valgrind Suppression - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Valgrind Suppression:Comment=8,,,,,,,,,,--- -Valgrind Suppression:ErrorKind=9,,,,,,,,,,--- -Valgrind Suppression:FrameKind=11,,,,,,,,,,--- -Valgrind Suppression:Normal Text=0,,,,,,,,,,--- -Valgrind Suppression:RuleName=1,,,,,,,,,,--- - -[Highlighting Varnish Configuration Language - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C:Alert=10,,,,,,,,,,--- -C:Binary=4,,,,,,,,,,--- -C:Char=6,,,,,,,,,,--- -C:Comment=8,,,,,,,,,,--- -C:Data Type=2,,,,,,,,,,--- -C:Decimal=3,,,,,,,,,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,,,,,,,,,,--- -C:Hex=4,,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,,--- -C:Region Marker=12,,,,,,,,,,--- -C:String=7,,,,,,,,,,--- -C:String Char=6,,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Varnish Configuration Language:Action Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Backend Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Comment=8,,,,,,,,,,--- -Varnish Configuration Language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Condition Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Data Size=3,,,,,,,,,,--- -Varnish Configuration Language:Data Type=2,,,,,,,,,,--- -Varnish Configuration Language:Decimal=3,,,,,,,,,,--- -Varnish Configuration Language:Director Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Director Type=2,,,,,,,,,,--- -Varnish Configuration Language:Duration=3,,,,,,,,,,--- -Varnish Configuration Language:Float=5,,,,,,,,,,--- -Varnish Configuration Language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Configuration Language:Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Normal Text=0,,,,,,,,,,--- -Varnish Configuration Language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Probe Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Region Marker=0,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Function=11,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Sub=11,,,1,,,,,,,--- -Varnish Configuration Language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:String=7,,,0,0,,,,,,--- -Varnish Configuration Language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Configuration Language:VMod Identifier=2,ff0000ff,ff0000ff,,,,,,,,--- -Varnish Configuration Language:Well-known VMod=2,ff0000ff,ff0000ff,1,,,,,,,--- - -[Highlighting Varnish Test Case language - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ff880088,,,,,,,,,--- -Bash:Command=1,ffcc00cc,,,,,,,,,--- -Bash:Comment=8,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ff330033,,,,,,,,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff223388,,,,,,,,,--- -Bash:String DoubleQ=7,,,,,,,,,,--- -Bash:String Escape=2,,,,,,,,,,--- -Bash:String SingleQ=7,,,,,,,,,,--- -Bash:String Transl.=7,,,,,,,,,,--- -Bash:Variable=9,,,,,,,,,,--- -C:Alert=10,,,,,,,,,,--- -C:Binary=4,,,,,,,,,,--- -C:Char=6,,,,,,,,,,--- -C:Comment=8,,,,,,,,,,--- -C:Data Type=2,,,,,,,,,,--- -C:Decimal=3,,,,,,,,,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,,,,,,,,,,--- -C:Hex=4,,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,,--- -C:Region Marker=12,,,,,,,,,,--- -C:String=7,,,,,,,,,,--- -C:String Char=6,,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Varnish Configuration Language:Action Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Backend Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Comment=8,,,,,,,,,,--- -Varnish Configuration Language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Condition Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Data Size=3,,,,,,,,,,--- -Varnish Configuration Language:Data Type=2,,,,,,,,,,--- -Varnish Configuration Language:Decimal=3,,,,,,,,,,--- -Varnish Configuration Language:Director Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Director Type=2,,,,,,,,,,--- -Varnish Configuration Language:Duration=3,,,,,,,,,,--- -Varnish Configuration Language:Float=5,,,,,,,,,,--- -Varnish Configuration Language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Configuration Language:Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Normal Text=0,,,,,,,,,,--- -Varnish Configuration Language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Probe Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Region Marker=0,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Function=11,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Sub=11,,,1,,,,,,,--- -Varnish Configuration Language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:String=7,,,0,0,,,,,,--- -Varnish Configuration Language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Configuration Language:VMod Identifier=2,ff0000ff,ff0000ff,,,,,,,,--- -Varnish Configuration Language:Well-known VMod=2,ff0000ff,ff0000ff,1,,,,,,,--- -Varnish Test Case language:Action Keyword=1,,,,,,,,,,--- -Varnish Test Case language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Client Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Comment=8,,,,,,,,,,--- -Varnish Test Case language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Decimal=3,,,,,,,,,,--- -Varnish Test Case language:Float=5,,,,,,,,,,--- -Varnish Test Case language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Test Case language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Test Case language:HTTP WebDAV method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Test Case language:HTTP announce=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP custom method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:Keyword=1,,,,,,,,,,--- -Varnish Test Case language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Normal Text=0,,,,,,,,,,--- -Varnish Test Case language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Region Marker=0,,,,,,,,,,--- -Varnish Test Case language:RxResp Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Sema Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Server Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Test Case language:String=7,,,0,0,,,,,,--- -Varnish Test Case language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Test Case language:TxReq Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:TxResp Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Varnish Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:VarnishStat metric=2,ff0000ff,ff0000ff,0,0,,,,,,--- - -[Highlighting Velocity - Schema mssola-solarized] -Velocity:Comment=8,,,,,,,,,,--- -Velocity:Keyword=1,,,,,,,,,,--- -Velocity:Normal Text=0,,,,,,,,,,--- -Velocity:Other=9,,,,,,,,,,--- -Velocity:Properties=0,ff8ac6ff,ffffffff,0,1,,,,,,--- -Velocity:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting Vera - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Vera:Char=6,,,,,,,,,,--- -Vera:Comment=8,,,,,,,,,,--- -Vera:Data Type=2,,,,,,,,,,--- -Vera:Decimal=3,,,,,,,,,,--- -Vera:Error=13,,,,,,,,,,--- -Vera:Float=5,,,,,,,,,,--- -Vera:Hex=4,,,,,,,,,,--- -Vera:Keyword=1,,,,,,,,,,--- -Vera:Methods=1,,,,,,,,,,--- -Vera:Normal Text=0,,,,,,,,,,--- -Vera:Octal=4,,,,,,,,,,--- -Vera:Prep. Lib=9,,,,,,,,,,--- -Vera:Preprocessor=9,,,,,,,,,,--- -Vera:Q Values=1,,,,,,,,,,--- -Vera:String=7,,,,,,,,,,--- -Vera:String Char=6,,,,,,,,,,--- -Vera:Symbol=0,,,,,,,,,,--- - -[Highlighting Verilog - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Verilog:Alert=10,,,,,,,,,,--- -Verilog:Binary=4,,,,,,,,,,--- -Verilog:Block name=2,,,,,,,,,,--- -Verilog:Case label=3,,,,,,,,,,--- -Verilog:Comment=8,,,,,,,,,,--- -Verilog:Data Type=2,,,,,,,,,,--- -Verilog:Decimal=4,,,,,,,,,,--- -Verilog:Delay=4,,,,,,,,,,--- -Verilog:Drive/charge strength=4,,,,,,,,,,--- -Verilog:Float=5,,,,,,,,,,--- -Verilog:Gate instantiation=2,,,,,,,,,,--- -Verilog:Hex=4,,,,,,,,,,--- -Verilog:Integer=3,,,,,,,,,,--- -Verilog:Keyword=1,,,,,,,,,,--- -Verilog:Normal Text=0,,,,,,,,,,--- -Verilog:Octal=4,,,,,,,,,,--- -Verilog:Port map=2,,,,,,,,,,--- -Verilog:Prep. Lib=5,,,,,,,,,,--- -Verilog:Preprocessor=9,,,,,,,,,,--- -Verilog:String=7,,,,,,,,,,--- -Verilog:String Char=6,,,,,,,,,,--- -Verilog:Symbol=0,,,,,,,,,,--- -Verilog:System Task=2,,,,,,,,,,--- - -[Highlighting WINE Config - Schema mssola-solarized] -WINE Config:Comment=8,,,,,,,,,,--- -WINE Config:Key=2,,,,,,,,,,--- -WINE Config:Normal Text=0,,,,,,,,,,--- -WINE Config:RegistryBeginEnd=0,ff00aaaa,ffffffff,1,0,,,,,,--- -WINE Config:Section=1,,,,,,,,,,--- -WINE Config:Value=0,ff0000ff,ffffffff,1,0,,,,,,--- -WINE Config:ValueFilesystem1=0,ff00aa00,ffffffff,1,0,,,,,,--- -WINE Config:ValueFilesystem2=0,ffff0000,ffffffff,1,0,,,,,,--- - -[Highlighting Wesnoth Markup Language - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- -Lua:Alerts=10,,,,,,,,,,--- -Lua:BFunc=11,,,,,,,,,,--- -Lua:Comment=8,,,,,,,,,,--- -Lua:Constant=1,,,,,,,,,,--- -Lua:Control=1,ffa1a100,ffffffff,0,0,,,,,,--- -Lua:Error=13,,,,,,,,,,--- -Lua:Keyword=1,,,,,,,,,,--- -Lua:Normal Text=0,,,,,,,,,,--- -Lua:Numbers=3,,,,,,,,,,--- -Lua:Strings=7,,,,,,,,,,--- -Lua:Symbols=9,,,,,,,,,,--- -Lua:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -Pango:Color=5,,,,,,,,,,--- -Pango:Decimal=3,,,,,,,,,,--- -Pango:Element=1,,,,,,,,,,--- -Pango:Error=13,,,,,,,,,,--- -Pango:Key=9,,,,,,,,,,--- -Pango:Normal Text=0,,,,,,,,,,--- -Pango:String=7,,,,,,,,,,--- -Pango:Value=7,ffaa0000,,,,,,,,,--- -Wesnoth Markup Language:Comment=8,,,,,,,,,,--- -Wesnoth Markup Language:Error=13,,,,,,,,,,--- -Wesnoth Markup Language:Macro String=6,,,,,,,,,,--- -Wesnoth Markup Language:Macro/Include=11,,,,,,,,,,--- -Wesnoth Markup Language:Maintenance script statement=10,,,,,,,,,,--- -Wesnoth Markup Language:Normal Text=7,,,,,,,,,,--- -Wesnoth Markup Language:Normal WML Text=0,,,,,,,,,,--- -Wesnoth Markup Language:Preprocessor=9,,,,,,,,,,--- -Wesnoth Markup Language:String=7,,,,,,,,,,--- -Wesnoth Markup Language:Variable Subscript=4,,,,,,,,,,--- -Wesnoth Markup Language:Variable Substitution=3,,,,,,,,,,--- -Wesnoth Markup Language:WML Attribute=2,,,,,,,,,,--- -Wesnoth Markup Language:WML Node=1,,,,,,,,,,--- - -[Highlighting XML (Debug) - Schema mssola-solarized] -XML (Debug):Attribute=2,,,,,,,,,,--- -XML (Debug):Comment=8,,,,,,,,,,--- -XML (Debug):Doctype Declaration=1,,,,,,,,,,--- -XML (Debug):Entity=6,,,,,,,,,,--- -XML (Debug):Error=13,,,,,,,,,,--- -XML (Debug):Normal Tag=1,,,,,,,,,,--- -XML (Debug):Normal Text=0,,,,,,,,,,--- -XML (Debug):PI content=9,,,,,,,,,,--- -XML (Debug):Processing Instruction=1,,,,,,,,,,--- -XML (Debug):Stylesheet=1,,,,,,,,,,--- -XML (Debug):Value=7,,,,,,,,,,--- - -[Highlighting XML - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -XML:Attribute=9,,,,,,,,,,--- -XML:CDATA=4,,,1,,,,,,,--- -XML:Comment=8,,,,,,,,,,--- -XML:Doctype=2,,,1,,,,,,,--- -XML:Element=1,,,,,,,,,,--- -XML:EntityRef=3,,,,,,,,,,--- -XML:Error=13,,,,,,,,,,--- -XML:Normal Text=0,,,,,,,,,,--- -XML:Other Text=0,,,,,,,,,,--- -XML:PEntityRef=3,,,,,,,,,,--- -XML:Processing Instruction=1,,,,,,,,,,--- -XML:Value=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- - -[Highlighting XUL - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -XUL:Attribute=9,,,,,,,,,,--- -XUL:CDATA=4,,,1,,,,,,,--- -XUL:Char=6,,,,,,,,,,--- -XUL:Comment=8,,,,,,,,,,--- -XUL:Data Type=2,,,,,,,,,,--- -XUL:Decimal=3,,,,,,,,,,--- -XUL:Doctype=2,,,1,,,,,,,--- -XUL:Element=1,,,,,,,,,,--- -XUL:EntityRef=3,,,,,,,,,,--- -XUL:Error=13,,,,,,,,,,--- -XUL:Events=1,fff766d5,ff00ffff,0,0,,,,,,--- -XUL:Float=5,,,,,,,,,,--- -XUL:Function=11,,,,,,,,,,--- -XUL:Keyword=1,,,,,,,,,,--- -XUL:Math=1,ffdba716,ff00ffff,0,0,,,,,,--- -XUL:Normal Text=0,,,,,,,,,,--- -XUL:Objects=1,ff008000,ff00ffff,0,0,,,,,,--- -XUL:PEntityRef=3,,,,,,,,,,--- -XUL:Pattern Character Class=4,,,,,,,,,,--- -XUL:Pattern Internal Operator=5,,,,,,,,,,--- -XUL:Processing Instruction=1,,,,,,,,,,--- -XUL:Region Marker=12,,,,,,,,,,--- -XUL:Regular Expression=9,,,,,,,,,,--- -XUL:String=7,,,,,,,,,,--- -XUL:String Char=6,,,,,,,,,,--- -XUL:Symbol=0,,,,,,,,,,--- -XUL:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting YAML - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -YAML:Alias=2,,,,,,,,,,--- -YAML:Comment=8,,,,,,,,,,--- -YAML:Data Types=2,,,,,,,,,,--- -YAML:Directive=9,,,,,,,,,,--- -YAML:Document Header=9,,,,,,,,,,--- -YAML:End of Document=8,,,,,,,,,,--- -YAML:Error=13,,,,,,,,,,--- -YAML:Hash=0,,,,,,,,,,--- -YAML:Key=11,,,,,,,,,,--- -YAML:List=0,,,,,,,,,,--- -YAML:Normal Text=0,,,,,,,,,,--- -YAML:Operator=1,,,,,,,,,,--- -YAML:Reference=2,,,,,,,,,,--- -YAML:String=0,,,,,,,,,,--- - -[Highlighting Yacc/Bison - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Yacc/Bison:Alert=10,,,,,,,,,,--- -Yacc/Bison:Backslash Code=7,,,1,,,,,,,--- -Yacc/Bison:Comment=8,,,,,,,,,,--- -Yacc/Bison:Content-Type Delimiter=4,,,1,,,,,,,--- -Yacc/Bison:Data Type=2,,,,,,,,,,--- -Yacc/Bison:Definition=0,,,,,,,,,,--- -Yacc/Bison:Directive=1,,,,,,,,,,--- -Yacc/Bison:Normal Text=0,,,,,,,,,,--- -Yacc/Bison:Rule=7,,,,,,,,,,--- -Yacc/Bison:String=7,,,,,,,,,,--- -Yacc/Bison:String Char=6,,,,,,,,,,--- - -[Highlighting Zonnon - Schema mssola-solarized] -Zonnon:Comment=8,,,,,,,,,,--- -Zonnon:Keyword=1,,,,,,,,,,--- -Zonnon:Modifier=9,,,,,,,,,,--- -Zonnon:Normal Text=0,,,,,,,,,,--- -Zonnon:Number=3,,,,,,,,,,--- -Zonnon:Predefine=1,,,,1,,,,,,--- -Zonnon:String=7,,,,,,,,,,--- -Zonnon:Type=2,,,,,,,,,,--- - -[Highlighting Zsh - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Zsh:Backquote=1,,,,,,,,,,--- -Zsh:Builtin=1,ff880088,,,,,,,,,--- -Zsh:Command=1,ffcc00cc,,,,,,,,,--- -Zsh:Comment=8,,,,,,,,,,--- -Zsh:Control=1,,,,,,,,,,--- -Zsh:Error=13,,,,,,,,,,--- -Zsh:Escape=2,,,,,,,,,,--- -Zsh:Expression=9,,,,,,,,,,--- -Zsh:Function=11,,,,,,,,,,--- -Zsh:Keyword=1,,,,,,,,,,--- -Zsh:Normal Text=0,,,,,,,,,,--- -Zsh:Option=0,,,,,,,,,,--- -Zsh:Path=0,,,,,,,,,,--- -Zsh:Redirection=1,ff223388,,,,,,,,,--- -Zsh:String DoubleQ=7,,,,,,,,,,--- -Zsh:String Escape=2,,,,,,,,,,--- -Zsh:String SingleQ=7,,,,,,,,,,--- -Zsh:String Transl.=7,,,,,,,,,,--- -Zsh:Variable=9,,,,,,,,,,--- - -[Highlighting dot - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -dot:Attribute=2,,,,,,,,,,--- -dot:Comment=8,,,,,,,,,,--- -dot:Error=13,,,,,,,,,,--- -dot:Identifier=11,,,,,,,,,,--- -dot:Keyword=1,,,,,,,,,,--- -dot:Normal Text=0,,,,,,,,,,--- -dot:Number=3,,,,,,,,,,--- -dot:String=7,,,,,,,,,,--- -dot:String Char=6,,,,,,,,,,--- -dot:Symbol=9,,,,,,,,,,--- - -[Highlighting ferite - Schema mssola-solarized] -ferite:Alert=10,,,,,,,,,,--- -ferite:Char=6,,,,,,,,,,--- -ferite:Comment=8,,,,,,,,,,--- -ferite:Data Type=2,,,,,,,,,,--- -ferite:Decimal=3,,,,,,,,,,--- -ferite:Float=5,,,,,,,,,,--- -ferite:Hex=4,,,,,,,,,,--- -ferite:Keyword=1,,,,,,,,,,--- -ferite:Normal Text=0,,,,,,,,,,--- -ferite:Octal=4,,,,,,,,,,--- -ferite:Prep. Lib=9,,,,,,,,,,--- -ferite:Preprocessor=9,,,,,,,,,,--- -ferite:String=7,,,,,,,,,,--- -ferite:String Char=6,,,,,,,,,,--- -ferite:Symbol=0,,,,,,,,,,--- - -[Highlighting fstab - Schema mssola-solarized] -fstab:Comment=8,,,,,,,,,,--- -fstab:Device=1,,,,,,,,,,--- -fstab:Dump=3,,,,,,,,,,--- -fstab:Error=13,,,,,,,,,,--- -fstab:Mount Point=2,,,,,,,,,,--- -fstab:Normal=0,,,,,,,,,,--- -fstab:Options=1,,,,,,,,,,--- -fstab:Pass=3,,,,,,,,,,--- -fstab:Type=11,,,,,,,,,,--- -fstab:Valid FileSystem=2,,,,1,,,,,,--- - -[Highlighting k - Schema mssola-solarized] -k:Comment=8,,,,,,,,,,--- -k:CommentToEOF=8,,,,,,,,,,--- -k:DotQfunctions=1,,,,,,,,,,--- -k:Dothfunctions=1,,,,,,,,,,--- -k:Dotofunctions=1,,,,,,,,,,--- -k:Dotqfunctions=1,,,,,,,,,,--- -k:Dotzfunctions=1,,,,,,,,,,--- -k:FlowControl=1,,,,,,,,,,--- -k:MultiLineComment=8,,,,,,,,,,--- -k:Normal Text=0,,,,,,,,,,--- -k:String=7,,,,,,,,,,--- -k:Todos=8,,,,,,,,,,--- -k:kBool=4,,,,,,,,,,--- -k:kByte=4,,,,,,,,,,--- -k:kDateTime=9,,,,,,,,,,--- -k:kGuid=4,,,,,,,,,,--- -k:kHSym=9,,,,,,,,,,--- -k:kIdentifier=0,,,,,,,,,,--- -k:kKeyword=1,,,,,,,,,,--- -k:kNumber=3,,,,,,,,,,--- -k:kSeparators=0,,,,,,,,,,--- -k:kSymbol=9,,,,,,,,,,--- -k:kSystemCommand=9,,,,,,,,,,--- - -[Highlighting mergetag text - Schema mssola-solarized] -mergetag text:Binary=4,,,,,,,,,,--- -mergetag text:Brackets=1,,,,,,,,,,--- -mergetag text:Char=6,,,,,,,,,,--- -mergetag text:Comment=8,,,,,,,,,,--- -mergetag text:Comment Brackets=8,ff404040,,,0,,,,,,--- -mergetag text:Error=13,,,,,,,,,,--- -mergetag text:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -mergetag text:Float=5,,,,,,,,,,--- -mergetag text:Hex=4,,,,,,,,,,--- -mergetag text:ID=9,,,,,,,,,,--- -mergetag text:Integer=3,,,,,,,,,,--- -mergetag text:Normal Text=0,,,,,,,,,,--- -mergetag text:Octal=4,,,,,,,,,,--- -mergetag text:String=7,,,,,,,,,,--- -mergetag text:Tag Character=1,ff008040,,,,,,,,,--- -mergetag text:Type=2,,,,,,,,,,--- - -[Highlighting nesC - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -nesC:Char=6,,,,,,,,,,--- -nesC:Comment=8,,,,,,,,,,--- -nesC:Data Type=2,,,,,,,,,,--- -nesC:Decimal=3,,,,,,,,,,--- -nesC:Float=5,,,,,,,,,,--- -nesC:Function=1,ff000080,ffffffff,0,0,,,,,,--- -nesC:Hex=4,,,,,,,,,,--- -nesC:Keyword=1,,,,,,,,,,--- -nesC:Normal Text=0,,,,,,,,,,--- -nesC:Octal=4,,,,,,,,,,--- -nesC:Prep. Lib=9,,,,,,,,,,--- -nesC:Preprocessor=9,,,,,,,,,,--- -nesC:String=7,,,,,,,,,,--- -nesC:String Char=6,,,,,,,,,,--- -nesC:Symbol=0,,,,,,,,,,--- - -[Highlighting noweb - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -noweb:Code=0,,,,,,,,,,--- -noweb:Prose=0,,,,,,,,,,--- -noweb:Punctuation=12,,,1,,,,,,,--- -noweb:SectionName=12,,,,1,,,,,,--- - -[Highlighting progress - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -progress:Alert=10,,,,,,,,,,--- -progress:Attributes=2,,,,,,,,,,--- -progress:Comment=8,,,,,,,,,,--- -progress:Data_Type=2,,,,,,,,,,--- -progress:Decimal=3,,,,,,,,,,--- -progress:Function=11,,,,,,,,,,--- -progress:Handles=3,,,,,,,,,,--- -progress:Identifier=9,,,,,,,,,,--- -progress:Integer=4,,,,,,,,,,--- -progress:Methods=9,,,,,,,,,,--- -progress:Normal Text=0,,,,,,,,,,--- -progress:Operators=3,,,,,,,,,,--- -progress:Phrases=1,,,,,,,,,,--- -progress:Preprocvar=6,,,,,,,,,,--- -progress:Properties=9,,,,,,,,,,--- -progress:Region Marker=12,,,,,,,,,,--- -progress:Statements=1,,,,,,,,,,--- -progress:String=7,,,,,,,,,,--- -progress:String Char=6,,,,,,,,,,--- -progress:Symbol=6,,,,,,,,,,--- -progress:Widgets=1,,,,,,,,,,--- - -[Highlighting q - Schema mssola-solarized] -k:Comment=8,,,,,,,,,,--- -k:CommentToEOF=8,,,,,,,,,,--- -k:DotQfunctions=1,,,,,,,,,,--- -k:Dothfunctions=1,,,,,,,,,,--- -k:Dotofunctions=1,,,,,,,,,,--- -k:Dotqfunctions=1,,,,,,,,,,--- -k:Dotzfunctions=1,,,,,,,,,,--- -k:FlowControl=1,,,,,,,,,,--- -k:MultiLineComment=8,,,,,,,,,,--- -k:Normal Text=0,,,,,,,,,,--- -k:String=7,,,,,,,,,,--- -k:Todos=8,,,,,,,,,,--- -k:kBool=4,,,,,,,,,,--- -k:kByte=4,,,,,,,,,,--- -k:kDateTime=9,,,,,,,,,,--- -k:kGuid=4,,,,,,,,,,--- -k:kHSym=9,,,,,,,,,,--- -k:kIdentifier=0,,,,,,,,,,--- -k:kKeyword=1,,,,,,,,,,--- -k:kNumber=3,,,,,,,,,,--- -k:kSeparators=0,,,,,,,,,,--- -k:kSymbol=9,,,,,,,,,,--- -k:kSystemCommand=9,,,,,,,,,,--- -q:DotQfunctions=1,,,,,,,,,,--- -q:Normal Text=0,,,,,,,,,,--- -q:qKeyword=1,,,,,,,,,,--- - -[Highlighting reStructuredText - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -CMake:Builtin CMake Variable=3,ffc09050,ffc09050,,,,,,,,--- -CMake:CMake Variable=3,,,,,,,,,,--- -CMake:Commands=1,,,,,,,,,,--- -CMake:Comment=8,,,,,,,,,,--- -CMake:Environment Variable=5,,,,,,,,,,--- -CMake:Escapes=6,,,,,,,,,,--- -CMake:Generator Expression=9,ffb86050,ffb86050,,,,,,,,--- -CMake:Generator Expression Keyword=1,ffb84040,ffb84040,,,,,,,,--- -CMake:Macros=11,,,,,,,,,,--- -CMake:Normal Text=0,,,,,,,,,,--- -CMake:Properties=9,,,,,,,,,,--- -CMake:Region Marker=12,,,,,,,,,,--- -CMake:Special Args=9,,,,,,,,,,--- -CMake:Strings=7,,,,,,,,,,--- -CMake:Third-Party Commands=11,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -reStructuredText:Bold=0,,,1,,,,,,,--- -reStructuredText:CMakeCode=2,,,,,,,,,,--- -reStructuredText:Citation=2,,,,,,,,,,--- -reStructuredText:Code=2,,,,,,,,,,--- -reStructuredText:CppCode=2,,,,,,,,,,--- -reStructuredText:Directive=2,,,,,,,,,,--- -reStructuredText:Field=11,,,,,,,,,,--- -reStructuredText:Footnote=2,,,,,,,,,,--- -reStructuredText:FootnoteReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkRefOrInterpretedText=9,,,,,,,,,,--- -reStructuredText:HyperlinkReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkTarget=2,,,,,,,,,,--- -reStructuredText:InlineInternalTarget=11,,,,,,,,,,--- -reStructuredText:InlineLiteral=7,,,,,,,,,,--- -reStructuredText:Italic=0,,,,1,,,,,,--- -reStructuredText:Monospaced=0,ff006600,,,,,,,,,--- -reStructuredText:Normal=0,,,,,,,,,,--- -reStructuredText:Role=0,,,1,,,,,,,--- -reStructuredText:SubstitutionDefinition=2,,,,,,,,,,--- -reStructuredText:SubstitutionReference=11,,,,,,,,,,--- - -[Highlighting scilab - Schema mssola-solarized] -scilab:Comment=8,,,,,,,,,,--- -scilab:Constants-keyword=0,ff008080,ff00ffff,1,0,,,,,,--- -scilab:Control-keywords=0,ff800000,ffff0000,1,0,,,,,,--- -scilab:Decimal=3,,,,,,,,,,--- -scilab:Float=5,,,,,,,,,,--- -scilab:Function-keywords=11,ff008000,ffffff00,1,0,,,,,,--- -scilab:Normal Text=0,,,,,,,,,,--- -scilab:String=7,,,,,,,,,,--- -scilab:Structure-keywords=0,ff000080,ffffff00,1,0,,,,,,--- -scilab:Warning-keywords=0,ffff0000,ffff0000,1,0,,,,,,--- -scilab:functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- - -[Highlighting sed - Schema mssola-solarized] -sed:Brace=0,,,,,,,,,,--- -sed:Char List=7,,,,,,,,,,--- -sed:Char List Escape=6,,,,,,,,,,--- -sed:Command=1,,,,,,,,,,--- -sed:Comment=8,,,,,,,,,,--- -sed:Error=13,,,,,,,,,,--- -sed:Exit Code=3,,,,,,,,,,--- -sed:Filename=4,,,,,,,,,,--- -sed:Flag=2,,,,,,,,,,--- -sed:Label=11,,,,,,,,,,--- -sed:Last Line=9,ff880088,,1,,,,,,,--- -sed:Line Continue=9,ff000000,,1,,,,,,,--- -sed:Line Number=3,,,,,,,,,,--- -sed:Literal Escape=9,ff00aa00,,,1,,,,,,--- -sed:Literal Text=9,ff008800,,,1,,,,,,--- -sed:Negation=9,ff880088,,1,,,,,,,--- -sed:Normal=0,,,,,,,,,,--- -sed:Regex=7,,,,,,,,,,--- -sed:Regex Escape=6,,,,,,,,,,--- -sed:Repl Escape=6,,,,,,,,,,--- -sed:Repl Number=3,,,,,,,,,,--- -sed:Replacement=7,,,,,,,,,,--- -sed:Separator=7,ff0000ff,,,,,,,,,--- -sed:Step=3,,,,,,,,,,--- -sed:Wrap Length=3,,,,,,,,,,--- - -[Highlighting txt2tags - Schema mssola-solarized] -txt2tags:Bar=0,ffc0c0c0,,,,,,,,,--- -txt2tags:Bold=0,ff445675,,1,,,,,,,--- -txt2tags:BoldItalic=0,,,1,1,,,,,,--- -txt2tags:Comment=0,ff666666,,,1,,,,,,--- -txt2tags:Date=0,ffff0000,,,1,,,,,,--- -txt2tags:DefList=0,ffe300ee,,,,,,,,,--- -txt2tags:Italic=0,ff653a39,,,1,,,,,,--- -txt2tags:Link=0,ff0930de,,,,,,,,,--- -txt2tags:List=0,ffe300ee,,,,,,,,,--- -txt2tags:Monospaced=0,ff006600,,,,,,,,,--- -txt2tags:Normal=0,,,,,,,,,,--- -txt2tags:NumList=0,ffe300ee,,,,,,,,,--- -txt2tags:Quote=0,ffa52a2a,,,,,,,,,--- -txt2tags:Strikeout=0,ff644a9b,,,,1,,,,,--- -txt2tags:Tabel=0,ffff0000,,,,,,,,,--- -txt2tags:Title=0,ff990000,,,,,,,,,--- -txt2tags:Underline=0,ff386742,,,,,,,,,--- -txt2tags:Verbatim Area=0,ff006600,,,,,,,,,--- -txt2tags:Verbatim Line=0,ff006600,,,,,,,,,--- - -[Highlighting vCard, vCalendar, iCalendar - Schema mssola-solarized] -vCard, vCalendar, iCalendar:Assignment=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Attribute=7,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Delimiter=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Parameter key=11,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Parameter value=9,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Property=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:vCard=12,,,,,,,,,,--- - -[Highlighting x.org Configuration - Schema mssola-solarized] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -x.org Configuration:Alert=13,,,,,,,,,,--- -x.org Configuration:Comment=8,,,,,,,,,,--- -x.org Configuration:Float=5,,,,,,,,,,--- -x.org Configuration:Int=3,,,,,,,,,,--- -x.org Configuration:Keyword=1,,,,,,,,,,--- -x.org Configuration:Normal Text=0,,,,,,,,,,--- -x.org Configuration:Section=11,,,,,,,,,,--- -x.org Configuration:Section Name=7,,,,,,,,,,--- -x.org Configuration:Value=2,,,,,,,,,,--- -x.org Configuration:Value2=9,,,,,,,,,,--- - -[Highlighting xHarbour - Schema mssola-solarized] -xHarbour:Comment=8,,,,,,,,,,--- -xHarbour:Function=11,,,,,,,,,,--- -xHarbour:Keyword=1,,,,,,,,,,--- -xHarbour:Normal Text=0,,,,,,,,,,--- -xHarbour:Number=3,ff5050c0,ff000000,0,0,,,,,,--- -xHarbour:Operator=4,ffa01060,ff400040,0,0,,,,,,--- -xHarbour:Preprocessor=9,,,,,,,,,,--- -xHarbour:String=7,,,,,,,,,,--- - -[Highlighting xslt - Schema mssola-solarized] -xslt:Alert=10,,,,,,,,,,--- -xslt:Attribute=9,,,,,,,,,,--- -xslt:Attribute Value=7,ff800000,ffffffff,0,0,,,,,,--- -xslt:CDATA=4,,,1,,,,,,,--- -xslt:Comment=8,,,,,,,,,,--- -xslt:Doctype=2,,,1,,,,,,,--- -xslt:Entity Reference=3,,,,,,,,,,--- -xslt:Invalid=13,,,,,,,,,,--- -xslt:Normal Text=0,,,,,,,,,,--- -xslt:PEntity Reference=3,,,,,,,,,,--- -xslt:Processing Instruction=1,,,,,,,,,,--- -xslt:Tag=1,,,,,,,,,,--- -xslt:Variable=0,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath=9,ff008080,ffffffff,0,0,,,,,,--- -xslt:XPath 2.0/ XSLT 2.0 Function=1,ff008080,ffffffff,1,0,,,,,,--- -xslt:XPath Attribute=0,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath Axis=1,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath String=7,ff800000,ffffffff,0,0,,,,,,--- -xslt:XPath/ XSLT Function=1,ff008080,ffffffff,1,0,,,,,,--- -xslt:XSLT 2.0 Tag=1,ff000080,ffffffff,1,0,,,,,,--- -xslt:XSLT Tag=1,ff000080,ffffffff,1,0,,,,,,--- - -[Highlighting yacas - Schema mssola-solarized] -yacas:Char=6,,,,,,,,,,--- -yacas:Comment=8,,,,,,,,,,--- -yacas:Decimal=3,,,,,,,,,,--- -yacas:Float=5,,,,,,,,,,--- -yacas:Highlight=10,,,,,,,,,,--- -yacas:Keyword=1,,,,,,,,,,--- -yacas:Normal Text=0,,,,,,,,,,--- -yacas:Parens=0,,,,,,,,,,--- -yacas:String=7,,,,,,,,,,--- -yacas:Symbol=9,,,,,,,,,,--- - -[KateSchema] -Font=Monospace,9,-1,5,50,0,0,0,0,0 -full schema=true -highlightings=None,Asm6502,AVR Assembler,GNU Assembler,Intel x86 (FASM),Intel x86 (NASM),MIPS Assembler,Motorola 68k (VASM/Devpac),Motorola DSP56k,PicAsm,.desktop,Apache Configuration,Asterisk,Cisco,fstab,INI Files,mergetag text,Nagios,Varnish Configuration Language,Varnish Test Case language,WINE Config,x.org Configuration,4GL,4GL-PER,LDIF,progress,SQL,SQL (MySQL),SQL (PostgreSQL),Error: /home/mssola/kde/share/apps/katepart/syntax/lilypond.xml,AHDL,Spice,SystemC,SystemVerilog,Vera,Verilog,VHDL,ASN.1,ASP,BibTeX,CleanCSS,ColdFusion,ConTeXt,CSS,Django HTML Template,Doxygen,DoxygenLua,DTD,GlossTex,GNU Gettext,Haml,HTML,Javadoc,Jira,JSON,JSP,Kate File Template,LaTeX,LESSCSS,MAB-DB,Mako,Markdown,MediaWiki,Metapost/Metafont,Pango,PostScript,PostScript Printer Description,RELAX NG,RelaxNG-Compact,Restructured Text,reStructuredText,Roff,Ruby/Rails/RHTML,SCSS,SGML,SiSU,Texinfo,Textile,Troff Mandoc,TT2,txt2tags,vCard\\, vCalendar\\, iCalendar,VRML,Wesnoth Markup Language,XML,XML (Debug),xslt,XUL,YAML,ABC,Alerts,Alerts_indent,ChangeLog,CMake,CSS/PHP,CUE Sheet,Debian Changelog,Debian Control,Diff,Email,GDB Backtrace,Git Rebase,Jam,JavaScript/PHP,JavaScript/PlasmaDesktop,M3U,Makefile,Modelines,Music Publisher,PGN,POV-Ray,QMake,RenderMan RIB,RPM Spec,Valgrind Suppression,Ansys,B-Method,dot,GAP,GDL,Matlab,Maxima,Octave,scilab,TI Basic,yacas,AMPLE,AutoHotKey,AWK,Bash,Chicken,CoffeeScript,CubeScript,Erlang,Euphoria,ferite,GNU Linker Script,Gnuplot,JavaScript,k,LSL,Lua,Mason,MEL,MS-DOS Batch,Perl,PHP (HTML),PHP/PHP,Pig,Pike,Python,q,QML,Quake Script,R Script,REXX,Ruby,Scheme,sed,Sieve,Tcl/Tk,Tcsh,UnrealScript,Velocity,Zsh,ABAP,ActionScript 2.0,Ada,ANS-Forth94,ANSI C89,Boo,C,C#,C++,C++11,C++11/Qt4,Cg,CGiS,Clipper,Clojure,Common Lisp,Component-Pascal,Crack,Curry,D,E Language,Eiffel,Fortran,FreeBASIC,FSharp,GCCExtensions,GLSL,GNU M4,Go,Haskell,Haxe,IDL,ILERPG,Inform,Java,Julia,KBasic,KDev-PG[-Qt] Grammar,Lex/Flex,Literate Curry,Literate Haskell,Logtalk,LPC,Modelica,Modula-2,MonoBasic,Nemerle,nesC,noweb,Objective Caml,Objective-C,Objective-C++,OORS,OPAL,OpenCL,Pascal,Prolog,Protobuf,PureBasic,RapidQ,RSI IDL,Rust,Sather,Scala,SML,Stata,TADS 3,Vala,xHarbour,Yacc/Bison,Zonnon -schema=mssola-solarized diff --git a/kte/colors/mssola.kateschema b/kte/colors/mssola.kateschema deleted file mode 100644 index 76b66a1..0000000 --- a/kte/colors/mssola.kateschema +++ /dev/null @@ -1,6757 +0,0 @@ -[Default Item Styles - Schema mssola] -Alert=ffbf0303,ff9c0e0e,1,,,,fff7e6e6,-,,--- -Base-N Integer=ff000080,ffffdd00,,,,,-,-,,--- -Character=ffff00ff,ff6c2477,,,,,-,-,,--- -Comment=ff898887,ffc7e2f8,,1,,,-,-,,--- -Data Type=ff400000,ff00316e,,,,,-,-,,--- -Decimal/Value=ff000080,ffffdd00,,,,,-,-,,--- -Error=ffbf0303,ff9c0e0e,,,,,-,-,,--- -Floating Point=ff800080,ffffdd00,,,,,-,-,,--- -Function=ff644a9b,ff452886,,,,,-,-,,--- -Keyword=ff1f1c1b,ffffffff,1,,,,-,-,,--- -Normal=ff1f1c1b,ffffffff,,,,,-,-,,--- -Others=ff006e28,ff80ff80,,,,,-,-,,--- -Region Marker=ff0057ae,ff00316e,,,,,ffe0e9f8,-,,--- -String=ffbf0303,ff9c0e0e,,,,,-,-,,--- - -[Editor Colors] -Color Background=255,255,255 -Color Code Folding=148,202,239 -Color Highlighted Bracket=237,249,255 -Color Highlighted Line=248,247,246 -Color Icon Bar=214,210,208 -Color Indentation Line=210,210,210 -Color Line Number=34,31,30 -Color MarkType 1=0,0,255 -Color MarkType 2=255,0,0 -Color MarkType 3=255,255,0 -Color MarkType 4=255,0,255 -Color MarkType 5=160,160,164 -Color MarkType 6=0,255,0 -Color MarkType 7=255,0,0 -Color Modified Lines=247,230,230 -Color Replace Highlight=0,255,0 -Color Saved Lines=186,249,206 -Color Search Highlight=255,255,0 -Color Selection=148,202,239 -Color Separator=137,136,135 -Color Spelling Mistake Line=191,3,3 -Color Tab Marker=210,210,210 -Color Template Background=214,210,208 -Color Template Editable Placeholder=186,249,206 -Color Template Focused Editable Placeholder=118,218,152 -Color Template Not Editable Placeholder=247,230,230 -Color Word Wrap Marker=237,237,237 - -[Highlighting .desktop - Schema mssola] -.desktop:Comment=8,,,,,,,,,,--- -.desktop:Key=2,,,,,,,,,,--- -.desktop:Language=3,,,1,,,,,,,--- -.desktop:Normal Text=0,,,,,,,,,,--- -.desktop:Section=1,,,,,,,,,,--- - -[Highlighting 4GL - Schema mssola] -4GL:Alert=10,,,,,,,,,,--- -4GL:Char=6,,,,,,,,,,--- -4GL:Comment=8,,,,,,,,,,--- -4GL:Data Type=2,,,,,,,,,,--- -4GL:Decimal=3,,,,,,,,,,--- -4GL:Float=5,,,,,,,,,,--- -4GL:Hex=4,,,,,,,,,,--- -4GL:Keyword=1,,,,,,,,,,--- -4GL:Normal Text=0,,,,,,,,,,--- -4GL:Octal=4,,,,,,,,,,--- -4GL:Prep. Lib=9,,,,,,,,,,--- -4GL:Preprocessor=9,,,,,,,,,,--- -4GL:String=7,,,,,,,,,,--- -4GL:String Char=6,,,,,,,,,,--- -4GL:Symbol=0,,,,,,,,,,--- - -[Highlighting 4GL-PER - Schema mssola] -4GL-PER:Alert=10,,,,,,,,,,--- -4GL-PER:Char=6,,,,,,,,,,--- -4GL-PER:Comment=8,,,,,,,,,,--- -4GL-PER:Data Type=2,,,,,,,,,,--- -4GL-PER:Decimal=3,,,,,,,,,,--- -4GL-PER:Float=5,,,,,,,,,,--- -4GL-PER:Hex=4,,,,,,,,,,--- -4GL-PER:Keyword=1,,,,,,,,,,--- -4GL-PER:Normal Text=0,,,,,,,,,,--- -4GL-PER:Octal=4,,,,,,,,,,--- -4GL-PER:Prep. Lib=9,,,,,,,,,,--- -4GL-PER:Preprocessor=9,,,,,,,,,,--- -4GL-PER:String=7,,,,,,,,,,--- -4GL-PER:String Char=6,,,,,,,,,,--- -4GL-PER:Symbol=0,,,,,,,,,,--- - -[Highlighting ABAP - Schema mssola] -ABAP:Comment=8,,,,,,,,,,--- -ABAP:Keyword=1,,,,,,,,,,--- -ABAP:Normal Text=0,,,,,,,,,,--- -ABAP:Symbol=0,,,,,,,,,,--- - -[Highlighting ABC - Schema mssola] -ABC:Bar=6,ff0000ff,,,,,,,,,--- -ABC:Comment=8,,,,,,,,,,--- -ABC:Decoration=5,ff00bbaa,,,,,,,,,--- -ABC:Header=5,,,,,,,,,,--- -ABC:Lyrics=2,ff00bb00,,,,,,,,,--- -ABC:Normal Text=0,,,,,,,,,,--- -ABC:Notes=1,,,1,,,,,,,--- -ABC:Preprocessor=7,,,,1,,,,,,--- -ABC:Sharp=0,ff22bb66,,1,,,,,,,--- -ABC:Slur=2,,,1,,,,,,,--- -ABC:String=7,,,1,,,,,,,--- -ABC:Tuplet=2,ffbb00bb,,,,,,,,,--- - -[Highlighting AHDL - Schema mssola] -AHDL:Bit=3,,,,,,,,,,--- -AHDL:Char=6,,,,,,,,,,--- -AHDL:Comment=8,,,,,,,,,,--- -AHDL:Data Type=2,,,,,,,,,,--- -AHDL:Decimal=3,,,,,,,,,,--- -AHDL:Hex=4,,,,,,,,,,--- -AHDL:Keyword=1,,,,,,,,,,--- -AHDL:Normal Text=0,,,,,,,,,,--- -AHDL:Octal=4,,,,,,,,,,--- -AHDL:Operator=9,,,,,,,,,,--- -AHDL:Region Marker=12,,,,,,,,,,--- -AHDL:String=7,,,,,,,,,,--- - -[Highlighting AMPLE - Schema mssola] -AMPLE:Alert=10,,,,,,,,,,--- -AMPLE:Base Functions=0,ff0a7700,,,,,,,,,--- -AMPLE:CUI Functions=0,ff0a7700,,,,,,,,,--- -AMPLE:Char=6,,,,,,,,,,--- -AMPLE:Comment=8,,,,,,,,,,--- -AMPLE:DVE Functions=0,ff0a775c,,,,,,,,,--- -AMPLE:Data Type=2,,,,,,,,,,--- -AMPLE:Decimal=3,,,,,,,,,,--- -AMPLE:Error=13,,,,,,,,,,--- -AMPLE:Float=5,,,,,,,,,,--- -AMPLE:Keyword=1,,,,,,,,,,--- -AMPLE:Layout Functions=0,ff007720,,,,,,,,,--- -AMPLE:Normal Text=0,,,,,,,,,,--- -AMPLE:Prep. Lib=9,,,,,,,,,,--- -AMPLE:Preprocessor=9,,,,,,,,,,--- -AMPLE:Region Marker=12,,,,,,,,,,--- -AMPLE:Reserved Variables=0,ffff0000,,,,,,,,,--- -AMPLE:Schematic Functions=0,ff0a7701,,,,,,,,,--- -AMPLE:String=7,,,,,,,,,,--- -AMPLE:String Char=6,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting ANS-Forth94 - Schema mssola] -ANS-Forth94:Alert=10,,,,,,,,,,--- -ANS-Forth94:Block Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Block Keyword=1,,,,,,,,,,--- -ANS-Forth94:Char=6,,,,,,,,,,--- -ANS-Forth94:Comment=8,,,,,,,,,,--- -ANS-Forth94:Constant=2,,,,,,,,,,--- -ANS-Forth94:Core Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Core Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Number=4,,,,,,,,,,--- -ANS-Forth94:Exception Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Exception Keyword=1,,,,,,,,,,--- -ANS-Forth94:Facility Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Facility Keyword=1,,,,,,,,,,--- -ANS-Forth94:File Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:File Keyword=1,,,,,,,,,,--- -ANS-Forth94:Float=5,,,,,,,,,,--- -ANS-Forth94:Floating Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Floating Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Variable=2,,,,,,,,,,--- -ANS-Forth94:Memory Keyword=1,,,,,,,,,,--- -ANS-Forth94:Normal Text=0,,,,,,,,,,--- -ANS-Forth94:Obs Core Ext Keyword=1,ffff0000,,,,,,,,,--- -ANS-Forth94:Obs Tools Ext Keyword=1,ffff0000,,,,,,,,,--- -ANS-Forth94:Search Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Search Keyword=1,,,,,,,,,,--- -ANS-Forth94:Single Number=4,,,,,,,,,,--- -ANS-Forth94:String=7,,,,,,,,,,--- -ANS-Forth94:String Keyword=1,,,,,,,,,,--- -ANS-Forth94:Tools Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Tools Keyword=1,,,,,,,,,,--- -ANS-Forth94:Variable=2,,,,,,,,,,--- -ANS-Forth94:Word=11,,,,,,,,,,--- - -[Highlighting ANSI C89 - Schema mssola] -ANSI C89:Char=6,,,,,,,,,,--- -ANSI C89:Comment=8,,,,,,,,,,--- -ANSI C89:Data Type=2,,,,,,,,,,--- -ANSI C89:Decimal=3,,,,,,,,,,--- -ANSI C89:Float=5,,,,,,,,,,--- -ANSI C89:Hex=4,,,,,,,,,,--- -ANSI C89:Keyword=1,,,,,,,,,,--- -ANSI C89:Normal Text=0,,,,,,,,,,--- -ANSI C89:Octal=4,,,,,,,,,,--- -ANSI C89:Prep. Lib=9,,,,,,,,,,--- -ANSI C89:Preprocessor=9,,,,,,,,,,--- -ANSI C89:String=7,,,,,,,,,,--- -ANSI C89:String Char=6,,,,,,,,,,--- -ANSI C89:Symbol=0,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- - -[Highlighting ASN.1 - Schema mssola] -ASN.1:Comment=8,,,,,,,,,,--- -ASN.1:Data Type=2,,,,,,,,,,--- -ASN.1:Keyword=1,,,,,,,,,,--- -ASN.1:Normal Text=0,,,,,,,,,,--- - -[Highlighting ASP - Schema mssola] -ASP:ASP Text=0,,,,,,,,,,--- -ASP:Comment=8,,,,,,,,,,--- -ASP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -ASP:Decimal=3,,,,,,,,,,--- -ASP:Escape Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -ASP:Float=5,,,,,,,,,,--- -ASP:Function=1,ff0000ff,ff00ffff,0,0,,,,,,--- -ASP:HTML Comment=8,,,,,,,,,,--- -ASP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -ASP:Hex=4,,,,,,,,,,--- -ASP:Identifier=9,,,,,,,,,,--- -ASP:Keyword=1,,,,,,,,,,--- -ASP:Normal Text=0,,,,,,,,,,--- -ASP:Octal=4,,,,,,,,,,--- -ASP:Other=9,,,,,,,,,,--- -ASP:String=7,,,,,,,,,,--- -ASP:Types=2,,,,,,,,,,--- -ASP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting AVR Assembler - Schema mssola] -AVR Assembler:Binary=4,,,,,,,,,,--- -AVR Assembler:Char=6,,,,,,,,,,--- -AVR Assembler:Comment=8,,,,,,,,,,--- -AVR Assembler:Decimal=3,,,,,,,,,,--- -AVR Assembler:Float=5,,,,,,,,,,--- -AVR Assembler:Hex=4,,,,,,,,,,--- -AVR Assembler:Keyword=1,,,,,,,,,,--- -AVR Assembler:Label=11,,,,,,,,,,--- -AVR Assembler:Normal Text=0,,,,,,,,,,--- -AVR Assembler:Octal=4,,,,,,,,,,--- -AVR Assembler:Preprocessor=9,,,,,,,,,,--- -AVR Assembler:String=7,,,,,,,,,,--- -AVR Assembler:String Char=6,,,,,,,,,,--- -AVR Assembler:Symbol=0,,,,,,,,,,--- - -[Highlighting AWK - Schema mssola] -AWK:Builtin=2,,,,,,,,,,--- -AWK:CharClass=7,ff008080,,,,,,,,,--- -AWK:Comment=8,,,,,,,,,,--- -AWK:Custom=7,ff449944,,,,,,,,,--- -AWK:Decimal=3,,,,,,,,,,--- -AWK:Error=13,,,,,,,,,,--- -AWK:Escape=7,ff4a5704,,,,,,,,,--- -AWK:Field=9,,,,,,,,,,--- -AWK:Float=5,,,,,,,,,,--- -AWK:Function=11,,,,,,,,,,--- -AWK:Keyword=1,,,,,,,,,,--- -AWK:Normal=0,,,,,,,,,,--- -AWK:Operator=0,ffff80e0,,,,,,,,,--- -AWK:Regex=7,ff4a5704,,,,,,,,,--- -AWK:Regex Op=9,ffff80e0,,,,,,,,,--- -AWK:Special=1,ffff9225,,0,,,,,,,--- -AWK:String=7,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- - -[Highlighting ActionScript 2.0 - Schema mssola] -ActionScript 2.0:Char=6,,,,,,,,,,--- -ActionScript 2.0:Classes=0,ff660066,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Comment=8,,,,,,,,,,--- -ActionScript 2.0:Constants=0,ff003300,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Data Type=2,,,,,,,,,,--- -ActionScript 2.0:Decimal=3,,,,,,,,,,--- -ActionScript 2.0:Float=5,,,,,,,,,,--- -ActionScript 2.0:Function=11,,,,,,,,,,--- -ActionScript 2.0:Global Functions=0,ff006666,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Hex=4,,,,,,,,,,--- -ActionScript 2.0:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -ActionScript 2.0:Keyword=1,,,,,,,,,,--- -ActionScript 2.0:Normal Text=0,,,,,,,,,,--- -ActionScript 2.0:Octal=4,,,,,,,,,,--- -ActionScript 2.0:Properties=0,ff000033,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -ActionScript 2.0:String=7,,,,,,,,,,--- -ActionScript 2.0:String Char=6,,,,,,,,,,--- -ActionScript 2.0:Symbol=0,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Ada - Schema mssola] -Ada:Base-N=4,,,,,,,,,,--- -Ada:Char=6,,,,,,,,,,--- -Ada:Comment=8,,,,,,,,,,--- -Ada:Data Type=2,,,,,,,,,,--- -Ada:Decimal=3,,,,,,,,,,--- -Ada:Float=5,,,,,,,,,,--- -Ada:Keyword=1,,,,,,,,,,--- -Ada:Normal Text=0,,,,,,,,,,--- -Ada:Pragmas=1,ff0095ff,ffffffff,1,0,,,,,,--- -Ada:Region Marker=12,,,,,,,,,,--- -Ada:String=7,,,,,,,,,,--- -Ada:Symbol=0,,,,,,,,,,--- - -[Highlighting Alerts - Schema mssola] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,,,fff6e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff6e6e6,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- - -[Highlighting Alerts_indent - Schema mssola] -Alerts_indent:Alert=10,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- - -[Highlighting Ansys - Schema mssola] -Ansys:APDLcmd=11,,,,,,,,,,--- -Ansys:AUX12cmds=11,,,,,,,,,,--- -Ansys:AUX15cmds=11,,,,,,,,,,--- -Ansys:AUX2cmds=11,,,,,,,,,,--- -Ansys:AUX3cmds=11,,,,,,,,,,--- -Ansys:Commands=9,,,,,,,,,,--- -Ansys:DBcmd=11,,,,,,,,,,--- -Ansys:DISPLAYcmds=11,,,,,,,,,,--- -Ansys:GRPH_cmds=11,,,,,,,,,,--- -Ansys:Keyword=1,,,,,,,,,,--- -Ansys:Labels=6,,,,,,,,,,--- -Ansys:MatProp=2,,,,,,,,,,--- -Ansys:Normal Text=0,,,,,,,,,,--- -Ansys:NumFloat=5,,,,,,,,,,--- -Ansys:NumInt=3,,,,,,,,,,--- -Ansys:OPTIMIZATIONcmds=11,,,,,,,,,,--- -Ansys:POST1Commands=11,,,,,,,,,,--- -Ansys:POST26Commands=11,,,,,,,,,,--- -Ansys:PREP7Commands=11,,,,,,,,,,--- -Ansys:PROBcmds=11,,,,,,,,,,--- -Ansys:REDUORDERcmds=11,,,,,,,,,,--- -Ansys:RUNSTATcmds=11,,,,,,,,,,--- -Ansys:SESSIONcmd=11,,,,,,,,,,--- -Ansys:SOLUCommands=11,,,,,,,,,,--- -Ansys:String=7,,,,,,,,,,--- -Ansys:comment=8,,,,,,,,,,--- -Ansys:error=13,,,,,,,,,,--- -Ansys:functions_arg=1,,,,,,,,,,--- -Ansys:parentesis_not_closed=12,,,,,,,,,,--- -Ansys:variable=9,,,,,,,,,,--- - -[Highlighting Apache Configuration - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Apache Configuration:Alert=13,,,,,,,,,,--- -Apache Configuration:Alternates=1,,,,,,,,,,--- -Apache Configuration:Attribute=9,,,,,,,,,,--- -Apache Configuration:Comment=8,,,,,,,,,,--- -Apache Configuration:Container=11,,,,,,,,,,--- -Apache Configuration:Directives=9,ff0000ff,ff0000ff,1,0,,,,,,--- -Apache Configuration:Float=5,,,,,,,,,,--- -Apache Configuration:Int=5,,,,,,,,,,--- -Apache Configuration:Normal Text=0,,,,,,,,,,--- -Apache Configuration:Other=6,,,,,,,,,,--- -Apache Configuration:String=7,,,,,,,,,,--- - -[Highlighting Asm6502 - Schema mssola] -Asm6502:Command=0,,,,,,,,,,--- -Asm6502:Comment=8,,,,,,,,,,--- -Asm6502:Data Type=2,,,,,,,,,,--- -Asm6502:Decimal=3,,,,,,,,,,--- -Asm6502:Hex=4,,,,,,,,,,--- -Asm6502:Keyword=1,,,,,,,,,,--- -Asm6502:Normal Text=0,,,,,,,,,,--- -Asm6502:Operator=9,,,,,,,,,,--- -Asm6502:Parameter=9,,,,,,,,,,--- -Asm6502:Preprocessor=9,,,,,,,,,,--- -Asm6502:String=7,,,,,,,,,,--- -Asm6502:Substitution=9,,,,,,,,,,--- - -[Highlighting Asterisk - Schema mssola] -Asterisk:Comment=8,,,,,,,,,,--- -Asterisk:Keyword=1,,,,,,,,,,--- -Asterisk:Label=11,,,,,,,,,,--- -Asterisk:Normal Text=0,,,,,,,,,,--- -Asterisk:String=7,,,,,,,,,,--- -Asterisk:Symbol=0,,,,,,,,,,--- - -[Highlighting AutoHotKey - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -AutoHotKey:Char=6,,,,,,,,,,--- -AutoHotKey:Commands=1,ffff6827,,,,,,,,,--- -AutoHotKey:Comment=8,,,,,,,,,,--- -AutoHotKey:Decimal=3,,,,,,,,,,--- -AutoHotKey:Directives=0,ff663300,,1,,,,,,,--- -AutoHotKey:Error=13,,,,,,,,,,--- -AutoHotKey:Float=5,,,,,,,,,,--- -AutoHotKey:Flow of control=1,ffff0900,,,,,,,,,--- -AutoHotKey:Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -AutoHotKey:Hex=4,,,,,,,,,,--- -AutoHotKey:Keys and buttons=0,ff2313d4,,,,,,,,,--- -AutoHotKey:Keywords=1,ffff6827,,,,,,,,,--- -AutoHotKey:Normal Text=0,,,,,,,,,,--- -AutoHotKey:Octal=4,,,,,,,,,,--- -AutoHotKey:Prep. Lib=9,,,,,,,,,,--- -AutoHotKey:Preprocessor=9,,,,,,,,,,--- -AutoHotKey:Region Marker=12,,,,,,,,,,--- -AutoHotKey:String=7,,,,,,,,,,--- -AutoHotKey:String Char=6,,,,,,,,,,--- -AutoHotKey:Symbol=0,,,,,,,,,,--- -AutoHotKey:Variables=1,ff5127b2,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting B-Method - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -B-Method:Comment=8,,,,,,,,,,--- -B-Method:Data Type=2,,,,,,,,,,--- -B-Method:Decimal=3,,,,,,,,,,--- -B-Method:Normal Text=0,,,,,,,,,,--- -B-Method:OperationKeyword=1,ff0000ff,,,,,,,,,--- -B-Method:SectionKeyword=1,ffff0000,,,,,,,,,--- - -[Highlighting Bash - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ff880088,,,,,,,,,--- -Bash:Command=1,ffcc00cc,,,,,,,,,--- -Bash:Comment=8,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ff330033,,,,,,,,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff223388,,,,,,,,,--- -Bash:String DoubleQ=7,,,,,,,,,,--- -Bash:String Escape=2,,,,,,,,,,--- -Bash:String SingleQ=7,,,,,,,,,,--- -Bash:String Transl.=7,,,,,,,,,,--- -Bash:Variable=9,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting BibTeX - Schema mssola] -BibTeX:Command=11,,,,,,,,,,--- -BibTeX:Comment=8,,,,,,,,,,--- -BibTeX:Entry=1,ff0000ff,,,,,,,,,--- -BibTeX:Error=10,,,,,,,,,,--- -BibTeX:Field=2,,,,,,,,,,--- -BibTeX:LatexCommand=6,,,,,,,,,,--- -BibTeX:Normal Text=0,,,,,,,,,,--- -BibTeX:Ref Key=9,,,,,,,,,,--- -BibTeX:String=7,,,,,,,,,,--- - -[Highlighting Boo - Schema mssola] -Boo:Builtin Function=2,,,,,,,,,,--- -Boo:Comment=8,,,,,,,,,,--- -Boo:Complex=9,,,,,,,,,,--- -Boo:Data Type=2,,,,,,,,,,--- -Boo:Definition Keyword=1,,,,,,,,,,--- -Boo:Float=5,,,,,,,,,,--- -Boo:Flow Control Keyword=1,,,,,,,,,,--- -Boo:Hex=9,,,,,,,,,,--- -Boo:Int=3,,,,,,,,,,--- -Boo:Long=9,,,,,,,,,,--- -Boo:Normal Text=0,,,,,,,,,,--- -Boo:Octal=9,,,,,,,,,,--- -Boo:Operator=0,ff000077,,,,,,,,,--- -Boo:Preprocessor=6,,,,,,,,,,--- -Boo:Raw String=7,,,,,,,,,,--- -Boo:Special Variable=9,,,,,,,,,,--- -Boo:String=7,,,,,,,,,,--- -Boo:String Char=6,,,,,,,,,,--- -Boo:String Substitution=0,,,,,,,,,,--- - -[Highlighting C - Schema mssola] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,0,,fff7e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C:Alert=10,ffbf0303,ff9c0e0e,1,,,,fff7e6e6,,,--- -C:Char=6,,,,,,,,,,--- -C:Comment=8,,,,,,,,,,--- -C:Data Type=2,,,,,,,,,,--- -C:Decimal=3,,,,,,,,,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,,,,,,,,,,--- -C:Hex=4,,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,,--- -C:Region Marker=12,,,,,,,,,,--- -C:String=7,,,,,,,,,,--- -C:String Char=6,,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting C# - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C#:Char=6,,,,,,,,,,--- -C#:Comment=8,,,,,,,,,,--- -C#:Data Type=2,,,,,,,,,,--- -C#:Decimal=3,,,,,,,,,,--- -C#:Float=5,,,,,,,,,,--- -C#:Function=11,,,,,,,,,,--- -C#:Hex=4,,,,,,,,,,--- -C#:Keyword=1,,,,,,,,,,--- -C#:Normal Text=0,,,,,,,,,,--- -C#:Octal=4,,,,,,,,,,--- -C#:String=7,,,,,,,,,,--- -C#:String Char=6,,,,,,,,,,--- -C#:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting C++ - Schema mssola] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,ff800000,ff00316e,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,ff9c0e0e,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting C++11 - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++11:Attribute=1,,,0,1,,,,,,--- -C++11:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++11:CONSTS/MACROS=0,,,,,,,,,,--- -C++11:Char=6,,,,,,,,,,--- -C++11:Comment=8,,,,,,,,,,--- -C++11:Data Members (m_*)=0,,,,,,,,,,--- -C++11:Data Type=2,,,,,,,,,,--- -C++11:Decimal=3,,,,,,,,,,--- -C++11:Error=13,,,,,,,,,,--- -C++11:Float=5,,,,,,,,,,--- -C++11:Globals (g_*)=0,,,,,,,,,,--- -C++11:Hex=4,,,,,,,,,,--- -C++11:Internals=0,ff808080,ff808080,,,,,,,,--- -C++11:Keyword=1,,,,,,,,,,--- -C++11:Normal Text=0,,,,,,,,,,--- -C++11:Octal=4,,,,,,,,,,--- -C++11:Prep. Lib=9,,,,,,,,,,--- -C++11:Preprocessor=9,,,,,,,,,,--- -C++11:Region Marker=12,,,,,,,,,,--- -C++11:Separator Symbol=0,,,,,,,,,,--- -C++11:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++11:Standard Macros=9,,,,,,,,,,--- -C++11:Statics (s_*)=0,,,,,,,,,,--- -C++11:String=7,,,,,,,,,,--- -C++11:String Char=6,,,,,,,,,,--- -C++11:Symbol=0,,,,,,,,,,--- -C++11:Type Modifiers=2,,,,,,,,,,--- -C++11:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting C++11/Qt4 - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++11/Qt4:Normal Text=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Classes=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Extensions=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Functions=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Macros=0,,,,,,,,,,--- -C++11/Qt4:Qt4 Types=0,,,,,,,,,,--- -C++11:Attribute=1,,,0,1,,,,,,--- -C++11:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++11:CONSTS/MACROS=0,,,,,,,,,,--- -C++11:Char=6,,,,,,,,,,--- -C++11:Comment=8,,,,,,,,,,--- -C++11:Data Members (m_*)=0,,,,,,,,,,--- -C++11:Data Type=2,,,,,,,,,,--- -C++11:Decimal=3,,,,,,,,,,--- -C++11:Error=13,,,,,,,,,,--- -C++11:Float=5,,,,,,,,,,--- -C++11:Globals (g_*)=0,,,,,,,,,,--- -C++11:Hex=4,,,,,,,,,,--- -C++11:Internals=0,ff808080,ff808080,,,,,,,,--- -C++11:Keyword=1,,,,,,,,,,--- -C++11:Normal Text=0,,,,,,,,,,--- -C++11:Octal=4,,,,,,,,,,--- -C++11:Prep. Lib=9,,,,,,,,,,--- -C++11:Preprocessor=9,,,,,,,,,,--- -C++11:Region Marker=12,,,,,,,,,,--- -C++11:Separator Symbol=0,,,,,,,,,,--- -C++11:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++11:Standard Macros=9,,,,,,,,,,--- -C++11:Statics (s_*)=0,,,,,,,,,,--- -C++11:String=7,,,,,,,,,,--- -C++11:String Char=6,,,,,,,,,,--- -C++11:Symbol=0,,,,,,,,,,--- -C++11:Type Modifiers=2,,,,,,,,,,--- -C++11:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting CGiS - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CGiS:Alert=10,,,,,,,,,,--- -CGiS:Char=6,,,,,,,,,,--- -CGiS:Comment=8,,,,,,,,,,--- -CGiS:Data Type=2,,,,,,,,,,--- -CGiS:Decimal=3,,,,,,,,,,--- -CGiS:Float=5,,,,,,,,,,--- -CGiS:Hex=4,,,,,,,,,,--- -CGiS:Hint=9,,,,,,,,,,--- -CGiS:Keyword=1,,,,,,,,,,--- -CGiS:Normal Text=0,,,,,,,,,,--- -CGiS:Octal=4,,,,,,,,,,--- -CGiS:Region Marker=12,,,,,,,,,,--- -CGiS:String=7,,,,,,,,,,--- -CGiS:String Char=6,,,,,,,,,,--- -CGiS:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting CMake - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CMake:Builtin CMake Variable=3,ffc09050,ffc09050,,,,,,,,--- -CMake:CMake Variable=3,,,,,,,,,,--- -CMake:Commands=1,,,,,,,,,,--- -CMake:Comment=8,,,,,,,,,,--- -CMake:Environment Variable=5,,,,,,,,,,--- -CMake:Escapes=6,,,,,,,,,,--- -CMake:Generator Expression=9,ffb86050,ffb86050,,,,,,,,--- -CMake:Generator Expression Keyword=1,ffb84040,ffb84040,,,,,,,,--- -CMake:Macros=11,,,,,,,,,,--- -CMake:Normal Text=0,,,,,,,,,,--- -CMake:Properties=9,,,,,,,,,,--- -CMake:Region Marker=12,,,,,,,,,,--- -CMake:Special Args=9,,,,,,,,,,--- -CMake:Strings=7,,,,,,,,,,--- -CMake:Third-Party Commands=11,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting CSS - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- - -[Highlighting CSS/PHP - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Alert=10,,,,,,,,,,--- -CSS/PHP:At Rule=3,,,,,,,,,,--- -CSS/PHP:Comment=8,,,,,,,,,,--- -CSS/PHP:Error=13,,,,,,,,,,--- -CSS/PHP:Important=1,,,,,,,,,,--- -CSS/PHP:Media=3,,,1,,,,,,,--- -CSS/PHP:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Property=1,,,,,,,,,,--- -CSS/PHP:Region Marker=12,,,,,,,,,,--- -CSS/PHP:Selector Attr=6,,,,,,,,,,--- -CSS/PHP:Selector Class=5,,,,,,,,,,--- -CSS/PHP:Selector Id=5,,,1,,,,,,,--- -CSS/PHP:Selector Pseudo=3,,,,,,,,,,--- -CSS/PHP:String=7,,,,,,,,,,--- -CSS/PHP:Unknown Property=1,,,,1,,,,,,--- -CSS/PHP:Value=2,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting CUE Sheet - Schema mssola] -CUE Sheet:Comment=8,,,,,,,,,,--- -CUE Sheet:Decimal=3,,,,,,,,,,--- -CUE Sheet:Flags=0,ff008000,,,,,,,,,--- -CUE Sheet:Format=0,ff800000,,,,,,,,,--- -CUE Sheet:Keyword=1,,,,,,,,,,--- -CUE Sheet:Mode=0,ff000080,,,,,,,,,--- -CUE Sheet:Normal Text=0,,,,,,,,,,--- -CUE Sheet:String=7,,,,,,,,,,--- - -[Highlighting Cg - Schema mssola] -Cg:Alert=10,,,,,,,,,,--- -Cg:Binding=1,,,,,,,,,,--- -Cg:Comment=8,,,,,,,,,,--- -Cg:Data Type=2,,,,,,,,,,--- -Cg:Decimal=3,,,,,,,,,,--- -Cg:Error=13,,,,,,,,,,--- -Cg:Fixed=5,,,,,,,,,,--- -Cg:Float=5,,,,,,,,,,--- -Cg:Function=11,,,0,,,,,,,--- -Cg:Half=5,,,,,,,,,,--- -Cg:Keyword=1,,,,,,,,,,--- -Cg:Normal Text=0,,,,,,,,,,--- -Cg:StdFunction=11,,,1,,,,,,,--- -Cg:Swizzle=0,,,1,,,,,,,--- -Cg:Symbol=0,,,,,,,,,,--- - -[Highlighting ChangeLog - Schema mssola] -ChangeLog:Date=2,,,,,,,,,,--- -ChangeLog:E-Mail=9,,,,,,,,,,--- -ChangeLog:Entry=3,,,,,,,,,,--- -ChangeLog:Name=1,,,,,,,,,,--- -ChangeLog:Normal Text=0,,,,,,,,,,--- - -[Highlighting Chicken - Schema mssola] -Chicken:BaseN=4,,,,,,,,,,--- -Chicken:Brackets1=0,ffff0000,ff000000,1,0,,,,,,--- -Chicken:Brackets2=0,ffff8800,ff000000,1,0,,,,,,--- -Chicken:Brackets3=0,ff888800,ff000000,1,0,,,,,,--- -Chicken:Brackets4=0,ff008800,ff000000,1,0,,,,,,--- -Chicken:Brackets5=0,ff000088,ff000000,1,0,,,,,,--- -Chicken:Brackets6=0,ff880088,ff000000,1,0,,,,,,--- -Chicken:Char=6,,,,,,,,,,--- -Chicken:Comment=8,,,,,,,,,,--- -Chicken:Data=2,,,,,,,,,,--- -Chicken:Decimal=3,,,,,,,,,,--- -Chicken:Definition=1,ffd22811,,,,,,,,,--- -Chicken:Float=5,,,,,,,,,,--- -Chicken:Function=11,,,,,,,,,,--- -Chicken:Keyword=1,,,,,,,,,,--- -Chicken:Normal=0,,,,,,,,,,--- -Chicken:Operator=1,ffd22811,,,,,,,,,--- -Chicken:Region Marker=12,,,,,,,,,,--- -Chicken:String=7,,,,,,,,,,--- - -[Highlighting Cisco - Schema mssola] -Cisco:Char=6,,,,,,,,,,--- -Cisco:Command=0,,,,,,,,,,--- -Cisco:Comment=8,,,,,,,,,,--- -Cisco:Decimal=3,,,,,,,,,,--- -Cisco:Float=5,,,,,,,,,,--- -Cisco:Keyword=1,,,,,,,,,,--- -Cisco:Normal Text=0,,,,,,,,,,--- -Cisco:Operator=9,,,,,,,,,,--- -Cisco:Parameter=9,,,,,,,,,,--- -Cisco:String=7,,,,,,,,,,--- -Cisco:Substitution=9,,,,,,,,,,--- - -[Highlighting CleanCSS - Schema mssola] -CleanCSS:Alert=10,,,,,,,,,,--- -CleanCSS:At Rule=3,,,,,,,,,,--- -CleanCSS:Comment=8,,,,,,,,,,--- -CleanCSS:Error=13,,,,,,,,,,--- -CleanCSS:Important=1,,,,,,,,,,--- -CleanCSS:Media=3,,,1,,,,,,,--- -CleanCSS:Normal Text=0,,,,,,,,,,--- -CleanCSS:Property=1,,,,,,,,,,--- -CleanCSS:Region Marker=12,,,,,,,,,,--- -CleanCSS:Selector Attr=6,,,,,,,,,,--- -CleanCSS:Selector Class=5,,,,,,,,,,--- -CleanCSS:Selector Id=5,,,1,,,,,,,--- -CleanCSS:Selector Pseudo=3,,,,,,,,,,--- -CleanCSS:String=7,,,,,,,,,,--- -CleanCSS:Unknown Property=1,,,,1,,,,,,--- -CleanCSS:Value=2,,,,,,,,,,--- - -[Highlighting Clipper - Schema mssola] -Clipper:Command=2,,,,,,,,,,--- -Clipper:Comment=8,,,,,,,,,,--- -Clipper:Decimal=3,,,,,,,,,,--- -Clipper:Eval Block=9,,,,,,,,,,--- -Clipper:Function=11,,,,,,,,,,--- -Clipper:Hex=4,,,,,,,,,,--- -Clipper:Keyword=1,,,,,,,,,,--- -Clipper:Normal Text=0,,,,,,,,,,--- -Clipper:Prep. Lib=9,,,,,,,,,,--- -Clipper:Preprocessor=9,,,,,,,,,,--- -Clipper:Region Marker=12,,,,,,,,,,--- -Clipper:String=7,,,,,,,,,,--- -Clipper:String Char=6,,,,,,,,,,--- -Clipper:Symbol=0,,,,,,,,,,--- - -[Highlighting Clojure - Schema mssola] -Clojure:BaseN=4,,,,,,,,,,--- -Clojure:Brackets=0,ff0000ff,ff00ff00,1,0,,,,,,--- -Clojure:Brackets1=0,ffff0000,ffffaa00,0,0,,,,,,--- -Clojure:Brackets2=0,ffff8800,ffffff00,0,0,,,,,,--- -Clojure:Brackets3=0,ff888800,ff888888,0,0,,,,,,--- -Clojure:Brackets4=0,ff008800,ff000000,0,0,,,,,,--- -Clojure:Brackets5=0,ff000088,ff000000,0,0,,,,,,--- -Clojure:Brackets6=0,ff880088,ff000000,0,0,,,,,,--- -Clojure:BracketsCurly=0,ff206620,ff219921,,,,,,,,--- -Clojure:BracketsSquare=0,ff3333ff,ff3333aa,,,,,,,,--- -Clojure:Char=6,,,,,,,,,,--- -Clojure:Comment=8,,,,,,,,,,--- -Clojure:Data=2,,,,,,,,,,--- -Clojure:Decimal=3,,,,,,,,,,--- -Clojure:Definition=1,ffd22811,,,,,,,,,--- -Clojure:Float=5,,,,,,,,,,--- -Clojure:Function=11,,,,,,,,,,--- -Clojure:Keyword=1,,,,,,,,,,--- -Clojure:Modifier=1,ff800000,,,,,,,,,--- -Clojure:Modifier2=1,ff555555,,,,,,,,,--- -Clojure:Normal=0,,,,,,,,,,--- -Clojure:Operator=1,ffd22811,,,,,,,,,--- -Clojure:Region Marker=12,,,,,,,,,,--- -Clojure:String=7,,,,,,,,,,--- -Clojure:Variable=1,ffb07e1f,,,,,,,,,--- - -[Highlighting CoffeeScript - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts_indent:Alert=10,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -CoffeeScript:Accessor=2,,,,,,,,,,--- -CoffeeScript:Browser Globals=0,,,,,,,,,,--- -CoffeeScript:Class=2,,,1,,,,,,,--- -CoffeeScript:Comment=8,,,,,,,,,,--- -CoffeeScript:Decimal=3,,,,,,,,,,--- -CoffeeScript:Embedding=6,,,,,,,,,,--- -CoffeeScript:Float=5,,,,,,,,,,--- -CoffeeScript:Function=11,,,,,,,,,,--- -CoffeeScript:Globals=9,,,,,,,,,,--- -CoffeeScript:Hex=4,,,,,,,,,,--- -CoffeeScript:Identifier=0,,,,,,,,,,--- -CoffeeScript:Javascript=10,,,,1,,,,,,--- -CoffeeScript:Keyword=1,,,,,,,,,,--- -CoffeeScript:Node.js Globals=0,,,,,,,,,,--- -CoffeeScript:Normal=0,,,,,,,,,,--- -CoffeeScript:Oct=4,,,,,,,,,,--- -CoffeeScript:Regex=7,,,,,,,,,,--- -CoffeeScript:Reserved=10,,,,,,,,,,--- -CoffeeScript:String=7,,,,,,,,,,--- -CoffeeScript:Symbol=1,,,,,,,,,,--- -CoffeeScript:Value Keywords=9,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting ColdFusion - Schema mssola] -ColdFusion:Anchor Tags=0,ff008000,ffffffff,0,0,,,,,,--- -ColdFusion:Attribute Values=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Brackets=0,ff000080,ffffffff,1,0,,,,,,--- -ColdFusion:CF Comment=8,ffff9900,ff999999,0,0,,,,,,--- -ColdFusion:CF Tags=0,ff800000,ffffffff,0,0,,,,,,--- -ColdFusion:CFX Tags=0,ff008000,ffffffff,0,0,,,,,,--- -ColdFusion:Custom Tags=0,ffcc6666,ffffffff,0,0,,,,,,--- -ColdFusion:HTML Comment=8,ff008000,ff999999,0,0,,,,,,--- -ColdFusion:HTML Entities=0,ff000000,ffffffff,1,0,,,,,,--- -ColdFusion:Image Tags=0,ff800080,ffffffff,0,0,,,,,,--- -ColdFusion:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -ColdFusion:Numbers=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Comment=8,ffff9900,ff999999,0,0,,,,,,--- -ColdFusion:Script Functions=11,,,1,,,,,,,--- -ColdFusion:Script Keywords=0,ff0000cc,ffffffff,1,0,,,,,,--- -ColdFusion:Script Numbers=0,ffff00ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Objects=0,ff0000cc,ffffffff,1,0,,,,,,--- -ColdFusion:Script Operators=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Strings=0,ff008080,ffffffff,0,0,,,,,,--- -ColdFusion:Script Tags=0,ff800000,ffffffff,0,0,,,,,,--- -ColdFusion:Style Properties=0,ff000080,ffffffff,0,0,,,,,,--- -ColdFusion:Style Selectors=0,ffff00ff,ffffffff,0,0,,,,,,--- -ColdFusion:Style Tags=0,ff800080,ffffffff,0,0,,,,,,--- -ColdFusion:Style Values=0,ffff0000,ffffffff,0,0,,,,,,--- -ColdFusion:Table Tags=0,ff008080,ffffffff,0,0,,,,,,--- -ColdFusion:Tags=0,ff000080,ffffffff,0,0,,,,,,--- - -[Highlighting Common Lisp - Schema mssola] -Common Lisp:BaseN=4,,,,,,,,,,--- -Common Lisp:Brackets=0,ff0000ff,ff00ff00,1,0,,,,,,--- -Common Lisp:Char=6,,,,,,,,,,--- -Common Lisp:Comment=8,,,,,,,,,,--- -Common Lisp:Data=2,,,,,,,,,,--- -Common Lisp:Decimal=3,,,,,,,,,,--- -Common Lisp:Definition=1,ffd22811,,,,,,,,,--- -Common Lisp:Float=5,,,,,,,,,,--- -Common Lisp:Function=11,,,,,,,,,,--- -Common Lisp:Keyword=1,,,,,,,,,,--- -Common Lisp:Modifier=1,ff800000,,,,,,,,,--- -Common Lisp:Normal=0,,,,,,,,,,--- -Common Lisp:Operator=1,ffd22811,,,,,,,,,--- -Common Lisp:Region Marker=12,,,,,,,,,,--- -Common Lisp:String=7,,,,,,,,,,--- -Common Lisp:Variable=1,ffb07e1f,,,,,,,,,--- - -[Highlighting Component-Pascal - Schema mssola] -Component-Pascal:Attribute=9,,,,,,,,,,--- -Component-Pascal:Builtin=0,,,,,,,,,,--- -Component-Pascal:Char=6,,,,,,,,,,--- -Component-Pascal:CommentMaior=8,,,,,,,,,,--- -Component-Pascal:CommentMinor=8,,,,,,,,,,--- -Component-Pascal:Exit=1,,,,,,,,,,--- -Component-Pascal:ExportFull=9,,,,,,,,,,--- -Component-Pascal:ExportReadOnly=9,,,,,,,,,,--- -Component-Pascal:Float=5,,,,,,,,,,--- -Component-Pascal:Integer=4,,,,,,,,,,--- -Component-Pascal:Keyword=1,,,,,,,,,,--- -Component-Pascal:MemAlloc=1,,,,,,,,,,--- -Component-Pascal:Normal Text=0,,,,,,,,,,--- -Component-Pascal:Operator=0,,,,,,,,,,--- -Component-Pascal:Relation=0,,,,,,,,,,--- -Component-Pascal:SpecialValues=3,,,,,,,,,,--- -Component-Pascal:String=7,,,,,,,,,,--- -Component-Pascal:Type=2,,,,,,,,,,--- - -[Highlighting ConTeXt - Schema mssola] -ConTeXt:Alert=10,,,,,,,,,,--- -ConTeXt:Block=12,,,,,,,,,,--- -ConTeXt:Brace=6,,,,,,,,,,--- -ConTeXt:Comment=8,,,,,,,,,,--- -ConTeXt:Error=13,,,,,,,,,,--- -ConTeXt:Label Ref=12,,,,,,,,,,--- -ConTeXt:Macro=11,,,,,,,,,,--- -ConTeXt:Math=9,,,,,,,,,,--- -ConTeXt:Normal Text=0,,,,,,,,,,--- -ConTeXt:Section=1,,,,,,,,,,--- -ConTeXt:Verbatim=7,,,,,,,,,,--- - -[Highlighting Crack - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Crack:Annotation=1,,,,,,,,,,--- -Crack:Char=6,,,,,,,,,,--- -Crack:Comment=8,,,,,,,,,,--- -Crack:Data Type=2,,,,,,,,,,--- -Crack:Decimal=3,,,,,,,,,,--- -Crack:Float=5,,,,,,,,,,--- -Crack:Function=11,,,,,,,,,,--- -Crack:Hex=4,,,,,,,,,,--- -Crack:Keyword=1,,,,,,,,,,--- -Crack:Normal Text=0,,,,,,,,,,--- -Crack:Octal=4,,,,,,,,,,--- -Crack:Package=11,,,,,,,,,,--- -Crack:String=7,,,,,,,,,,--- -Crack:Substitution=9,,,,,,,,,,--- -Crack:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting CubeScript - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CubeScript:Brackets=0,,,1,,,,,,,--- -CubeScript:Comment=8,,,,,,,,,,--- -CubeScript:Error=13,,,,,,,,,,--- -CubeScript:Escaped=6,,,,,,,,,,--- -CubeScript:Float=5,,,,,,,,,,--- -CubeScript:Int10=3,,,,,,,,,,--- -CubeScript:IntOther=4,,,,,,,,,,--- -CubeScript:Key=9,,,,,,,,,,--- -CubeScript:Keyword=11,,,,,,,,,,--- -CubeScript:Lookup=2,,,,,,,,,,--- -CubeScript:LookupBrackets=12,,,,,,,,,,--- -CubeScript:Normal=0,,,,,,,,,,--- -CubeScript:Operator=1,,,,,,,,,,--- -CubeScript:String=7,,,,,,,,,,--- -CubeScript:String0=7,ff40ff80,,1,,,,ff3f3f3f,,,--- -CubeScript:String1=7,ff60a0ff,,1,,,,ffdfdfdf,,,--- -CubeScript:String2=7,ffffc040,,1,,,,ff3f3f3f,,,--- -CubeScript:String3=7,ffff4040,,1,,,,ffdfdfdf,,,--- -CubeScript:String4=7,ff808080,,1,,,,ffdfdfdf,,,--- -CubeScript:String5=7,ffa040a0,,1,,,,ffdfdfdf,,,--- -CubeScript:String6=7,ffff8000,,1,,,,ffdfdfdf,,,--- -CubeScript:String7=7,ffffffff,,1,,,,ff3f3f3f,,,--- - -[Highlighting Curry - Schema mssola] -Curry:Braces=0,,,,,,,,,,--- -Curry:Char=6,,,,,,,,,,--- -Curry:Comment=8,,,,,,,,,,--- -Curry:Currydoc=8,ff008000,ffffffff,,,,,,,,--- -Curry:Decimal=3,,,,,,,,,,--- -Curry:Float=5,,,,,,,,,,--- -Curry:Function=0,,,,,,,,,,--- -Curry:Hex=4,,,,,,,,,,--- -Curry:Infix Application=9,,,,,,,,,,--- -Curry:Keyword=1,,,,,,,,,,--- -Curry:Normal=0,,,,,,,,,,--- -Curry:Octal=4,,,,,,,,,,--- -Curry:Operator=11,,,,,,,,,,--- -Curry:Pragma=9,,,,,,,,,,--- -Curry:Prelude Constructor=1,,,,,,,,,,--- -Curry:Prelude Function=11,,,,,,,,,,--- -Curry:Prelude Type=2,,,,,,,,,,--- -Curry:Signature=9,,,,,,,,,,--- -Curry:Special Symbol=9,,,,,,,,,,--- -Curry:String=7,,,,,,,,,,--- -Curry:String Escape=6,,,,,,,,,,--- -Curry:Syntax Error=13,,,,,,,,,,--- -Curry:Type, Constructor=2,,,,,,,,,,--- - -[Highlighting D - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -D:Attribute=1,ff800080,,,,,,,,,--- -D:BQString=7,ffa100a1,ffff00ff,,,,,,,,--- -D:Binary=4,,,,,,,,,,--- -D:Char=6,,,,,,,,,,--- -D:Comment=8,,,,,,,,,,--- -D:Ddoc=8,ff7f7fff,,,,,,,,,--- -D:DdocCode=0,,,,1,,,,,,--- -D:DdocSection=1,ff7f7fff,,1,,,,,,,--- -D:Declarator=1,ff800000,,,,,,,,,--- -D:Deprecated=1,ff800080,,,,1,,,,,--- -D:Error=13,,,,,,,,,,--- -D:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -D:Expression=1,ff000080,,,,,,,,,--- -D:Float=5,,,,,,,,,,--- -D:Hex=4,,,,,,,,,,--- -D:HexString=7,ffa10022,ffff0055,,,,,,,,--- -D:Integer=3,,,,,,,,,,--- -D:LibrarySymbols=2,,,,1,,,,,,--- -D:Linkage=1,ff808000,,,,,,,,,--- -D:Linkage Type=0,,,1,,,,,,,--- -D:Macro Text=0,ffbf7fff,ffffffff,0,0,,,,,,--- -D:Macros=9,ffbf5fbf,ffffffff,1,0,,,,,,--- -D:Module=1,ff008000,,,,,,,,,--- -D:Module Name=0,ff008000,,,,,,,,,--- -D:Normal Text=0,,,,,,,,,,--- -D:Octal=4,,,,,,,,,,--- -D:Pragma=1,ff00aa00,,,,,,,,,--- -D:Property=2,ff000080,,,,,,,,,--- -D:RawString=7,ffa100a1,ffff00ff,,,,,,,,--- -D:Region Marker=12,,,,,,,,,,--- -D:SpecialTokens=0,ff00aa00,,,,,,,,,--- -D:Statement=1,,,,,,,,,,--- -D:String=7,,,,,,,,,,--- -D:Symbol=0,,,,,,,,,,--- -D:Template=1,ff008000,,,,,,,,,--- -D:Tests=1,ffff00ff,,,,,,,,,--- -D:Type=2,,,,,,,,,,--- -D:UserKeywords=2,,,,1,,,,,,--- -D:Version=1,ff808000,,,,,,,,,--- -D:Version Type=0,,,1,,,,,,,--- - -[Highlighting DTD - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -DTD:Comment=8,,,,,,,,,,--- -DTD:Declaration=2,,,1,,,,,,,--- -DTD:Delimiter=3,,,,,,,,,,--- -DTD:Entity=3,,,,,,,,,,--- -DTD:Keyword=1,,,,,,,,,,--- -DTD:Local=3,,,1,,,,,,,--- -DTD:Name=11,,,,,,,,,,--- -DTD:Normal=0,,,,,,,,,,--- -DTD:Other=0,,,,,,,,,,--- -DTD:Processing Instruction=1,,,,,,,,,,--- -DTD:String=7,,,,,,,,,,--- -DTD:Symbol=5,,,1,,,,,,,--- - -[Highlighting Debian Changelog - Schema mssola] -Debian Changelog:Bug=2,,,,,,,,,,--- -Debian Changelog:Data=2,,,,,,,,,,--- -Debian Changelog:Email=9,,,,,,,,,,--- -Debian Changelog:Keyword=1,,,,,,,,,,--- -Debian Changelog:Normal Text=0,,,,,,,,,,--- -Debian Changelog:Version=2,,,,,,,,,,--- - -[Highlighting Debian Control - Schema mssola] -Debian Control:Email=9,,,,,,,,,,--- -Debian Control:Keyword=1,,,,,,,,,,--- -Debian Control:Normal Text=0,,,,,,,,,,--- -Debian Control:Value=2,,,,,,,,,,--- -Debian Control:Variable=9,,,,,,,,,,--- -Debian Control:Version=3,,,,,,,,,,--- - -[Highlighting Diff - Schema mssola] -Diff:Added line=9,ff0000ff,,,,,,,,,--- -Diff:Changed line (new)=9,ff0000ff,,,,,,,,,--- -Diff:Changed line (old)=7,ffff0000,,,,,,,,,--- -Diff:File=1,,,,,,,,,,--- -Diff:Header=2,,,,,,,,,,--- -Diff:Normal Text=0,,,,,,,,,,--- -Diff:Removed line=7,ffff0000,,,,,,,,,--- - -[Highlighting Django HTML Template - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Django HTML Template:Attribute=9,,,,,,,,,,--- -Django HTML Template:CDATA=4,,,1,,,,,,,--- -Django HTML Template:Comment=8,,,,,,,,,,--- -Django HTML Template:Doctype=2,,,1,,,,,,,--- -Django HTML Template:Element=1,,,,,,,,,,--- -Django HTML Template:EntityRef=3,,,,,,,,,,--- -Django HTML Template:Error=13,,,,,,,,,,--- -Django HTML Template:Mismatched Block Tag=13,,,,,,,,,,--- -Django HTML Template:Normal Text=0,,,,,,,,,,--- -Django HTML Template:PEntityRef=3,,,,,,,,,,--- -Django HTML Template:Processing Instruction=1,,,,,,,,,,--- -Django HTML Template:Template Comment=8,,,,,,,,,,--- -Django HTML Template:Template Filter=9,,,,,,,,,,--- -Django HTML Template:Template String=7,,,,,,,,,,--- -Django HTML Template:Template Tag=11,,,,,,,,,,--- -Django HTML Template:Template Tag Argument=11,,,,,,,,,,--- -Django HTML Template:Template Var=11,,,,,,,,,,--- -Django HTML Template:Value=7,ffaa0000,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Doxygen - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting DoxygenLua - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- - -[Highlighting E Language - Schema mssola] -E Language:Action=0,ffff8080,ff00ff00,1,0,,,,,,--- -E Language:Bit=3,,,,,,,,,,--- -E Language:Comment=8,,,,,,,,,,--- -E Language:Data Type=2,,,,,,,,,,--- -E Language:Function=11,,,1,,,,,,,--- -E Language:Integer=3,,,,,,,,,,--- -E Language:Keyword=1,,,,,,,,,,--- -E Language:Normal Text=0,,,,,,,,,,--- -E Language:Operators=0,ff404000,ff00ff00,0,0,,,,,,--- -E Language:OutSide E code=8,,,,,,,,,,--- -E Language:Statement=0,ff8080ff,ff00ff00,1,0,,,,,,--- -E Language:Vector=7,,,,,,,,,,--- - -[Highlighting Eiffel - Schema mssola] -Eiffel:Assertions=9,,,,,,,,,,--- -Eiffel:Char=6,,,,,,,,,,--- -Eiffel:Comment=8,,,,,,,,,,--- -Eiffel:Decimal=3,,,,,,,,,,--- -Eiffel:Float=5,,,,,,,,,,--- -Eiffel:Keyword=1,,,,,,,,,,--- -Eiffel:Normal Text=0,,,,,,,,,,--- -Eiffel:Predefined entities=9,,,,,,,,,,--- -Eiffel:String=7,,,,,,,,,,--- - -[Highlighting Email - Schema mssola] -Email:Normal Text=0,,,,,,,,,,--- -Email:base64=12,,,,,,,,,,--- -Email:common=0,ffffd700,,,,,,,,,--- -Email:email=0,ff0000ff,,,,,,,,,--- -Email:indent1=0,ffff0000,,1,,,,,,,--- -Email:indent2=0,ff008000,,1,,,,,,,--- -Email:indent3=0,ff0000ff,,1,,,,,,,--- -Email:indent4=0,ff00ffff,,1,,,,,,,--- -Email:indent5=0,ffff00ff,,1,,,,,,,--- -Email:indent6=0,ffffff00,,1,,,,,,,--- -Email:marker=10,,,,,,,,,,--- -Email:other=0,ffff0000,,,,,,,,,--- -Email:rfc=0,ff006400,,,,,,,,,--- -Email:rfc-main=10,ff006400,,1,,,,,,,--- -Email:sign=8,,,,,,,,,,--- -Email:string=7,,,,,,,,,,--- - -[Highlighting Erlang - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Erlang:Atom=6,,,,,,,,,,--- -Erlang:Comment=8,,,,,,,,,,--- -Erlang:Float=5,,,,,,,,,,--- -Erlang:Function=11,,,,,,,,,,--- -Erlang:Integer=3,,,,,,,,,,--- -Erlang:Keyword=1,,,,,,,,,,--- -Erlang:Normal Text=0,,,,,,,,,,--- -Erlang:Number=4,,,,,,,,,,--- -Erlang:Operator=1,,,,,,,,,,--- -Erlang:Pragma=1,,,,,,,,,,--- -Erlang:Separator=11,,,,,,,,,,--- -Erlang:String=7,,,,,,,,,,--- -Erlang:Variable=2,,,,,,,,,,--- - -[Highlighting Euphoria - Schema mssola] -Euphoria:Comment=8,,,,,,,,,,--- -Euphoria:Directive=9,,,,,,,,,,--- -Euphoria:GtkKeyword=1,,,,,,,,,,--- -Euphoria:Keyword=1,,,,,,,,,,--- -Euphoria:Normal Text=0,,,,,,,,,,--- -Euphoria:Number=3,,,,,,,,,,--- -Euphoria:Region Marker=12,,,,,,,,,,--- -Euphoria:String=7,,,,,,,,,,--- -Euphoria:Type=2,,,,,,,,,,--- - -[Highlighting FSharp - Schema mssola] -FSharp:Binary=4,,,,,,,,,,--- -FSharp:Camlp4 Quotation=7,,,,,,,,,,--- -FSharp:Character=6,,,,,,,,,,--- -FSharp:Comment=8,,,,,,,,,,--- -FSharp:Constructor=0,,,,,,,,,,--- -FSharp:Core Data Type=2,,,,,,,,,,--- -FSharp:Decimal=3,,,,,,,,,,--- -FSharp:Directive=9,,,,,,,,,,--- -FSharp:Escaped characters=6,,,,,,,,,,--- -FSharp:Float=5,,,,,,,,,,--- -FSharp:Hexadecimal=4,,,,,,,,,,--- -FSharp:Identifier=0,,,,,,,,,,--- -FSharp:Keyword=1,,,,,,,,,,--- -FSharp:Module=0,,,,,,,,,,--- -FSharp:Normal Text=0,,,,,,,,,,--- -FSharp:Octal=4,,,,,,,,,,--- -FSharp:Region Marker=1,,,,,,,,,,--- -FSharp:Revised Syntax Keyword=0,,,,,,,,,,--- -FSharp:String=7,,,,,,,,,,--- -FSharp:Symbol=0,,,,,,,,,,--- - -[Highlighting Fortran - Schema mssola] -Fortran:Comment=8,,,,,,,,,,--- -Fortran:Data Type=2,,,,,,,,,,--- -Fortran:Decimal=3,,,,,,,,,,--- -Fortran:Elemental Procedure=1,ff600060,ffffa0ff,1,0,,,,,,--- -Fortran:Float=5,,,,,,,,,,--- -Fortran:IO Function=11,ff006060,ffffffff,0,0,,,,,,--- -Fortran:Inquiry Function=11,ff000060,ffa0a0ff,1,1,,,,,,--- -Fortran:Keyword=1,,,,,,,,,,--- -Fortran:Logical=9,ff800080,ffffa0a0,1,0,,,,,,--- -Fortran:Non elemental subroutine=1,ff600060,ffffa0ff,1,0,,,,,,--- -Fortran:Normal Text=0,,,,,,,,,,--- -Fortran:Operator=1,ff008000,ffff00ff,1,0,,,,,,--- -Fortran:Preprocessor=9,,,,,,,,,,--- -Fortran:String=7,,,,,,,,,,--- -Fortran:Symbol=0,,,,,,,,,,--- -Fortran:Transformational Function=11,ff600060,ffffa0ff,1,0,,,,,,--- - -[Highlighting FreeBASIC - Schema mssola] -FreeBASIC:Comment=8,,,,,,,,,,--- -FreeBASIC:Constant=0,,,,,,,,,,--- -FreeBASIC:Data Types=2,,,,,,,,,,--- -FreeBASIC:Functions=11,,,,,,,,,,--- -FreeBASIC:Keyword=1,,,,,,,,,,--- -FreeBASIC:Normal Text=0,,,,,,,,,,--- -FreeBASIC:Number=3,,,,,,,,,,--- -FreeBASIC:Preprocessor=0,,,,,,,,,,--- -FreeBASIC:Region Marker=12,,,,,,,,,,--- -FreeBASIC:String=7,,,,,,,,,,--- - -[Highlighting GAP - Schema mssola] -GAP:Builtin Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -GAP:Commentary=8,ff009900,,,1,,,,,,--- -GAP:Control Statements=1,ffff0900,,,,,,,,,--- -GAP:Function=1,ffff6827,,,,,,,,,--- -GAP:GAP Keywords=1,ffff6827,,,,,,,,,--- -GAP:Incomplete String=6,ffa020f0,,,,,,,,,--- -GAP:Logic Operators=1,ff5127b2,,,,,,,,,--- -GAP:Math Operators=1,ff663333,,,,,,,,,--- -GAP:Normal Text=0,,,,,,,,,,--- -GAP:Number=5,,,,,,,,,,--- -GAP:Operator1=0,ff2313d4,,,,,,,,,--- -GAP:Operator2=0,ff663300,,1,,,,,,,--- -GAP:String=7,,,,,,,,,,--- -GAP:Variable=0,,,,,,,,,,--- - -[Highlighting GCCExtensions - Schema mssola] -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- - -[Highlighting GDB Backtrace - Schema mssola] -GDB Backtrace:Crash=13,,,1,,,,,,,--- -GDB Backtrace:File=2,,,,,,,,,,--- -GDB Backtrace:Function=11,,,1,,,,,,,--- -GDB Backtrace:Normal=0,,,,,,,,,,--- -GDB Backtrace:QualifiedIdentifier=9,,,,,,,,,,--- -GDB Backtrace:Thread=4,,,,,,,,,,--- - -[Highlighting GDL - Schema mssola] -GDL:Char=6,,,,,,,,,,--- -GDL:Comment=8,,,,,,,,,,--- -GDL:Datatype=2,,,,,,,,,,--- -GDL:Float=5,,,,,,,,,,--- -GDL:Integer=3,,,,,,,,,,--- -GDL:Keyword=1,,,,,,,,,,--- -GDL:Normal=0,,,,,,,,,,--- -GDL:String=7,,,,,,,,,,--- -GDL:Value=9,,,,,,,,,,--- - -[Highlighting GLSL - Schema mssola] -GLSL:Alert=10,,,,,,,,,,--- -GLSL:Comment=8,,,,,,,,,,--- -GLSL:Data Type=2,,,,,,,,,,--- -GLSL:Decimal=3,,,,,,,,,,--- -GLSL:Float=5,,,,,,,,,,--- -GLSL:Function=11,,,0,,,,,,,--- -GLSL:Hex=4,,,,,,,,,,--- -GLSL:Keyword=1,,,,,,,,,,--- -GLSL:Normal Text=0,,,,,,,,,,--- -GLSL:Octal=4,,,,,,,,,,--- -GLSL:Preprocessor=9,,,,,,,,,,--- -GLSL:StdFunction=11,,,1,,,,,,,--- -GLSL:StdVariable=11,,,0,,,,,,,--- -GLSL:Symbol=0,,,,,,,,,,--- -GLSL:Type Qualifier=2,,,,,,,,,,--- - -[Highlighting GNU Assembler - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -GNU Assembler:Binary=4,,,,,,,,,,--- -GNU Assembler:Char=6,,,,,,,,,,--- -GNU Assembler:Comment=8,,,,,,,,,,--- -GNU Assembler:Decimal=3,,,,,,,,,,--- -GNU Assembler:Float=5,,,,,,,,,,--- -GNU Assembler:Hex=4,,,,,,,,,,--- -GNU Assembler:Keyword=1,,,,,,,,,,--- -GNU Assembler:Label=1,,,,,,,,,,--- -GNU Assembler:Normal Text=0,,,,,,,,,,--- -GNU Assembler:Octal=4,,,,,,,,,,--- -GNU Assembler:Preprocessor=9,,,,,,,,,,--- -GNU Assembler:String=7,,,,,,,,,,--- -GNU Assembler:String Char=6,,,,,,,,,,--- -GNU Assembler:Symbol=0,,,,,,,,,,--- - -[Highlighting GNU Gettext - Schema mssola] -GNU Gettext:Automatic Comment=8,ff0000ff,,,,,,,,,--- -GNU Gettext:Char=6,ffff00ff,,,,,,,,,--- -GNU Gettext:CharPrevious=6,ff00c040,,,1,,,,,,--- -GNU Gettext:Entity=7,ffff0040,,1,,,,,,,--- -GNU Gettext:EntityPrevious=7,ff40c080,,1,1,,,,,,--- -GNU Gettext:Flag=8,ff0000ff,,,,,,,,,--- -GNU Gettext:FlagFuzzy=8,ff800080,,1,,,,,,,--- -GNU Gettext:Index=3,ff0000ff,,,,,,,,,--- -GNU Gettext:IndexPrevious=3,ff000000,,,1,,,,,,--- -GNU Gettext:Keyword=1,ff000000,,,,,,,,,--- -GNU Gettext:KeywordPrevious=1,ff006060,,,1,,,,,,--- -GNU Gettext:Normal Text=0,ff000000,,,,,,,,,--- -GNU Gettext:Reference=8,ff0000ff,,,,,,,,,--- -GNU Gettext:String=7,ffff0000,,,,,,,,,--- -GNU Gettext:StringDiffNew=7,ff0080f8,,,,,,,,,--- -GNU Gettext:StringDiffNewComment=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewPrevious=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewWrap=7,ff0080f8,,,,,,,,,--- -GNU Gettext:StringDiffNewWrapComment=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewWrapPrevious=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffOld=7,fff00080,,,,,,,,,--- -GNU Gettext:StringDiffOldComment=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldPrevious=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldWrap=7,fff00080,,,,,,,,,--- -GNU Gettext:StringDiffOldWrapComment=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldWrapPrevious=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringPrevious=7,ff008080,,,1,,,,,,--- -GNU Gettext:StringTag=7,ffc00000,,1,,,,,,,--- -GNU Gettext:StringTagPrevious=7,ff006060,,1,1,,,,,,--- -GNU Gettext:Translator Comment=8,ff888888,,,,,,,,,--- - -[Highlighting GNU Linker Script - Schema mssola] -GNU Linker Script:Command=1,,,,,,,,,,--- -GNU Linker Script:Comment=8,,,,,,,,,,--- -GNU Linker Script:Function=11,,,,,,,,,,--- -GNU Linker Script:Keyword=1,,,,,,,,,,--- -GNU Linker Script:Normal Text=0,,,,,,,,,,--- -GNU Linker Script:Number=4,,,,,,,,,,--- -GNU Linker Script:Section Name=6,,,,,,,,,,--- -GNU Linker Script:String=7,,,,,,,,,,--- - -[Highlighting GNU M4 - Schema mssola] -GNU M4:Builtins=1,,,,,,,,,,--- -GNU M4:Builtins (prefixed with m4_)=1,,,,,,,,,,--- -GNU M4:Commas=6,,,,,,,,,,--- -GNU M4:Comment=8,,,,,,,,,,--- -GNU M4:Int=3,,,,,,,,,,--- -GNU M4:Normal Text=0,,,,,,,,,,--- -GNU M4:Operators=6,,,,,,,,,,--- -GNU M4:Optional builtins=1,,,,,,,,,,--- -GNU M4:Optional builtins (prefixed with m4_)=1,,,,,,,,,,--- -GNU M4:Special arguments to macros=6,,,,,,,,,,--- - -[Highlighting Git Rebase - Schema mssola] -Git Rebase:Comment=8,,,,,,,,,,--- -Git Rebase:Commit=11,,,,,,,,,,--- -Git Rebase:Edit=2,,,,,,,,,,--- -Git Rebase:Exec=9,,,,,,,,,,--- -Git Rebase:Fixup=4,,,,,,,,,,--- -Git Rebase:Normal Text=0,,,,,,,,,,--- -Git Rebase:Pick=1,,,,,,,,,,--- -Git Rebase:Reword=3,,,,,,,,,,--- -Git Rebase:Squash=6,,,,,,,,,,--- -Git Rebase:Summary=7,,,,,,,,,,--- - -[Highlighting GlossTex - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts_indent:Alert=10,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GlossTex:Abbrev=9,,,,,,,,,,--- -GlossTex:Comment=8,,,,,,,,,,--- -GlossTex:Entry=1,ff0000ff,,,,,,,,,--- -GlossTex:Full=7,,,,,,,,,,--- -GlossTex:Label=2,,,,,,,,,,--- -GlossTex:Normal Text=0,,,,,,,,,,--- -GlossTex:Text=6,,,,,,,,,,--- -LaTeX:Alert=10,,,,,,,,,,--- -LaTeX:Ampersand=0,ff002793,,1,,,,,,,--- -LaTeX:Bullet=0,ffff00c4,,1,,,,,,,--- -LaTeX:Column Separator=0,ff002793,,,,,,,,,--- -LaTeX:Comment=8,,,,,,,,,,--- -LaTeX:Environment=0,ff0000d0,ffffff90,0,0,,,,,,--- -LaTeX:Error=10,,,,,,,,,,--- -LaTeX:Keyword=0,ff800000,ff60ffff,0,0,,,,,,--- -LaTeX:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -LaTeX:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -LaTeX:Normal Text=0,,,,,,,,,,--- -LaTeX:Option Text=0,,,,,,,,,,--- -LaTeX:Region Marker=12,,,,,,,,,,--- -LaTeX:Structure=0,fff00000,ff80ffd0,0,0,,,,,,--- -LaTeX:Structure Keyword=0,ff800000,ff60ffff,1,0,,,,,,--- -LaTeX:Structure Keyword Mathmode=0,ff606000,ffffd0ff,1,0,,,,,,--- -LaTeX:Structure Math=0,ff00a000,ffff40ff,1,0,,,,,,--- -LaTeX:Structure Text=0,ff000000,ffffffff,1,0,,,,,,--- -LaTeX:Verbatim=0,ffa08000,ff80d0ff,0,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting Gnuplot - Schema mssola] -Gnuplot:Comment=8,,,,,,,,,,--- -Gnuplot:Data Type=2,,,,,,,,,,--- -Gnuplot:Decimal=3,,,,,,,,,,--- -Gnuplot:FloatFunc=5,,,,,,,,,,--- -Gnuplot:Funktion=9,,,,,,,,,,--- -Gnuplot:Keyword=1,,,,,,,,,,--- -Gnuplot:Normal Text=0,,,,,,,,,,--- -Gnuplot:String=4,,,,,,,,,,--- - -[Highlighting Go - Schema mssola] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 3=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Go:Builtin Function=11,,,,,,,,,,--- -Go:Char=6,,,,,,,,,,--- -Go:Comment=8,,,,,,,,,,--- -Go:Data Type=2,,,,,,,,,,--- -Go:Error=13,ffbf0303,ff9c0e0e,,,,,,,,--- -Go:Hex=4,,,,,,,,,,--- -Go:Keyword=1,,,,,,,,,,--- -Go:Normal Text=0,,,,,,,,,,--- -Go:Octal=4,,,,,,,,,,--- -Go:Predeclared Identifier=9,,,,,,,,,,--- -Go:String=7,,,,,,,,,,--- -Go:String Char=6,,,,,,,,,,--- -Go:Symbol=0,,,,,,,,,,--- - -[Highlighting HTML - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Haml - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Haml:Access Control=1,ff0000ff,,,,,,,,,--- -Haml:Alert=10,,,,,,,,,,--- -Haml:Attribute Definition=9,,,,,,,,,,--- -Haml:Bin=4,,,,,,,,,,--- -Haml:Blockcomment=8,,,,,,,,,,--- -Haml:Char=6,,,,,,,,,,--- -Haml:Class Variable=9,,,,,,,,,,--- -Haml:Command=7,ffaa3000,,,,,,,,,--- -Haml:Comment=8,,,,,,,,,,--- -Haml:Constant=2,,,,,,,,,,--- -Haml:Constant Value=2,ffbb1188,,,,,,,,,--- -Haml:Data=0,,,,,,,,,,--- -Haml:Dec=3,,,,,,,,,,--- -Haml:Default globals=2,ffc00000,,1,,,,,,,--- -Haml:Definition=1,,,,,,,,,,--- -Haml:Delimiter=6,,,,,,,,,,--- -Haml:Div Class=3,,,,,,,,,,--- -Haml:Div Id=3,,,1,,,,,,,--- -Haml:Doctype=2,,,1,,,,,,,--- -Haml:Element Class=5,,,,,,,,,,--- -Haml:Element Id=5,,,1,,,,,,,--- -Haml:Entity=3,,,,,,,,,,--- -Haml:Error=13,,,,,,,,,,--- -Haml:Expression=9,,,,,,,,,,--- -Haml:Filter=9,,,,,,,,,,--- -Haml:Float=5,,,,,,,,,,--- -Haml:GDL input=9,,,,,,,,,,--- -Haml:Global Constant=2,ffbb1188,,1,,,,,,,--- -Haml:Global Variable=2,ffc00000,,,,,,,,,--- -Haml:Hash=0,,,,,,,,,,--- -Haml:Hex=4,,,,,,,,,,--- -Haml:Instance Variable=9,,,,,,,,,,--- -Haml:Kernel methods=0,ff000080,ffffffff,,,,,,,,--- -Haml:Keyword=1,,,,,,,,,,--- -Haml:Member=0,,,,,,,,,,--- -Haml:Message=0,ff4000a7,,,,,,,,,--- -Haml:Normal Text=0,,,,,,,,,,--- -Haml:Octal=4,,,,,,,,,,--- -Haml:Operator=6,,,,,,,,,,--- -Haml:Pseudo variable=3,,,,,,,,,,--- -Haml:RDoc Value=9,,,,,,,,,,--- -Haml:Raw String=7,ffdd4a4a,ffdd4a4a,,,,,,,,--- -Haml:Region Marker=0,ff0000ff,,,,,,,,,--- -Haml:Regular Expression=9,ff4a5704,,,,,,,,,--- -Haml:Ruby Comment=8,,,,,,,,,,--- -Haml:Ruby Normal Text=0,,,,,,,,,,--- -Haml:String=0,,,,,,,,,,--- -Haml:Substitution=9,,,,,,,,,,--- -Haml:Symbol=2,,,,,,,,,,--- -Haml:Tag=1,,,,,,,,,,--- -Haml:Unquoted String=7,,,,,,,,,,--- - -[Highlighting Haskell - Schema mssola] -Haskell:C2HS Directive=7,,,,,,,,,,--- -Haskell:Char=6,,,,,,,,,,--- -Haskell:Class Prelude=1,,,,,,,,,,--- -Haskell:Comment=8,,,,,,,,,,--- -Haskell:Data Prelude=1,,,,,,,,,,--- -Haskell:Decimal=3,,,,,,,,,,--- -Haskell:EnumFromTo=9,,,,,,,,,,--- -Haskell:Float=5,,,,,,,,,,--- -Haskell:Function=0,,,,,,,,,,--- -Haskell:Function Infix=9,,,,,,,,,,--- -Haskell:Function Prelude=11,,,,,,,,,,--- -Haskell:Keyword=1,,,,,,,,,,--- -Haskell:Normal=0,,,,,,,,,,--- -Haskell:Operator=11,,,,,,,,,,--- -Haskell:Pragma=9,,,,,,,,,,--- -Haskell:Signature=9,,,,,,,,,,--- -Haskell:Special=9,,,,,,,,,,--- -Haskell:String=7,,,,,,,,,,--- -Haskell:Type=2,,,,,,,,,,--- -Haskell:Type Prelude=2,,,,,,,,,,--- - -[Highlighting Haxe - Schema mssola] -Haxe:Comment=8,,,,,,,,,,--- -Haxe:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -Haxe:Float=5,,,,,,,,,,--- -Haxe:Hex=4,,,,,,,,,,--- -Haxe:Integer=3,,,,,,,,,,--- -Haxe:Keyword=1,,,,,,,,,,--- -Haxe:Module=1,ff0000ff,ffffffff,,,,,,,,--- -Haxe:Module Name=0,ff0000ff,ffffffff,,,,,,,,--- -Haxe:Normal Text=0,,,,,,,,,,--- -Haxe:Preprocessor=9,,,,,,,,,,--- -Haxe:RawString=7,,,,,,,,,,--- -Haxe:String=7,,,,,,,,,,--- -Haxe:Type=2,,,,,,,,,,--- - -[Highlighting IDL - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -IDL:Alert=10,,,,,,,,,,--- -IDL:Char=6,,,,,,,,,,--- -IDL:Comment=8,,,,,,,,,,--- -IDL:Data Type=2,,,,,,,,,,--- -IDL:Decimal=3,,,,,,,,,,--- -IDL:Float=5,,,,,,,,,,--- -IDL:Hex=4,,,,,,,,,,--- -IDL:Keyword=1,,,,,,,,,,--- -IDL:Normal Text=0,,,,,,,,,,--- -IDL:Octal=4,,,,,,,,,,--- -IDL:Prep. Lib=9,,,,,,,,,,--- -IDL:Preprocessor=9,,,,,,,,,,--- -IDL:String=7,,,,,,,,,,--- -IDL:String Char=6,,,,,,,,,,--- -IDL:Symbol=0,,,,,,,,,,--- - -[Highlighting ILERPG - Schema mssola] -ILERPG:Alert=10,,,,,,,,,,--- -ILERPG:Base-N=4,,,,,,,,,,--- -ILERPG:Biff=1,,,,,,,,,,--- -ILERPG:BoldComment=0,ffcd853f,ff808080,1,1,,,,,,--- -ILERPG:Char=6,,,,,,,,,,--- -ILERPG:Comment=8,,,,,,,,,,--- -ILERPG:Constant=0,ffcc2222,ff000000,0,0,,,,,,--- -ILERPG:ConstantChar=0,ffdd0022,ff000000,0,0,,,,,,--- -ILERPG:Decimal=3,,,,,,,,,,--- -ILERPG:Directive=9,,,,,,,,,,--- -ILERPG:DivideComment=8,,,1,,,,,,,--- -ILERPG:Fill=0,ffff6347,ff000000,0,0,,,,,,--- -ILERPG:Float=5,,,,,,,,,,--- -ILERPG:Hex=4,,,,,,,,,,--- -ILERPG:Indicator=0,ffcc0000,ff000000,0,0,,,,,,--- -ILERPG:Keyword=1,,,,,,,,,,--- -ILERPG:Normal Text=0,,,,,,,,,,--- -ILERPG:Octal=4,,,,,,,,,,--- -ILERPG:RegExpr=4,,,,,,,,,,--- -ILERPG:Reserved=0,ffbb1133,ff000000,0,0,,,,,,--- -ILERPG:Symbol=0,,,,,,,,,,--- - -[Highlighting INI Files - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -INI Files:Assignment=9,,,,,,,,,,--- -INI Files:Comment=8,,,,,,,,,,--- -INI Files:Float=5,,,,,,,,,,--- -INI Files:Int=3,,,,,,,,,,--- -INI Files:Keyword=1,,,,,,,,,,--- -INI Files:Normal Text=2,,,,,,,,,,--- -INI Files:Section=1,,,,,,,,,,--- -INI Files:Value=7,,,,,,,,,,--- - -[Highlighting Inform - Schema mssola] -Inform:Actions=2,ffe06060,ff400000,0,0,,,,,,--- -Inform:Comment=8,ff707070,ffffffff,0,1,,,,,,--- -Inform:Function=11,,,,,,,,,,--- -Inform:Keyword=1,,,,,,,,,,--- -Inform:Normal Text=0,,,,,,,,,,--- -Inform:Number=3,ff5050c0,ff000000,0,0,,,,,,--- -Inform:OpCode=3,ff3015f0,ff000000,1,0,,,,,,--- -Inform:Operator=4,ffa01060,ff400040,0,0,,,,,,--- -Inform:Pragma=9,ff109010,ff400000,1,0,,,,,,--- -Inform:PredefFunction=11,,,,,,,,,,--- -Inform:String=7,ff007000,ff007000,0,0,,,,,,--- -Inform:Values=4,ff7020f0,ff400000,1,0,,,,,,--- -Inform:Word=7,ff007000,ff007000,0,1,,,,,,--- - -[Highlighting Intel x86 (FASM) - Schema mssola] -Intel x86 (FASM):BaseN=4,,,,,,,,,,--- -Intel x86 (FASM):Char=6,,,,,,,,,,--- -Intel x86 (FASM):Comment=8,,,,,,,,,,--- -Intel x86 (FASM):Data=2,,,,,,,,,,--- -Intel x86 (FASM):Float=5,,,,,,,,,,--- -Intel x86 (FASM):Instructions=1,,,,,,,,,,--- -Intel x86 (FASM):Label=11,,,,,,,,,,--- -Intel x86 (FASM):Normal Text=0,,,,,,,,,,--- -Intel x86 (FASM):Number=3,,,,,,,,,,--- -Intel x86 (FASM):Preprocessor=9,,,,,,,,,,--- -Intel x86 (FASM):Registers=1,,,,,,,,,,--- -Intel x86 (FASM):String=7,,,,,,,,,,--- - -[Highlighting Intel x86 (NASM) - Schema mssola] -Intel x86 (NASM):BaseN=4,,,,,,,,,,--- -Intel x86 (NASM):Char=6,,,,,,,,,,--- -Intel x86 (NASM):Comment=8,,,,,,,,,,--- -Intel x86 (NASM):Data=2,,,,,,,,,,--- -Intel x86 (NASM):Float=5,,,,,,,,,,--- -Intel x86 (NASM):Instructions=1,,,,,,,,,,--- -Intel x86 (NASM):Label=11,,,,,,,,,,--- -Intel x86 (NASM):NASM Keywords=1,,,,,,,,,,--- -Intel x86 (NASM):Normal Text=0,,,,,,,,,,--- -Intel x86 (NASM):Number=3,,,,,,,,,,--- -Intel x86 (NASM):Preprocessor=9,,,,,,,,,,--- -Intel x86 (NASM):Registers=1,,,,,,,,,,--- -Intel x86 (NASM):String=7,,,,,,,,,,--- - -[Highlighting JSON - Schema mssola] -JSON:Style_Decimal=3,,,,,,,,,,--- -JSON:Style_Error=13,,,,,,,,,,--- -JSON:Style_Float=5,,,,,,,,,,--- -JSON:Style_Keyword=3,,,1,,,,,,,--- -JSON:Style_Normal=0,,,,,,,,,,--- -JSON:Style_Seperator_Array=0,ff0000af,,1,,,,,,,--- -JSON:Style_Seperator_Pair=0,ffef0000,,1,,,,,,,--- -JSON:Style_String_Key=2,,,,,,,,,,--- -JSON:Style_String_Key_Char=2,,,,,,,,,,--- -JSON:Style_String_Value=7,ffff00ff,,,,,,,,,--- -JSON:Style_String_Value_Char=7,ffff00ff,,,,,,,,,--- - -[Highlighting JSP - Schema mssola] -JSP:Char=6,,,,,,,,,,--- -JSP:Comment=8,,,,,,,,,,--- -JSP:Decimal=3,,,,,,,,,,--- -JSP:Float=5,,,,,,,,,,--- -JSP:Hex=4,,,,,,,,,,--- -JSP:Html Comment=8,,,,,,,,,,--- -JSP:Identifier=9,,,,,,,,,,--- -JSP:Java 1.4.2 Classes=0,ff0095ff,ffffffff,1,0,,,,,,--- -JSP:Java Comment=8,,,,,,,,,,--- -JSP:Jsp Comment=8,,,,,,,,,,--- -JSP:Jsp Directive=0,ff0000ff,ff00ff00,1,1,,,,,,--- -JSP:Jsp Expression=0,ff000000,ffffffff,1,0,,,,,,--- -JSP:Jsp Param Name=9,,,,,,,,,,--- -JSP:Jsp Param Value=7,,,,,,,,,,--- -JSP:Jsp Scriptlet=0,ff000000,ffffffff,1,0,,,,,,--- -JSP:Keyword=1,,,,,,,,,,--- -JSP:Normal Text=0,,,,,,,,,,--- -JSP:Octal=4,,,,,,,,,,--- -JSP:String=7,,,,,,,,,,--- -JSP:String Char=6,,,,,,,,,,--- -JSP:Symbol=0,,,,,,,,,,--- -JSP:Types=2,,,,,,,,,,--- - -[Highlighting Jam - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ff880088,,,,,,,,,--- -Bash:Command=1,ffcc00cc,,,,,,,,,--- -Bash:Comment=8,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ff330033,,,,,,,,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff223388,,,,,,,,,--- -Bash:String DoubleQ=7,,,,,,,,,,--- -Bash:String Escape=2,,,,,,,,,,--- -Bash:String SingleQ=7,,,,,,,,,,--- -Bash:String Transl.=7,,,,,,,,,,--- -Bash:Variable=9,,,,,,,,,,--- -Jam:Action=0,,,,,,,,,,--- -Jam:ActionText=0,,,,,,,,,,--- -Jam:Alert=10,,,,,,,,,,--- -Jam:Comment=8,,,,,,,,,,--- -Jam:CommentTitle=8,ffff8c00,,1,,,,,,,--- -Jam:Error=13,,,,,,,,,,--- -Jam:EscapeSeq=7,ff800080,,1,,,,,,,--- -Jam:Keyword=1,,,1,,,,,,,--- -Jam:Normal=0,,,,,,,,,,--- -Jam:Operator=0,,,1,,,,,,,--- -Jam:Rule=11,ff000000,,,,,,,,,--- -Jam:String=7,ffff0000,,,,,,,,,--- -Jam:VarAssign=0,ff006400,,,,,,,,,--- -Jam:Variable=0,ff006400,,,,,,,,,--- -Jam:VariableAttribute=0,ff0000ff,,,,,,,,,--- -Jam:VariableDelimiter=0,ff0000ff,,,,,,,,,--- -Jam:Varname=0,ff006400,,,1,,,,,,--- -Jam:actionAttribute=0,,,,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Java - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -Java:Annotation=11,,,,,,,,,,--- -Java:Char=6,,,,,,,,,,--- -Java:Comment=8,,,,,,,,,,--- -Java:Data Type=2,,,,,,,,,,--- -Java:Decimal=3,,,,,,,,,,--- -Java:Float=5,,,,,,,,,,--- -Java:Function=11,,,,,,,,,,--- -Java:Hex=4,,,,,,,,,,--- -Java:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -Java:Java15=0,ff0095ff,ffffffff,1,0,,,,,,--- -Java:Keyword=1,,,,,,,,,,--- -Java:Normal Text=0,,,,,,,,,,--- -Java:Octal=4,,,,,,,,,,--- -Java:PrintfString=7,,,,,,,,,,--- -Java:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -Java:String=7,,,,,,,,,,--- -Java:String Char=6,,,,,,,,,,--- -Java:Symbol=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting JavaScript - Schema mssola] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,,,fff6e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff6e6e6,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,ffbf0303,ff6c2477,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,ffbf0303,ff9c0e0e,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting JavaScript/PHP - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript/PHP:Char=6,,,,,,,,,,--- -JavaScript/PHP:Comment=8,,,,,,,,,,--- -JavaScript/PHP:Decimal=3,,,,,,,,,,--- -JavaScript/PHP:Float=5,,,,,,,,,,--- -JavaScript/PHP:Function=11,,,,,,,,,,--- -JavaScript/PHP:Hex=4,,,,,,,,,,--- -JavaScript/PHP:JSON=2,,,,,,,,,,--- -JavaScript/PHP:Keyword=1,,,,,,,,,,--- -JavaScript/PHP:Normal Text=0,,,,,,,,,,--- -JavaScript/PHP:Object Member=11,,,,,,,,,,--- -JavaScript/PHP:Objects=9,,,,,,,,,,--- -JavaScript/PHP:Octal=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Character Class=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript/PHP:Region Marker=12,,,,,,,,,,--- -JavaScript/PHP:Regular Expression=9,,,,,,,,,,--- -JavaScript/PHP:Reserved=1,,,,1,,,,,,--- -JavaScript/PHP:String=7,,,,,,,,,,--- -JavaScript/PHP:Symbol=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting JavaScript/PlasmaDesktop - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Javadoc - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Jira - Schema mssola] -Jira:Aqua=0,ff00ffff,,,,,,,,,--- -Jira:Blue=0,ff0000ff,,,,,,,,,--- -Jira:Bold=0,,,1,,,,,,,--- -Jira:Fuchsia=0,ffff00ff,,,,,,,,,--- -Jira:Gray=0,ff808080,,,,,,,,,--- -Jira:Green=0,ff008000,,,,,,,,,--- -Jira:Header=1,,,,,,,,,,--- -Jira:Italic=0,,,,1,,,,,,--- -Jira:Keyword=1,,,,,,,,,,--- -Jira:Lime=0,ff00ff00,,,,,,,,,--- -Jira:Maroon=0,ff800000,,,,,,,,,--- -Jira:Navy=0,ff000080,,,,,,,,,--- -Jira:Normal=0,,,,,,,,,,--- -Jira:Olive=0,ff808000,,,,,,,,,--- -Jira:Purple=0,ff800080,,,,,,,,,--- -Jira:Red=0,ffff0000,,,,,,,,,--- -Jira:Silver=0,ffc0c0c0,,,,,,,,,--- -Jira:Special Character=3,,,1,,,,,,,--- -Jira:Stroked Out=0,,,,,1,,,,,--- -Jira:Teal=0,ff008080,,,,,,,,,--- -Jira:Underlined=0,,,,,,,,,,--- -Jira:Yellow=0,ffffff00,,,,,,,,,--- - -[Highlighting Julia - Schema mssola] -Julia:Char=6,,,,,,,,,,--- -Julia:Comment=8,,,,,,,,,,--- -Julia:Data Type=2,,,,,,,,,,--- -Julia:Decimal=5,,,,,,,,,,--- -Julia:Delimiter=0,,,,,,,,,,--- -Julia:Float=5,,,,,,,,,,--- -Julia:FoldingComment=8,,,,,,,,,,--- -Julia:Hex=4,,,,,,,,,,--- -Julia:Incomplete Char=6,,,,,,,,,,--- -Julia:Keyword=1,,,,,,,,,,--- -Julia:Normal Text=0,,,,,,,,,,--- -Julia:Operator=0,,,,,,,,,,--- -Julia:String=7,,,,,,,,,,--- -Julia:System=4,,,,,,,,,,--- -Julia:Variable=0,,,,,,,,,,--- - -[Highlighting KAlgebra - Schema mssola] -KAlgebra:Builtin=4,ffb28c00,,,,,,,,,--- -KAlgebra:Comment=8,ff009900,,,,,,,,,--- -KAlgebra:Delimiter=0,,,1,,,,,,,--- -KAlgebra:Keyword=0,ffac0008,,,,,,,,,--- -KAlgebra:Normal Text=0,,,,,,,,,,--- -KAlgebra:Number=5,ff2b74c7,,,,,,,,,--- -KAlgebra:Operations=11,ffac0008,ff00ff00,,,,,,,,--- -KAlgebra:Operator=0,,,1,,,,,,,--- -KAlgebra:String=7,ffb20000,,,,,,,,,--- -KAlgebra:Variable=0,ffac0008,,,,,,,,,--- - -[Highlighting KBasic - Schema mssola] -KBasic:Comment=8,,,,,,,,,,--- -KBasic:Identifier=9,,,,,,,,,,--- -KBasic:Keyword=1,,,,,,,,,,--- -KBasic:Normal Text=0,,,,,,,,,,--- -KBasic:String=7,,,,,,,,,,--- -KBasic:Types=2,,,,,,,,,,--- - -[Highlighting KDev-PG\x5b-Qt\x5d Grammar - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Access=2,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstMember=0,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstMemberType=2,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstNode=11,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Code Segment=11,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Comment=8,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Decimal=3,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Error=13,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Float=5,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Keyword=1,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Location=9,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Normal Text=0,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:String=7,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:String Char=6,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Symbol=9,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Token=1,,,,,,,,,,--- - -[Highlighting Kate File Template - Schema mssola] -Kate File Template:Comment=8,,,,,,,ffeeeeee,,,--- -Kate File Template:Error=13,,,,,,,,,,--- -Kate File Template:Escape=9,,,,,,,,,,--- -Kate File Template:Header Keyword=1,,,,,,,ffeeeeee,,,--- -Kate File Template:Header Text=0,,,,,,,ffeeeeee,,,--- -Kate File Template:Keyword=1,,,,,,,,,,--- -Kate File Template:Macro=2,,,,,,,,,,--- -Kate File Template:Normal Text=0,,,,,,,,,,--- -Kate File Template:Property=3,,,1,,,,ffeeeeee,,,--- -Kate File Template:Property Value=7,,,,,,,ffeeeeee,,,--- - -[Highlighting LDIF - Schema mssola] -LDIF:AttributeType=1,ff404040,ffffffff,1,0,,,,,,--- -LDIF:Comment=8,ff808080,ff808080,0,0,,,,,,--- -LDIF:Description Keyword=1,ff000000,ffffffff,1,0,,,,,,--- -LDIF:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -LDIF:ObjectClass=1,ff800080,ffffffff,1,0,,,,,,--- -LDIF:Value (Encoded)=7,ffff8000,ff0080ff,0,0,,,,,,--- -LDIF:Value (Encrypted)=7,ffff0000,ff00ffff,0,0,,,,,,--- -LDIF:Value (Keyword)=7,ff008000,ff800080,1,0,,,,,,--- -LDIF:Value (Standard)=7,ff008000,ff008000,0,0,,,,,,--- -LDIF:Value (URL)=7,ff0000ff,ffffff00,0,0,,,,,,--- - -[Highlighting LESSCSS - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -LESSCSS:Alert=10,,,,,,,,,,--- -LESSCSS:At Rule=3,,,,,,,,,,--- -LESSCSS:Comment=8,,,,,,,,,,--- -LESSCSS:Error=13,,,,,,,,,,--- -LESSCSS:Important=1,,,,,,,,,,--- -LESSCSS:Media=3,,,1,,,,,,,--- -LESSCSS:Normal Text=0,,,,,,,,,,--- -LESSCSS:Property=1,,,,,,,,,,--- -LESSCSS:Region Marker=12,,,,,,,,,,--- -LESSCSS:Selector Attr=6,,,,,,,,,,--- -LESSCSS:Selector Class=5,,,,,,,,,,--- -LESSCSS:Selector Id=5,,,1,,,,,,,--- -LESSCSS:Selector Pseudo=3,,,,,,,,,,--- -LESSCSS:String=7,,,,,,,,,,--- -LESSCSS:Unknown Property=1,,,,1,,,,,,--- -LESSCSS:Value=2,,,,,,,,,,--- -LESSCSS:Variable=0,,,,,,,,,,--- - -[Highlighting LPC - Schema mssola] -LPC:Alert=10,,,,,,,,,,--- -LPC:Binary=4,,,,,,,,,,--- -LPC:Char=6,,,,,,,,,,--- -LPC:Closure=9,,,,,,,,,,--- -LPC:Datatype=2,,,,,,,,,,--- -LPC:Default=0,,,,,,,,,,--- -LPC:Floats=5,,,,,,,,,,--- -LPC:Hexadecimal=4,,,,,,,,,,--- -LPC:Integer=3,,,,,,,,,,--- -LPC:Keywords=1,,,,,,,,,,--- -LPC:Modifier=2,,,,,,,,,,--- -LPC:Multi-Line comments=8,,,,,,,,,,--- -LPC:Octal=4,,,,,,,,,,--- -LPC:Preprocessor=9,,,,,,,,,,--- -LPC:Preprocessor-Strings=7,,,,,,,,,,--- -LPC:Region Marker=12,,,,,,,,,,--- -LPC:Single-Line comments=8,,,,,,,,,,--- -LPC:Strings=7,,,,,,,,,,--- - -[Highlighting LSL - Schema mssola] -LSL:Alert=10,,,,,,,,,,--- -LSL:Brace=0,,,,,,,,,,--- -LSL:Comment=8,,,,,,,,,,--- -LSL:Constant=9,,,,,,,,,,--- -LSL:Data Type=2,,,,,,,,,,--- -LSL:Decimal=3,,,,,,,,,,--- -LSL:Event=9,,,,,,,,,,--- -LSL:Float=5,,,,,,,,,,--- -LSL:Function=11,,,,,,,,,,--- -LSL:Hex=4,,,,,,,,,,--- -LSL:Identifier=0,,,,,,,,,,--- -LSL:Keyword=1,,,,,,,,,,--- -LSL:Library Function=11,,,1,,,,,,,--- -LSL:Normal Text=0,,,,,,,,,,--- -LSL:String=7,,,,,,,,,,--- -LSL:Symbol=0,,,,,,,,,,--- - -[Highlighting LaTeX - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts_indent:Alert=10,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -LaTeX:Alert=10,,,,,,,,,,--- -LaTeX:Ampersand=0,ff002793,,1,,,,,,,--- -LaTeX:Bullet=0,ffff00c4,,1,,,,,,,--- -LaTeX:Column Separator=0,ff002793,,,,,,,,,--- -LaTeX:Comment=8,,,,,,,,,,--- -LaTeX:Environment=0,ff0000d0,ffffff90,0,0,,,,,,--- -LaTeX:Error=10,,,,,,,,,,--- -LaTeX:Keyword=0,ff800000,ff60ffff,0,0,,,,,,--- -LaTeX:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -LaTeX:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -LaTeX:Normal Text=0,,,,,,,,,,--- -LaTeX:Option Text=0,,,,,,,,,,--- -LaTeX:Region Marker=12,,,,,,,,,,--- -LaTeX:Structure=0,fff00000,ff80ffd0,0,0,,,,,,--- -LaTeX:Structure Keyword=0,ff800000,ff60ffff,1,0,,,,,,--- -LaTeX:Structure Keyword Mathmode=0,ff606000,ffffd0ff,1,0,,,,,,--- -LaTeX:Structure Math=0,ff00a000,ffff40ff,1,0,,,,,,--- -LaTeX:Structure Text=0,ff000000,ffffffff,1,0,,,,,,--- -LaTeX:Verbatim=0,ffa08000,ff80d0ff,0,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting Lex/Flex - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Lex/Flex:Alert=10,,,,,,,,,,--- -Lex/Flex:Backslash Code=7,,,1,,,,,,,--- -Lex/Flex:Comment=8,,,,,,,,,,--- -Lex/Flex:Content-Type Delimiter=4,,,1,,,,,,,--- -Lex/Flex:Definition=2,,,,,,,,,,--- -Lex/Flex:Directive=1,,,,,,,,,,--- -Lex/Flex:Normal Text=0,,,,,,,,,,--- -Lex/Flex:RegExpr=7,,,,,,,,,,--- - -[Highlighting LilyPond - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -LilyPond:Articulation=7,ffee5000,,1,,,,,,,--- -LilyPond:Beam=2,,,1,,,,,,,--- -LilyPond:Check=3,,,,,,,,,,--- -LilyPond:Chord=2,,,1,,,,,,,--- -LilyPond:Command=11,,,1,,,,,,,--- -LilyPond:Comment=8,,,,,,,,,,--- -LilyPond:Context=2,,,1,,,,,,,--- -LilyPond:Deprecated Command=11,,,,,,,ffffcccc,,,--- -LilyPond:Deprecated Context=2,,,1,,,,ffffcccc,,,--- -LilyPond:Deprecated Keyword=1,,,,,,,ffffcccc,,,--- -LilyPond:Deprecated Markup=4,ff009817,,,,,,ffffcccc,,,--- -LilyPond:Deprecated Property=2,,,,,,,ffffcccc,,,--- -LilyPond:Duration=2,,,,,,,,,,--- -LilyPond:Dynamic=7,ffee5000,,1,,,,,,,--- -LilyPond:Engraver=2,,,,,,,,,,--- -LilyPond:Invalid=13,,,,,,,,,,--- -LilyPond:Keyword=1,,,,,,,,,,--- -LilyPond:Layout Object=2,,,,,,,,,,--- -LilyPond:Lyric Text=0,ff007010,,,,,,,,,--- -LilyPond:Lyricmode=1,ff007010,,,,,,,,,--- -LilyPond:Markup=4,ff009817,,,,,,,,,--- -LilyPond:Normal Text=0,,,,,,,,,,--- -LilyPond:Other Mode=1,ff0094e4,,,,,,,,,--- -LilyPond:Other Text=0,ff0094e4,,,,,,,,,--- -LilyPond:Pitch=0,,,,,,,,,,--- -LilyPond:Property=2,,,,,,,,,,--- -LilyPond:Quoted Text=7,,,,,,,,,,--- -LilyPond:Repeat=2,,,,1,,,,,,--- -LilyPond:Scheme=5,,,,,,,fffff6ff,,,--- -LilyPond:Scheme Comment=8,,,,,,,fffff6ff,,,--- -LilyPond:Scheme Keyword=5,,,1,,,,fffff6ff,,,--- -LilyPond:Scheme String=7,,,,,,,fffff6ff,,,--- -LilyPond:Scheme Subst=3,,,1,,,,fffff6ff,,,--- -LilyPond:Scheme Value=3,,,,,,,fffff6ff,,,--- -LilyPond:Slur=6,,,1,,,,,,,--- -LilyPond:User Command=11,,,,,,,,,,--- -LilyPond:Variable=2,,,,,,,,,,--- - -[Highlighting Literate Curry - Schema mssola] -Curry:Braces=0,,,,,,,,,,--- -Curry:Char=6,,,,,,,,,,--- -Curry:Comment=8,,,,,,,,,,--- -Curry:Currydoc=8,ff008000,ffffffff,,,,,,,,--- -Curry:Decimal=3,,,,,,,,,,--- -Curry:Float=5,,,,,,,,,,--- -Curry:Function=0,,,,,,,,,,--- -Curry:Hex=4,,,,,,,,,,--- -Curry:Infix Application=9,,,,,,,,,,--- -Curry:Keyword=1,,,,,,,,,,--- -Curry:Normal=0,,,,,,,,,,--- -Curry:Octal=4,,,,,,,,,,--- -Curry:Operator=11,,,,,,,,,,--- -Curry:Pragma=9,,,,,,,,,,--- -Curry:Prelude Constructor=1,,,,,,,,,,--- -Curry:Prelude Function=11,,,,,,,,,,--- -Curry:Prelude Type=2,,,,,,,,,,--- -Curry:Signature=9,,,,,,,,,,--- -Curry:Special Symbol=9,,,,,,,,,,--- -Curry:String=7,,,,,,,,,,--- -Curry:String Escape=6,,,,,,,,,,--- -Curry:Syntax Error=13,,,,,,,,,,--- -Curry:Type, Constructor=2,,,,,,,,,,--- -Literate Curry:BirdTrack=9,,,,,,,,,,--- -Literate Curry:Comment=8,,,,,,,,,,--- -Literate Curry:Text=0,,,,,,,,,,--- - -[Highlighting Literate Haskell - Schema mssola] -Haskell:C2HS Directive=7,,,,,,,,,,--- -Haskell:Char=6,,,,,,,,,,--- -Haskell:Class Prelude=1,,,,,,,,,,--- -Haskell:Comment=8,,,,,,,,,,--- -Haskell:Data Prelude=1,,,,,,,,,,--- -Haskell:Decimal=3,,,,,,,,,,--- -Haskell:EnumFromTo=9,,,,,,,,,,--- -Haskell:Float=5,,,,,,,,,,--- -Haskell:Function=0,,,,,,,,,,--- -Haskell:Function Infix=9,,,,,,,,,,--- -Haskell:Function Prelude=11,,,,,,,,,,--- -Haskell:Keyword=1,,,,,,,,,,--- -Haskell:Normal=0,,,,,,,,,,--- -Haskell:Operator=11,,,,,,,,,,--- -Haskell:Pragma=9,,,,,,,,,,--- -Haskell:Signature=9,,,,,,,,,,--- -Haskell:Special=9,,,,,,,,,,--- -Haskell:String=7,,,,,,,,,,--- -Haskell:Type=2,,,,,,,,,,--- -Haskell:Type Prelude=2,,,,,,,,,,--- -Literate Haskell:BirdTrack=9,,,,,,,,,,--- -Literate Haskell:Comment=8,,,,,,,,,,--- -Literate Haskell:Text=0,,,,,,,,,,--- - -[Highlighting Logtalk - Schema mssola] -Logtalk:Built-in=1,,,,,,,,,,--- -Logtalk:Comment=8,,,,,,,,,,--- -Logtalk:Directive=1,,,,,,,,,,--- -Logtalk:Normal=0,,,,,,,,,,--- -Logtalk:Number=3,,,,,,,,,,--- -Logtalk:Operator=2,,,,,,,,,,--- -Logtalk:String=7,,,,,,,,,,--- -Logtalk:Variable=9,,,,,,,,,,--- - -[Highlighting Lua - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- -Lua:Alerts=10,,,,,,,,,,--- -Lua:BFunc=11,,,,,,,,,,--- -Lua:Comment=8,,,,,,,,,,--- -Lua:Constant=1,,,,,,,,,,--- -Lua:Control=1,ffa1a100,ffffffff,0,0,,,,,,--- -Lua:Error=13,,,,,,,,,,--- -Lua:Keyword=1,,,,,,,,,,--- -Lua:Normal Text=0,,,,,,,,,,--- -Lua:Numbers=3,,,,,,,,,,--- -Lua:Strings=7,,,,,,,,,,--- -Lua:Symbols=9,,,,,,,,,,--- -Lua:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting M3U - Schema mssola] -M3U:Comment=8,,,,,,,,,,--- -M3U:Descr=7,,,,,,,,,,--- -M3U:EXTINF=9,,,,,,,,,,--- -M3U:Lenght=3,,,,,,,,,,--- -M3U:M3USpec=1,,,,,,,,,,--- -M3U:Normal Text=0,,,,,,,,,,--- - -[Highlighting MAB-DB - Schema mssola] -MAB-DB:Comment=8,ff999999,ffffffff,1,1,,,,,,--- -MAB-DB:Database Header=1,ffff3322,ffffffff,1,0,,,,,,--- -MAB-DB:Header Medium=1,ff339922,ffffffff,1,0,,,,,,--- -MAB-DB:Header Piece=1,ff993322,ffffffff,1,0,,,,,,--- -MAB-DB:Mab Comment Description=8,ff3333ff,ffffffff,1,1,,,,,,--- -MAB-DB:Mab Comment Type=8,ffbb3333,ffffffff,1,1,,,,,,--- -MAB-DB:Mab I Field=1,ff330066,ffffffff,1,0,,,,,,--- -MAB-DB:Mab M Field=1,ff003366,ffffffff,1,0,,,,,,--- -MAB-DB:Normal Text=0,ffff0022,ffffffff,1,0,,,,,,--- - -[Highlighting MEL - Schema mssola] -MEL:Block comments=8,,,,,,,,,,--- -MEL:Data types=2,,,,,,,,,,--- -MEL:Expressions=9,,,,,,,,,,--- -MEL:Float values=5,,,,,,,,,,--- -MEL:Integer values=3,,,,,,,,,,--- -MEL:Keywords=1,,,,,,,,,,--- -MEL:Line comments=8,,,,,,,,,,--- -MEL:MEL commands=11,,,,,,,,,,--- -MEL:Normal Text=0,,,,,,,,,,--- -MEL:Operators=0,,,,,,,,,,--- -MEL:Strings=7,,,,,,,,,,--- -MEL:Variable names=4,,,,,,,,,,--- - -[Highlighting MIPS Assembler - Schema mssola] -MIPS Assembler:Char=6,,,,,,,,,,--- -MIPS Assembler:Comment=8,,,,,,,,,,--- -MIPS Assembler:Decimal=3,,,,,,,,,,--- -MIPS Assembler:Float=5,,,,,,,,,,--- -MIPS Assembler:Floating Point Register=5,,,,,,,,,,--- -MIPS Assembler:Hardware Instruction=1,,,,,,,,,,--- -MIPS Assembler:Hex=4,,,,,,,,,,--- -MIPS Assembler:Label=9,,,,,,,,,,--- -MIPS Assembler:Main Register=2,,,,,,,,,,--- -MIPS Assembler:Normal Text=0,,,,,,,,,,--- -MIPS Assembler:Octal=4,,,,,,,,,,--- -MIPS Assembler:Other Register=2,ff0000ff,,,,,,,,,--- -MIPS Assembler:Pseudo Instruction=11,,,,,,,,,,--- -MIPS Assembler:Region Marker=12,,,,,,,,,,--- -MIPS Assembler:Section=2,,,,,,,,,,--- -MIPS Assembler:String=7,,,,,,,,,,--- -MIPS Assembler:Type=1,,,,,,,,,,--- - -[Highlighting MS-DOS Batch - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -MS-DOS Batch:Builtin=1,,,,,,,,,,--- -MS-DOS Batch:Command=1,,,,,,,,,,--- -MS-DOS Batch:Comment=8,,,,,,,,,,--- -MS-DOS Batch:Echoed Text=0,,,,,,,,,,--- -MS-DOS Batch:Error=13,,,,,,,,,,--- -MS-DOS Batch:Escape=6,,,,,,,,,,--- -MS-DOS Batch:Keyword=1,,,,,,,,,,--- -MS-DOS Batch:Label=9,,,,,,,,,,--- -MS-DOS Batch:Normal Text=0,,,,,,,,,,--- -MS-DOS Batch:Number=3,,,,,,,,,,--- -MS-DOS Batch:Option=0,,,,,,,,,,--- -MS-DOS Batch:Path=0,,,,,,,,,,--- -MS-DOS Batch:Redirection=1,,,,,,,,,,--- -MS-DOS Batch:String=7,,,,,,,,,,--- -MS-DOS Batch:Variable=9,,,,,,,,,,--- - -[Highlighting Makefile - Schema mssola] -Makefile:Comment=8,,,,,,,,,,--- -Makefile:Error=13,,,,,,,,,,--- -Makefile:FuncParam=7,,,,,,,,,,--- -Makefile:Keyword=1,,,,,,,,,,--- -Makefile:Normal=0,,,,,,,,,,--- -Makefile:Operator=6,,,,,,,,,,--- -Makefile:Prereq=2,,,,,,,,,,--- -Makefile:Section=9,,,,,,,,,,--- -Makefile:Silent=11,,,,,,,,,,--- -Makefile:Special=5,,,,,,,,,,--- -Makefile:String=7,,,,,,,,,,--- -Makefile:Target=3,,,,,,,,,,--- -Makefile:Variable=2,,,,,,,,,,--- - -[Highlighting Mako - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts_indent:Alert=10,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Mako:Attribute=9,,,,,,,,,,--- -Mako:CDATA=4,,,1,,,,,,,--- -Mako:Comment=8,,,,,,,,,,--- -Mako:Doctype=2,,,1,,,,,,,--- -Mako:Element=1,,,,,,,,,,--- -Mako:EntityRef=3,,,,,,,,,,--- -Mako:Error=13,,,,,,,,,,--- -Mako:Flow Control Keyword=1,,,,,,,,,,--- -Mako:Mako=2,,,,,,,,,,--- -Mako:MakoKeyword=2,,,1,,,,,,,--- -Mako:MakoString=7,,,,,,,,,,--- -Mako:MakoVar=9,,,1,,,,,,,--- -Mako:Normal Text=0,,,,,,,,,,--- -Mako:PEntityRef=3,,,,,,,,,,--- -Mako:Processing Instruction=1,,,,,,,,,,--- -Mako:Value=7,ffaa0000,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ffffffff,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ffffffff,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ffffffff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ffffffff,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ffffffff,,,,,,,,--- - -[Highlighting Markdown - Schema mssola] -Markdown:Normal Text=0,,,,,,,,,,--- -Markdown:autolink=9,,,,,,,,,,--- -Markdown:bl-emphasis=5,,,,1,,,,,,--- -Markdown:bl-strong=5,,,1,,,,,,,--- -Markdown:blockquote=2,,,,,,,,,,--- -Markdown:bq-emphasis=2,,,,1,,,,,,--- -Markdown:bq-strong=2,,,1,,,,,,,--- -Markdown:bullet=5,,,,,,,,,,--- -Markdown:code=4,,,,,,,,,,--- -Markdown:comment=8,,,,,,,,,,--- -Markdown:common=0,,,,,,,,,,--- -Markdown:emphasis=0,,,,1,,,,,,--- -Markdown:footnote=9,,,,1,,,,,,--- -Markdown:h1=11,,,1,,,,,,,--- -Markdown:h2=11,,,1,,,,,,,--- -Markdown:h3=11,,,1,,,,,,,--- -Markdown:h4=11,,,1,,,,,,,--- -Markdown:h5=11,,,1,,,,,,,--- -Markdown:h6=11,,,1,,,,,,,--- -Markdown:inlineimage=10,,,0,0,,,,,,--- -Markdown:inlinelink=9,,,,,,,,,,--- -Markdown:linebreak=0,ff999999,,,,,,,,,--- -Markdown:mailtolink=9,,,,,,,,,,--- -Markdown:meta=8,,,,,,,,,,--- -Markdown:nl-emphasis=5,,,,1,,,,,,--- -Markdown:nl-strong=5,,,1,,,,,,,--- -Markdown:numlist=5,,,,,,,,,,--- -Markdown:refimage=10,,,0,0,,,,,,--- -Markdown:reflink=9,,,,,,,,,,--- -Markdown:reflinktarget=9,,,0,0,,,,,,--- -Markdown:ruler=0,,,1,,,,,,,--- -Markdown:strikeout=0,,,,,1,,,,,--- -Markdown:strong=0,,,1,,,,,,,--- -Markdown:strongemphasis=0,,,1,1,,,,,,--- - -[Highlighting Mason - Schema mssola] -Mason:Char=6,,,,,,,,,,--- -Mason:Comment=8,,,,,,,,,,--- -Mason:Data Type=2,,,,,,,,,,--- -Mason:Decimal=3,,,,,,,,,,--- -Mason:Float=5,,,,,,,,,,--- -Mason:HTML=7,,,,,,,,,,--- -Mason:Hex=4,,,,,,,,,,--- -Mason:Keyword=1,,,,,,,,,,--- -Mason:Mason Method=1,,,,,,,,,,--- -Mason:Mason Tag=1,,,,,,,,,,--- -Mason:Octal=4,,,,,,,,,,--- -Mason:Pattern=9,,,,,,,,,,--- -Mason:String=7,,,,,,,,,,--- -Mason:String Char=6,,,,,,,,,,--- -Mason:Symbol=0,,,,,,,,,,--- -Mason:normal=0,,,,,,,,,,--- - -[Highlighting Matlab - Schema mssola] -Matlab:Comment=8,ff009900,,,,,,,,,--- -Matlab:Delimiter=0,,,,,,,,,,--- -Matlab:Incomplete String=6,ffa020f0,,,,,,,,,--- -Matlab:Keyword=0,ff0000ff,,,,,,,,,--- -Matlab:Normal Text=0,,,,,,,,,,--- -Matlab:Number=5,,,,,,,,,,--- -Matlab:Operator=0,,,,,,,,,,--- -Matlab:String=7,ffb20000,,,,,,,,,--- -Matlab:System=4,ffb28c00,,,,,,,,,--- -Matlab:Variable=0,,,,,,,,,,--- - -[Highlighting Maxima - Schema mssola] -Maxima:Comment=0,ff666666,,,,,,,,,--- -Maxima:Float=5,ff660066,,,,,,,,,--- -Maxima:Function=11,ff006666,,,,,,,,,--- -Maxima:Integer=3,ff0000cc,,,,,,,,,--- -Maxima:Keyword=1,ff000000,,1,,,,,,,--- -Maxima:Normal Text=0,ff000000,,,,,,,,,--- -Maxima:Quote=0,ff0000cc,,1,,,,,,,--- -Maxima:Special=0,ffcc0000,,1,,,,,,,--- -Maxima:String=7,ffcc0000,,,,,,,,,--- -Maxima:Variable=0,ff333366,,,1,,,,,,--- - -[Highlighting MediaWiki - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -MediaWiki:Bold=0,,,1,,,,,,,--- -MediaWiki:BoldItalic=0,,,1,1,,,,,,--- -MediaWiki:BoldItalicUnderlined=0,,,1,1,,,,,,--- -MediaWiki:BoldUnderlined=0,,,1,,,,,,,--- -MediaWiki:Comment=8,,,,,,,,,,--- -MediaWiki:DefinitionListHeader=1,,,,,,,,,,--- -MediaWiki:Error=13,,,,,,,,,,--- -MediaWiki:HtmlAttribute=9,,,,,,,,,,--- -MediaWiki:HtmlEntity=3,,,,,,,,,,--- -MediaWiki:HtmlTag=1,,,,,,,,,,--- -MediaWiki:HtmlValue=7,ffaa0000,,,,,,,,,--- -MediaWiki:Italic=0,,,,1,,,,,,--- -MediaWiki:ItalicUnderlined=0,,,,1,,,,,,--- -MediaWiki:Link=9,,,,,,,,,,--- -MediaWiki:LinkBold=9,,,1,,,,,,,--- -MediaWiki:LinkBoldItalic=9,,,1,1,,,,,,--- -MediaWiki:LinkBoldItalicUnderlined=9,,,1,1,,,,,,--- -MediaWiki:LinkBoldUnderlined=9,,,1,,,,,,,--- -MediaWiki:LinkItalic=9,,,,1,,,,,,--- -MediaWiki:LinkItalicUnderlined=9,,,,1,,,,,,--- -MediaWiki:LinkUnderlined=9,,,,,,,,,,--- -MediaWiki:NoWiki=0,,,,,,,,,,--- -MediaWiki:Normal=0,,,,,,,,,,--- -MediaWiki:Parameter=0,,,1,,,,,,,--- -MediaWiki:Section=1,,,,,,,,,,--- -MediaWiki:TemplateName=9,,,1,,,,,,,--- -MediaWiki:URL=9,,,,,,,,,,--- -MediaWiki:Underlined=0,,,,,,,,,,--- -MediaWiki:Unformatted=0,,,,,,,,,,--- -MediaWiki:WikiTag=3,,,1,,,,,,,--- -MediaWiki:WikiTagBold=3,,,1,,,,,,,--- -MediaWiki:WikiTagBoldItalic=3,,,1,1,,,,,,--- -MediaWiki:WikiTagBoldItalicUnderlined=3,,,1,1,,,,,,--- -MediaWiki:WikiTagBoldUnderlined=3,,,1,,,,,,,--- -MediaWiki:WikiTagItalic=3,,,1,1,,,,,,--- -MediaWiki:WikiTagItalicUnderlined=3,,,1,1,,,,,,--- -MediaWiki:WikiTagUnderlined=3,,,1,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Metapost/Metafont - Schema mssola] -Metapost/Metafont:Alert=10,,,,,,,,,,--- -Metapost/Metafont:BoolExp=1,ffaa00aa,ffffff00,0,1,,,,,,--- -Metapost/Metafont:Comment=8,,,,,,,,,,--- -Metapost/Metafont:Conditional=1,,,,,,,,,,--- -Metapost/Metafont:Decimal=3,,,,,,,,,,--- -Metapost/Metafont:Error=10,,,,,,,,,,--- -Metapost/Metafont:Float=5,,,,,,,,,,--- -Metapost/Metafont:Hex=4,,,,,,,,,,--- -Metapost/Metafont:Identifier=1,,,,,,,,,,--- -Metapost/Metafont:Keyword=0,ff800000,ff60ffff,0,0,,,,,,--- -Metapost/Metafont:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -Metapost/Metafont:Macro=1,ff770000,ff99ffff,0,0,,,,,,--- -Metapost/Metafont:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -Metapost/Metafont:Normal Text=0,,,,,,,,,,--- -Metapost/Metafont:NumExp=11,,,,,,,,,,--- -Metapost/Metafont:Octal=4,,,,,,,,,,--- -Metapost/Metafont:Operator=1,ff244cff,,0,,,,,,,--- -Metapost/Metafont:Special=1,ff008000,,0,,,,,,,--- -Metapost/Metafont:Statement=0,ff0000ff,ffffff00,0,0,,,,,,--- -Metapost/Metafont:String=7,,,,,,,,,,--- -Metapost/Metafont:TeX=0,,,,,,,,,,--- -Metapost/Metafont:Type=2,,,,,,,,,,--- -Metapost/Metafont:Variable=1,ff550022,,,,,,,,,--- - -[Highlighting Modelica - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Modelica:Class Type=1,,,,,,,,,,--- -Modelica:Comment=8,,,,,,,,,,--- -Modelica:Data Type=2,,,,,,,,,,--- -Modelica:Default Attribute=9,,,,,,,,,,--- -Modelica:Floating-Point Number=5,,,,,,,,,,--- -Modelica:Function=11,,,,,,,,,,--- -Modelica:Integer Number=3,,,,,,,,,,--- -Modelica:Keyword=1,,,,,,,,,,--- -Modelica:Normal Text=0,,,,,,,,,,--- -Modelica:String=7,,,,,,,,,,--- -Modelica:String Char=6,,,,,,,,,,--- -Modelica:Variable=0,,,,,,,,,,--- - -[Highlighting Modelines - Schema mssola] -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Modula-2 - Schema mssola] -Modula-2:Comment=8,,,,,,,,,,--- -Modula-2:Directive=9,,,,,,,,,,--- -Modula-2:Keyword=1,,,,,,,,,,--- -Modula-2:Normal Text=0,,,,,,,,,,--- -Modula-2:Number=3,,,,,,,,,,--- -Modula-2:String=7,,,,,,,,,,--- -Modula-2:Type=2,,,,,,,,,,--- - -[Highlighting MonoBasic - Schema mssola] -MonoBasic:Comment=8,ff008000,,,,,,,,,--- -MonoBasic:Keyword=1,ff000080,,0,,,,,,,--- -MonoBasic:Normal Text=0,,,,,,,,,,--- -MonoBasic:Preprocessor=9,ff008000,,,,,,,,,--- -MonoBasic:String=7,ff800000,,,,,,,,,--- -MonoBasic:Type=2,ff000080,,0,,,,,,,--- - -[Highlighting Motorola 68k (VASM/Devpac) - Schema mssola] -Motorola 68k (VASM/Devpac):Address Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):BaseN=4,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Char=6,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Comment=8,,,,0,,,,,,--- -Motorola 68k (VASM/Devpac):Constant=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Control Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Data Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Directives=9,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):FPU Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Float=5,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Instructions (CPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Instructions (FPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Label=11,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Local label=11,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Normal Text=0,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Number=3,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Operand sizes (CPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Operand sizes (FPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):String=7,,,,,,,,,,--- - -[Highlighting Motorola DSP56k - Schema mssola] -Motorola DSP56k:Address Registers=2,,,,,,,,,,--- -Motorola DSP56k:BaseN=4,,,,,,,,,,--- -Motorola DSP56k:Char=6,,,,,,,,,,--- -Motorola DSP56k:Comment=8,,,,0,,,,,,--- -Motorola DSP56k:Constant=2,,,,,,,,,,--- -Motorola DSP56k:Control Registers=2,,,,,,,,,,--- -Motorola DSP56k:Data Registers=2,,,,,,,,,,--- -Motorola DSP56k:Directives=9,,,1,,,,,,,--- -Motorola DSP56k:Float=5,,,,,,,,,,--- -Motorola DSP56k:Instructions=1,,,1,,,,,,,--- -Motorola DSP56k:Label=11,,,,,,,,,,--- -Motorola DSP56k:Local label=11,,,,,,,,,,--- -Motorola DSP56k:Memory=9,,,1,,,,,,,--- -Motorola DSP56k:Modifier Registers=2,,,,,,,,,,--- -Motorola DSP56k:Normal Text=0,,,,,,,,,,--- -Motorola DSP56k:Number=3,,,,,,,,,,--- -Motorola DSP56k:Offset Registers=2,,,,,,,,,,--- -Motorola DSP56k:String=7,,,,,,,,,,--- - -[Highlighting Music Publisher - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Music Publisher:Barline=3,ffcc6622,,,,,,,,,--- -Music Publisher:Comment=8,,,,,,,,,,--- -Music Publisher:Context=1,,,,,,,,,,--- -Music Publisher:Error=13,ff000000,,,,,,,,,--- -Music Publisher:Location=1,ff00cc44,,1,,,,,,,--- -Music Publisher:Location Probably=1,ff00cc44,,0,,,,,,,--- -Music Publisher:Lyrics=4,,,1,,,,,,,--- -Music Publisher:Macro=9,ff1111ff,ff11ffff,,,,,,,,--- -Music Publisher:Newscore=3,ffcc6622,,1,,,,,,,--- -Music Publisher:Normal Text=0,,,,,,,,,,--- -Music Publisher:Note=0,,,,,,,,,,--- -Music Publisher:Note Attribute=0,ff0077bb,,,1,,,,,,--- -Music Publisher:Parameter=6,,,,,,,,,,--- -Music Publisher:Print Command=4,,,,,,,,,,--- -Music Publisher:Special Char=1,,,,,,,,,,--- -Music Publisher:String=7,,,,,,,,,,--- -Music Publisher:String Error=13,,,,,,,,,,--- -Music Publisher:String Lyrics=7,ff880000,,,,,,,,,--- -Music Publisher:String Special=7,,,1,,,,,,,--- -Music Publisher:Tuplet=0,ff003355,,,,,,,,,--- -Music Publisher:Unset Command=5,,,1,,,,,,,--- -Music Publisher:Value=5,,,,,,,,,,--- - -[Highlighting Nagios - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Nagios:Comment=8,,,,,,,,,,--- -Nagios:Definition=1,,,,,,,,,,--- -Nagios:Definition Block=12,,,,,,,,,,--- -Nagios:Float=5,,,,,,,,,,--- -Nagios:Int=3,,,,,,,,,,--- -Nagios:Invalid Text=13,,,,,,,,,,--- -Nagios:Macro=11,,,,,,,,,,--- -Nagios:Macro Definition=11,,,,,,,,,,--- -Nagios:Normal Text=0,,,,,,,,,,--- -Nagios:Object=2,,,,,,,,,,--- -Nagios:Object Directive=0,,,,,,,,,,--- -Nagios:Symbol=9,,,,,,,,,,--- -Nagios:Value=7,,,,,,,,,,--- -Nagios:Variable=0,,,,,,,,,,--- - -[Highlighting Nemerle - Schema mssola] -Nemerle:Attribute=9,ff28712f,ff34923d,,,,,,,,--- -Nemerle:Comment=8,,,,,,,,,,--- -Nemerle:CompilationUnit=6,,,,,,,,,,--- -Nemerle:DataType=2,,,,,,,,,,--- -Nemerle:EscapeSequence=4,,,,,,,,,,--- -Nemerle:Keyword=1,,,,,,,,,,--- -Nemerle:Normal Text=0,,,,,,,,,,--- -Nemerle:Number=9,ff00009f,ff0000e9,,,,,,,,--- -Nemerle:Preprocessing=6,,,,,,,,,,--- -Nemerle:String=7,,,,,,,,,,--- -Nemerle:TypeDeclaration=9,ffeeb312,ff000000,1,,,,,,,--- - -[Highlighting Nginx Configuration - Schema mssola] -Nginx Configuration:Comment=8,,,,,,,,,,--- -Nginx Configuration:Directives=1,,,,,,,,,,--- -Nginx Configuration:Normal Text=0,,,,,,,,,,--- - -[Highlighting None - Schema mssola] -Normal Text=0,,,,,,,,,,--- - -[Highlighting OORS - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -OORS:Alert=10,,,,,,,,,,--- -OORS:Backslash Code=7,,,1,,,,,,,--- -OORS:Comment=8,,,,,,,,,,--- -OORS:Content-Type Delimiter=4,,,1,,,,,,,--- -OORS:Data Type=2,,,,,,,,,,--- -OORS:Definition=0,,,,,,,,,,--- -OORS:Directive=1,,,,,,,,,,--- -OORS:Normal Text=0,,,,,,,,,,--- -OORS:Rule=7,,,,,,,,,,--- -OORS:String=7,,,,,,,,,,--- -OORS:String Char=6,,,,,,,,,,--- - -[Highlighting OPAL - Schema mssola] -OPAL:Comment=9,,,,,,,,,,--- -OPAL:Decimal=7,,,,,,,,,,--- -OPAL:Keyword=1,ff0000ff,,,,,,,,,--- -OPAL:Normal Text=0,,,,,,,,,,--- -OPAL:Sort=2,ff0000ff,,,,,,,,,--- -OPAL:String=7,,,,,,,,,,--- - -[Highlighting Objective Caml - Schema mssola] -Objective Caml:Binary=4,,,,,,,,,,--- -Objective Caml:Camlp4 Quotation=7,,,,,,,,,,--- -Objective Caml:Character=6,,,,,,,,,,--- -Objective Caml:Comment=8,,,,,,,,,,--- -Objective Caml:Constructor=2,,,,,,,,,,--- -Objective Caml:Core Data Type=2,,,,,,,,,,--- -Objective Caml:Decimal=3,,,,,,,,,,--- -Objective Caml:Directive=9,,,,,,,,,,--- -Objective Caml:Escaped characters=6,,,,,,,,,,--- -Objective Caml:Float=5,,,,,,,,,,--- -Objective Caml:Hexadecimal=4,,,,,,,,,,--- -Objective Caml:Identifier=0,,,,,,,,,,--- -Objective Caml:Keyword=1,,,,,,,,,,--- -Objective Caml:Module=0,,,,,,,,,,--- -Objective Caml:Normal Text=0,,,,,,,,,,--- -Objective Caml:Octal=4,,,,,,,,,,--- -Objective Caml:Region Marker=1,,,,,,,,,,--- -Objective Caml:Revised Syntax Keyword=0,,,,,,,,,,--- -Objective Caml:String=7,,,,,,,,,,--- -Objective Caml:Symbol=0,,,,,,,,,,--- - -[Highlighting Objective-C - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Objective-C:Char=6,,,,,,,,,,--- -Objective-C:Comment=8,,,,,,,,,,--- -Objective-C:Data Type=2,,,,,,,,,,--- -Objective-C:Decimal=3,,,,,,,,,,--- -Objective-C:Float=5,,,,,,,,,,--- -Objective-C:Hex=4,,,,,,,,,,--- -Objective-C:Keyword=1,,,,,,,,,,--- -Objective-C:Normal Text=0,,,,,,,,,,--- -Objective-C:Octal=4,,,,,,,,,,--- -Objective-C:Prep. Lib=9,,,,,,,,,,--- -Objective-C:Preprocessor=9,,,,,,,,,,--- -Objective-C:String=7,,,,,,,,,,--- -Objective-C:String Char=6,,,,,,,,,,--- -Objective-C:Symbol=0,,,,,,,,,,--- - -[Highlighting Objective-C++ - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Objective-C++:Char=6,,,,,,,,,,--- -Objective-C++:Comment=8,,,,,,,,,,--- -Objective-C++:Data Type=2,,,,,,,,,,--- -Objective-C++:Decimal=3,,,,,,,,,,--- -Objective-C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -Objective-C++:Float=5,,,,,,,,,,--- -Objective-C++:Hex=4,,,,,,,,,,--- -Objective-C++:Keyword=1,,,,,,,,,,--- -Objective-C++:Normal Text=0,,,,,,,,,,--- -Objective-C++:Octal=4,,,,,,,,,,--- -Objective-C++:Prep. Lib=9,,,,,,,,,,--- -Objective-C++:Preprocessor=9,,,,,,,,,,--- -Objective-C++:Region Marker=12,,,,,,,,,,--- -Objective-C++:String=7,,,,,,,,,,--- -Objective-C++:String Char=6,,,,,,,,,,--- -Objective-C++:Symbol=0,,,,,,,,,,--- - -[Highlighting Octave - Schema mssola] -Octave:Builtin=4,ffb28c00,,,,,,,,,--- -Octave:Commands=11,ffb28c00,,,,,,,,,--- -Octave:Comment=8,ff009900,,,,,,,,,--- -Octave:Delimiter=0,,,,,,,,,,--- -Octave:Forge=11,ff000099,ff009900,1,1,,,,,,--- -Octave:Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -Octave:Incomplete String=6,ffa020f0,,,,,,,,,--- -Octave:Keyword=0,ff0000ff,,,,,,,,,--- -Octave:Normal Text=0,,,,,,,,,,--- -Octave:Number=5,,,,,,,,,,--- -Octave:Operator=0,,,,,,,,,,--- -Octave:String=7,ffb20000,,,,,,,,,--- -Octave:String Char=6,,,,,,,,,,--- -Octave:Variable=0,,,,,,,,,,--- - -[Highlighting OpenCL - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -OpenCL:Alert=10,,,,,,,,,,--- -OpenCL:Char=6,,,,,,,,,,--- -OpenCL:Comment=8,,,,,,,,,,--- -OpenCL:Data Type=2,,,,,,,,,,--- -OpenCL:Decimal=3,,,,,,,,,,--- -OpenCL:Error=13,,,,,,,,,,--- -OpenCL:Float=5,,,,,,,,,,--- -OpenCL:Hex=4,,,,,,,,,,--- -OpenCL:Keyword=1,,,,,,,,,,--- -OpenCL:Normal Text=0,,,,,,,,,,--- -OpenCL:Octal=4,,,,,,,,,,--- -OpenCL:Prep. Lib=9,,,,,,,,,,--- -OpenCL:Preprocessor=9,,,,,,,,,,--- -OpenCL:Region Marker=12,,,,,,,,,,--- -OpenCL:String=7,,,,,,,,,,--- -OpenCL:String Char=6,,,,,,,,,,--- -OpenCL:Symbol=0,,,,,,,,,,--- - -[Highlighting PGN - Schema mssola] -PGN:Commentc=8,,,1,,,,,,,--- -PGN:Commentp=8,,,,,,,,,,--- -PGN:Keyword=1,,,1,,,,,,,--- -PGN:Normal Text=0,,,,,,,,,,--- -PGN:Number=3,ffbb00bb,,,,,,,,,--- -PGN:Piece=0,ff0095ff,,1,0,,,,,,--- -PGN:String=7,,,0,,,,,,,--- -PGN:Symbol=9,ff00bb00,,,,,,,,,--- - -[Highlighting PHP (HTML) - Schema mssola] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Alert=10,,,,,,,,,,--- -CSS/PHP:At Rule=3,,,,,,,,,,--- -CSS/PHP:Comment=8,,,,,,,,,,--- -CSS/PHP:Error=13,,,,,,,,,,--- -CSS/PHP:Important=1,,,,,,,,,,--- -CSS/PHP:Media=3,,,1,,,,,,,--- -CSS/PHP:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Property=1,,,,,,,,,,--- -CSS/PHP:Region Marker=12,,,,,,,,,,--- -CSS/PHP:Selector Attr=6,,,,,,,,,,--- -CSS/PHP:Selector Class=5,,,,,,,,,,--- -CSS/PHP:Selector Id=5,,,1,,,,,,,--- -CSS/PHP:Selector Pseudo=3,,,,,,,,,,--- -CSS/PHP:String=7,,,,,,,,,,--- -CSS/PHP:Unknown Property=1,,,,1,,,,,,--- -CSS/PHP:Value=2,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript/PHP:Char=6,,,,,,,,,,--- -JavaScript/PHP:Comment=8,,,,,,,,,,--- -JavaScript/PHP:Decimal=3,,,,,,,,,,--- -JavaScript/PHP:Float=5,,,,,,,,,,--- -JavaScript/PHP:Function=11,,,,,,,,,,--- -JavaScript/PHP:Hex=4,,,,,,,,,,--- -JavaScript/PHP:JSON=2,,,,,,,,,,--- -JavaScript/PHP:Keyword=1,,,,,,,,,,--- -JavaScript/PHP:Normal Text=0,,,,,,,,,,--- -JavaScript/PHP:Object Member=11,,,,,,,,,,--- -JavaScript/PHP:Objects=9,,,,,,,,,,--- -JavaScript/PHP:Octal=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Character Class=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript/PHP:Region Marker=12,,,,,,,,,,--- -JavaScript/PHP:Regular Expression=9,,,,,,,,,,--- -JavaScript/PHP:Reserved=1,,,,1,,,,,,--- -JavaScript/PHP:String=7,,,,,,,,,,--- -JavaScript/PHP:Symbol=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP (HTML):Attribute=9,,,,,,,,,,--- -PHP (HTML):CDATA=4,,,1,,,,,,,--- -PHP (HTML):Comment=8,,,,,,,,,,--- -PHP (HTML):Doctype=2,,,1,,,,,,,--- -PHP (HTML):Element=1,,,,,,,,,,--- -PHP (HTML):EntityRef=3,,,,,,,,,,--- -PHP (HTML):Error=13,,,,,,,,,,--- -PHP (HTML):Normal Text=0,,,,,,,,,,--- -PHP (HTML):Other Text=0,,,,,,,,,,--- -PHP (HTML):PEntityRef=3,,,,,,,,,,--- -PHP (HTML):Processing Instruction=1,,,,,,,,,,--- -PHP (HTML):Value=7,ffaa0000,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,ff1f1c1b,ffffffff,1,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ff1f1c1b,ffffffff,1,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,ffbf0303,ff9c0e0e,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,ff1f1c1b,ffffffff,1,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,ff1f1c1b,ffffffff,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,ffbf0303,ff9c0e0e,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting PHP/PHP - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting POV-Ray - Schema mssola] -POV-Ray:Char=6,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Comment=8,ff008000,ff008000,0,0,,,,,,--- -POV-Ray:Constant=5,ff0000ff,ffffffff,0,0,,,,,,--- -POV-Ray:Declaration=1,ff000080,ff000080,1,0,,,,,,--- -POV-Ray:Declare Keyword=1,ff990099,ff990099,1,0,,,,,,--- -POV-Ray:Declare Macro=1,ffcc0000,ff990099,1,0,,,,,,--- -POV-Ray:Directives=9,ff3300ff,ff3300ff,1,0,,,,,,--- -POV-Ray:Filetype=2,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Float=5,ff0000ff,ffffffff,0,0,,,,,,--- -POV-Ray:Functions=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Keyword=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Macro=1,ff000080,ff000080,1,0,,,,,,--- -POV-Ray:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -POV-Ray:Objects=1,ff800000,ffffffff,0,0,,,,,,--- -POV-Ray:Region Marker=12,,,,,,,,,,--- -POV-Ray:String=7,ffff0000,ffff0000,0,0,,,,,,--- -POV-Ray:String Char=6,ffff00ff,ffff00ff,0,0,,,,,,--- -POV-Ray:Symbol=0,ff660099,ff660099,0,0,,,,,,--- -POV-Ray:Texturing=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Transforms=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Unofficial=1,ff0080d0,ffffffff,0,0,,,,,,--- - -[Highlighting Pango - Schema mssola] -Pango:Color=5,,,,,,,,,,--- -Pango:Decimal=3,,,,,,,,,,--- -Pango:Element=1,,,,,,,,,,--- -Pango:Error=13,,,,,,,,,,--- -Pango:Key=9,,,,,,,,,,--- -Pango:Normal Text=0,,,,,,,,,,--- -Pango:String=7,,,,,,,,,,--- -Pango:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting Pascal - Schema mssola] -Pascal:Alert=10,,,,,,,,,,--- -Pascal:Comment=8,,,,,,,,,,--- -Pascal:Directive=9,,,,,,,,,,--- -Pascal:Hex=4,,,,,,,,,,--- -Pascal:ISO/Delphi Extended=1,ff000080,,,,,,,,,--- -Pascal:Keyword=1,,,,,,,,,,--- -Pascal:Normal Text=0,,,,,,,,,,--- -Pascal:Number=3,,,,,,,,,,--- -Pascal:String=7,,,,,,,,,,--- -Pascal:Type=2,,,,,,,,,,--- - -[Highlighting Perl - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Perl:Bin=4,,,,,,,,,,--- -Perl:Comment=8,,,,,,,,,,--- -Perl:Data=0,,,,,,,,,,--- -Perl:Data Type=2,,,,,,,,,,--- -Perl:Decimal=3,,,,,,,,,,--- -Perl:Float=5,,,,,,,,,,--- -Perl:Function=11,,,,,,,,,,--- -Perl:Hex=4,,,,,,,,,,--- -Perl:Keyword=1,,,,,,,,,,--- -Perl:Normal Text=0,,,,,,,,,,--- -Perl:Nothing=8,,,,,,,,,,--- -Perl:Octal=4,,,,,,,,,,--- -Perl:Operator=1,ff008000,,,,,,,,,--- -Perl:Pattern=9,,,,,,,,,,--- -Perl:Pattern Character Class=4,,,,,,,,,,--- -Perl:Pattern Internal Operator=6,,,,,,,,,,--- -Perl:Pod=8,,,,,,,,,,--- -Perl:Pragma=1,,,,,,,,,,--- -Perl:Special Variable=2,ffc00000,ffc00000,0,0,,,,,,--- -Perl:String=7,ffbf0303,ffff6c6c,0,0,,,,,,--- -Perl:String (interpolated)=7,ffbf0303,ff9c0e0e,,,,,,,,--- -Perl:String Special Character=6,ffc000c0,ff6c2477,,,,,,,,--- - -[Highlighting PicAsm - Schema mssola] -PicAsm:Alert=10,,,,,,,,,,--- -PicAsm:Based Numbers=4,,,,,,,,,,--- -PicAsm:Char=6,,,,,,,,,,--- -PicAsm:Comment=8,,,,,,,,,,--- -PicAsm:Directives=9,,,,,,,,,,--- -PicAsm:Error=13,,,,,,,,,,--- -PicAsm:GPASM-macros=0,ff000000,ff000000,1,1,,,,,,--- -PicAsm:InstructionAttr=0,ff000080,ff000080,0,1,,,,,,--- -PicAsm:Instructions=1,,,,,,,,,,--- -PicAsm:Normal Text=0,,,,,,,,,,--- -PicAsm:Prep. Lib=9,,,,,,,,,,--- -PicAsm:Preprocessor=9,,,,,,,,,,--- -PicAsm:String=7,,,,,,,,,,--- -PicAsm:Symbol=0,ffff0000,ff083194,0,0,,,,,,--- -PicAsm:Unbased Numbers=3,,,,,,,,,,--- - -[Highlighting Pig - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts_indent:Alert=10,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -Pig:Comment=8,,,,,,,,,,--- -Pig:Float=5,,,,,,,,,,--- -Pig:Function=2,,,1,,,,,,,--- -Pig:Grunt=9,ffba8200,ffffffff,1,0,,,,,,--- -Pig:Hex=4,,,,,,,,,,--- -Pig:Int=3,,,,,,,,,,--- -Pig:Keyword=1,,,,,,,,,,--- -Pig:Normal Text=0,,,,,,,,,,--- -Pig:Octal=4,,,,,,,,,,--- -Pig:Operator=0,,,1,,,,,,,--- -Pig:Parameter=9,ff25a000,ffffffff,,,,,,,,--- -Pig:Statement=9,,,1,,,,,,,--- -Pig:String=7,,,,,,,,,,--- -Pig:Type=2,,,,,,,,,,--- - -[Highlighting Pike - Schema mssola] -Pike:Binary=4,,,,,,,,,,--- -Pike:Builtin Function=11,,,,,,,,,,--- -Pike:Char=6,,,,,,,,,,--- -Pike:Comment=8,,,,,,,,,,--- -Pike:Data Type=2,,,,,,,,,,--- -Pike:Decimal=3,,,,,,,,,,--- -Pike:Float=5,,,,,,,,,,--- -Pike:Hex=4,,,,,,,,,,--- -Pike:Keyword=1,,,,,,,,,,--- -Pike:Normal Text=0,,,,,,,,,,--- -Pike:Note=10,,,,,,,,,,--- -Pike:Octal=4,,,,,,,,,,--- -Pike:Preprocessor=9,,,,,,,,,,--- -Pike:Preprocessor Lib=7,,,,,,,,,,--- -Pike:String=7,,,,,,,,,,--- -Pike:String Char=6,,,,,,,,,,--- - -[Highlighting PostScript - Schema mssola] -PostScript:Comment=8,,,,,,,,,,--- -PostScript:Data Type=2,,,,,,,,,,--- -PostScript:Decimal=3,,,,,,,,,,--- -PostScript:Float=5,,,,,,,,,,--- -PostScript:Header=9,,,,,,,,,,--- -PostScript:Keyword=1,,,,,,,,,,--- -PostScript:Normal Text=0,,,,,,,,,,--- -PostScript:String=7,,,,,,,,,,--- - -[Highlighting PostScript Printer Description - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -PostScript Printer Description:Colon=1,,,,,,,,,,--- -PostScript Printer Description:Comment=8,,,,,,,,,,--- -PostScript Printer Description:Keyword=1,,,,,,,,,,--- -PostScript Printer Description:Option=9,,,,,,,,,,--- -PostScript Printer Description:Value=7,,,,,,,,,,--- - -[Highlighting Prolog - Schema mssola] -Alerts_indent:Alert=10,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -Prolog:"double-quoted"=9,,,,,,,,,,--- -Prolog:% italic predicates: w/ side effects=8,,,,,,,,,,--- -Prolog:%BEGIN folding region=12,,,,,,,,,,--- -Prolog:'quo Ted'=7,,,,,,,,,,--- -Prolog:( ) \x5b \x5d=0,,,,,,,,,,--- -Prolog:/* !avoid leading * to have folding */=8,,,,,,,,,,--- -Prolog:0'a (!use background)=4,,,,,,,ff0c0c0c,ffffffff,,--- -Prolog:0b1001 0o007 0xF1=4,,,,,,,,,,--- -Prolog:1 2 3 42=3,,,,,,,,,,--- -Prolog:2.718281E-9=5,,,,,,,,,,--- -Prolog:Arithmetics=2,,,1,1,,,,,,--- -Prolog:Dynamic Clause Management=1,,,,1,,,,,,--- -Prolog:Float Arithmetics=5,,,1,1,,,,,,--- -Prolog:Guru Meditation=0,ffff0000,ff00ffff,1,0,,,,,,--- -Prolog:Guru Meditation Terms=0,ffff0000,ff00ffff,0,1,,,,,,--- -Prolog:ISO Bogus=10,,,1,1,,,,,,--- -Prolog:Integer Arithmetics=3,,,1,1,,,,,,--- -Prolog:Logic & Control=1,,,,,,,,,,--- -Prolog:Normal Text=0,,,,,,,,,,--- -Prolog:Prolog State=11,,,1,,,,,,,--- -Prolog:Stream I/O=11,,,,1,,,,,,--- -Prolog:Syntax Error=13,,,,,,,,,,--- -Prolog:Type Checking=2,,,,,,,,,,--- -Prolog:Warning (!use background)=10,,,,,,,fffc000c,ff03fff3,,--- -Prolog:_VARIABLE=2,,,0,,,,,,,--- -Prolog:`back-quoted`=7,,,,1,,,,,,--- -Prolog:escaped (!use background)=6,,,,,,,ff0c0c0c,ffffffff,,--- -Prolog:other built-in operator=11,,,,,,,,,,--- -Prolog:other built-in predicate=11,,,,,,,,,,--- -Prolog:{ DCG }=1,,,,,,,,,,--- - -[Highlighting Protobuf - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Protobuf:Alert=10,,,,,,,,,,--- -Protobuf:Char=6,,,,,,,,,,--- -Protobuf:Comment=8,,,,,,,,,,--- -Protobuf:Data Type=2,,,,,,,,,,--- -Protobuf:Decimal=3,,,,,,,,,,--- -Protobuf:Error=13,,,,,,,,,,--- -Protobuf:Float=5,,,,,,,,,,--- -Protobuf:Hex=4,,,,,,,,,,--- -Protobuf:Imports=9,,,,,,,,,,--- -Protobuf:Keyword=1,,,,,,,,,,--- -Protobuf:Normal Text=0,,,,,,,,,,--- -Protobuf:Octal=4,,,,,,,,,,--- -Protobuf:String=7,,,,,,,,,,--- -Protobuf:String Char=6,,,,,,,,,,--- -Protobuf:Symbol=0,,,,,,,,,,--- - -[Highlighting PureBasic - Schema mssola] -PureBasic:Comment=8,,,,,,,,,,--- -PureBasic:Constant=2,,,,,,,,,,--- -PureBasic:Functions=11,,,,,,,,,,--- -PureBasic:Keyword=1,,,,,,,,,,--- -PureBasic:Normal Text=0,,,,,,,,,,--- -PureBasic:Number=3,,,,,,,,,,--- -PureBasic:Region Marker=12,,,,,,,,,,--- -PureBasic:String=7,,,,,,,,,,--- - -[Highlighting Python - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts_indent:Alert=10,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ffffffff,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ffffffff,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ffffffff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ffffffff,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ffffffff,,,,,,,,--- - -[Highlighting QML - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -QML:Elements=1,ff008000,ff00ffff,0,0,,,,,,--- -QML:Import=1,,,,,,,,,,--- -QML:ImportValue=7,,,,,,,,,,--- -QML:Keywords=1,,,,,,,,,,--- -QML:Normal Text=0,,,,,,,,,,--- -QML:Property Type=2,,,,,,,,,,--- -QML:Signal=1,ff0095ff,ffffffff,,,,,,,,--- - -[Highlighting QMake - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -QMake:Backslash Code=1,,,1,,,,,,,--- -QMake:Comment=8,,,,,,,,,,--- -QMake:Function=11,,,,,,,,,,--- -QMake:Keyword=1,,,,,,,,,,--- -QMake:Normal Text=0,,,,,,,,,,--- -QMake:Predefined Variable=2,,,1,,,,,,,--- -QMake:String=7,,,,,,,,,,--- -QMake:System=9,,,,,,,,,,--- -QMake:Variable=2,,,,,,,,,,--- - -[Highlighting Quake Script - Schema mssola] -Quake Script:Action=0,ffffcc00,ff00ff00,1,1,,,,,,--- -Quake Script:Command=1,,,,,,,,,,--- -Quake Script:Comment=8,,,,,,,,,,--- -Quake Script:Float=5,,,,,,,,,,--- -Quake Script:Hex=4,,,,,,,,,,--- -Quake Script:Identifier=2,,,,,,,,,,--- -Quake Script:Int=5,,,,,,,,,,--- -Quake Script:Normal Text=0,,,,,,,,,,--- -Quake Script:String=0,ffff0000,ff00ff00,0,1,,,,,,--- -Quake Script:String Char=6,,,,,,,,,,--- -Quake Script:Symbol=9,,,,,,,,,,--- -Quake Script:Variable=0,ff0000ff,ff00ff00,1,1,,,,,,--- - -[Highlighting R Script - Schema mssola] -R Script:Assign=0,ff336366,ffccc099,1,0,,,,,,--- -R Script:Comment=8,,,,,,,,,,--- -R Script:Control Structure=0,ff0000bf,ffbfbf00,,,,,,,,--- -R Script:Error=13,,,,,,,,,,--- -R Script:Float=5,,,,,,,,,,--- -R Script:Headline=0,ffb00000,ffb00000,1,0,,,,,,--- -R Script:Identifier=2,,,,,,,,,,--- -R Script:Int=3,,,,,,,,,,--- -R Script:Keyword=1,,,,,,,,,,--- -R Script:Normal Text=0,,,,,,,,,,--- -R Script:Operator=0,ff803f00,ff000077,0,0,,,,,,--- -R Script:Reserved Words=9,,,,,,,,,,--- -R Script:String=7,,,,,,,,,,--- -R Script:String Char=6,,,,,,,,,,--- -R Script:Symbol=0,,,,,,,,,,--- - -[Highlighting RELAX NG - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -RELAX NG:Attribute=9,,,,,,,,,,--- -RELAX NG:Attribute Value=7,ff800000,ffffffff,0,0,,,,,,--- -RELAX NG:Comment=8,,,,,,,,,,--- -RELAX NG:Invalid=13,,,,,,,,,,--- -RELAX NG:Normal Text=0,,,,,,,,,,--- -RELAX NG:RELAX NG Tags=1,ff000080,ffffffff,1,0,,,,,,--- -RELAX NG:Tag=1,,,,,,,,,,--- - -[Highlighting REXX - Schema mssola] -REXX:Alert=10,,,,,,,,,,--- -REXX:Built In=0,ff000090,,,,,,,,,--- -REXX:Comment=8,,,,,,,,,,--- -REXX:Function=11,,,,,,,,,,--- -REXX:Instructions=1,,,,,,,,,,--- -REXX:Normal Text=0,,,,,,,,,,--- -REXX:String=7,,,,,,,,,,--- -REXX:Symbol=0,,,,,,,,,,--- - -[Highlighting RPM Spec - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -RPM Spec:Comment=8,,,,,,,,,,--- -RPM Spec:Enumeration=9,,,,,,,,,,--- -RPM Spec:Error=13,,,,,,,,,,--- -RPM Spec:Escaped character=6,,,,,,,,,,--- -RPM Spec:Fallback for separator spaces=0,,,,,,,,,,--- -RPM Spec:Hint=13,,,,,,,,,,--- -RPM Spec:Integer=3,,,,,,,,,,--- -RPM Spec:Keyword=1,,,,,,,,,,--- -RPM Spec:Line break=1,,,,,,,,,,--- -RPM Spec:Macro call=11,,,,,,,,,,--- -RPM Spec:Section=12,,,,,,,,,,--- -RPM Spec:Shell commands=0,,,,,,,,,,--- -RPM Spec:String=7,,,,,,,,,,--- -RPM Spec:Tag=2,,,,,,,,,,--- -RPM Spec:Warning=13,,,,,,,,,,--- - -[Highlighting RSI IDL - Schema mssola] -RSI IDL:Char=6,,,,,,,,,,--- -RSI IDL:Command=4,ff050505,ffffffff,1,,,,,,,--- -RSI IDL:Comment=8,ff2b7805,ff945ca4,,,,,,,,--- -RSI IDL:Data Type=2,,,,,,,,,,--- -RSI IDL:Decimal=3,ff000000,ffffffff,,,,,,,,--- -RSI IDL:Float=3,ff000000,ffffffff,,,,,,,,--- -RSI IDL:Hex=3,,,,,,,,,,--- -RSI IDL:IOCommand=2,ff050505,ffffffff,1,,,,,,,--- -RSI IDL:Keyword=1,ff1414e4,ffffd60b,1,,,,,,,--- -RSI IDL:Normal Text=0,,,,,,,,,,--- -RSI IDL:Octal=3,,,,,,,,,,--- -RSI IDL:String=7,ffff0000,ffff0000,,,,,,,,--- -RSI IDL:String Char=6,ffff0000,ffff0000,,,,,,,,--- -RSI IDL:bracketed=5,,,,,,,,,,--- - -[Highlighting RapidQ - Schema mssola] -RapidQ:Comment=8,,,,,,,,,,--- -RapidQ:Decimal=3,,,,,,,,,,--- -RapidQ:Directive=9,,,,,,,,,,--- -RapidQ:Float=5,,,,,,,,,,--- -RapidQ:Keyword=1,,,,,,,,,,--- -RapidQ:Normal Text=0,,,,,,,,,,--- -RapidQ:Object=11,,,,,,,,,,--- -RapidQ:Propormeth=2,,,,,,,,,,--- -RapidQ:String=7,,,,,,,,,,--- - -[Highlighting RelaxNG-Compact - Schema mssola] -RelaxNG-Compact:Comments=8,,,,,,,,,,--- -RelaxNG-Compact:Datatypes=2,,,,,,,,,,--- -RelaxNG-Compact:Definitions=11,,,,,,,,,,--- -RelaxNG-Compact:Keywords=1,,,,,,,,,,--- -RelaxNG-Compact:Node Names=9,,,,,,,,,,--- -RelaxNG-Compact:Normal Text=0,,,,,,,,,,--- -RelaxNG-Compact:String=7,,,,,,,,,,--- - -[Highlighting RenderMan RIB - Schema mssola] -RenderMan RIB:Comment=8,,,,,,,,,,--- -RenderMan RIB:External Resource=1,,,,,,,,,,--- -RenderMan RIB:Float=5,,,,,,,,,,--- -RenderMan RIB:Geometric Primitive=1,,,,,,,,,,--- -RenderMan RIB:Graphics State=1,,,,,,,,,,--- -RenderMan RIB:Integer=3,,,,,,,,,,--- -RenderMan RIB:Motion=1,,,,,,,,,,--- -RenderMan RIB:Normal Text=0,,,,,,,,,,--- -RenderMan RIB:String=7,,,,,,,,,,--- - -[Highlighting Restructured Text - Schema mssola] -Restructured Text:Code=2,,,,,,,,,,--- -Restructured Text:Directive=3,,,,,,,,,,--- -Restructured Text:Emphasys=0,,,,1,,,,,,--- -Restructured Text:Error=13,,,,,,,,,,--- -Restructured Text:Keyword=1,,,,,,,,,,--- -Restructured Text:Link=7,,,,,,,,,,--- -Restructured Text:LinkUrl=7,,,1,,,,,,,--- -Restructured Text:Literal=2,,,,,,,,,,--- -Restructured Text:Normal Text=0,,,,,,,,,,--- -Restructured Text:OrderedList=3,,,,,,,,,,--- -Restructured Text:Strong=0,,,1,,,,,,,--- -Restructured Text:Title=1,,,1,,,,,,,--- -Restructured Text:UnorderedList=5,,,,,,,,,,--- - -[Highlighting Roff - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Roff:Comment=8,,,,,,,,,,--- -Roff:Error=13,,,,,,,,,,--- -Roff:Escape=6,,,,,,,,,,--- -Roff:Font=9,,,,,,,,,,--- -Roff:Format Macros=1,,,,,,,,,,--- -Roff:GNU Macros=2,,,,,,,,,,--- -Roff:Glyph=9,,,,,,,,,,--- -Roff:Identifier=7,,,,,,,,,,--- -Roff:Layout Macros=1,,,,,,,,,,--- -Roff:Normal Text=0,,,,,,,,,,--- -Roff:Number=3,,,,,,,,,,--- -Roff:Other Macros=11,,,,,,,,,,--- -Roff:Register=9,,,,,,,,,,--- -Roff:String=7,,,,,,,,,,--- - -[Highlighting Ruby - Schema mssola] -Alerts:Alert Level 1=10,ffbf0303,ff9c0e0e,1,,,,fff6e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff6e6e6,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Ruby:Access Control=1,ff0000ff,,,,,,,,,--- -Ruby:Attribute Definition=9,,,,,,,,,,--- -Ruby:Bin=4,,,,,,,,,,--- -Ruby:Blockcomment=8,,,,,,,,,,--- -Ruby:Char=6,ffbf0303,ff6c2477,,,,,,,,--- -Ruby:Class Variable=9,,,,,,,,,,--- -Ruby:Command=7,ffbf0303,ff9c0e0e,,,,,,,,--- -Ruby:Comment=8,,,,,,,,,,--- -Ruby:Constant=2,,,,,,,,,,--- -Ruby:Constant Value=2,ffbb1188,,,,,,,,,--- -Ruby:Data=0,,,,,,,,,,--- -Ruby:Dec=3,,,,,,,,,,--- -Ruby:Default globals=2,ffc00000,,1,,,,,,,--- -Ruby:Definition=1,,,,,,,,,,--- -Ruby:Delimiter=0,ff000080,ffffffff,,,,,,,,--- -Ruby:Error=13,,,,,,,,,,--- -Ruby:Expression=9,,,,,,,,,,--- -Ruby:Float=5,,,,,,,,,,--- -Ruby:GDL input=9,,,,,,,,,,--- -Ruby:Global Constant=2,ffbb1188,,1,,,,,,,--- -Ruby:Global Variable=2,ffc00000,,,,,,,,,--- -Ruby:Here Document=9,,,,,,,,,,--- -Ruby:Hex=4,,,,,,,,,,--- -Ruby:Instance Variable=9,,,,,,,,,,--- -Ruby:Kernel methods=0,ff000080,ffffffff,,,,,,,,--- -Ruby:Keyword=1,,,,,,,,,,--- -Ruby:Member=0,,,,,,,,,,--- -Ruby:Message=0,ff4000a7,,,,,,,,,--- -Ruby:Module mixin methods=0,ff000080,ffffffff,,,,,,,,--- -Ruby:Normal Text=0,,,,,,,,,,--- -Ruby:Octal=4,,,,,,,,,,--- -Ruby:Operator=0,ff000080,ffffffff,,,,,,,,--- -Ruby:Pseudo variable=3,,,,,,,,,,--- -Ruby:RDoc Value=9,,,,,,,,,,--- -Ruby:Raw String=7,ffbf0303,ffdd4a4a,,,,,,,,--- -Ruby:Region Marker=0,ff000080,ffffffff,,,,,,,,--- -Ruby:Regular Expression=9,ff4a5704,,,,,,,,,--- -Ruby:String=7,ffbf0303,ff9c0e0e,,,,,,,,--- -Ruby:Substitution=9,,,,,,,,,,--- -Ruby:Symbol=7,ffbf0303,ff9c0e0e,,,,,,,,--- - -[Highlighting Ruby/Rails/RHTML - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Ruby/Rails/RHTML:Access Control=1,ff0000ff,,,,,,,,,--- -Ruby/Rails/RHTML:Alert=10,,,,,,,,,,--- -Ruby/Rails/RHTML:Attribute=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Attribute Definition=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Bin=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Blockcomment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:CDATA=4,,,1,,,,,,,--- -Ruby/Rails/RHTML:Char=6,,,,,,,,,,--- -Ruby/Rails/RHTML:Class Variable=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Command=7,ffbf0303,ff9c0e0e,,,,,,,,--- -Ruby/Rails/RHTML:Comment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:Constant=2,,,,,,,,,,--- -Ruby/Rails/RHTML:Constant Value=2,ffbb1188,,,,,,,,,--- -Ruby/Rails/RHTML:Data=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Dec=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Default globals=2,ffc00000,,1,,,,,,,--- -Ruby/Rails/RHTML:Definition=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Delimiter=6,ff000080,ff6c2477,,,,,,,,--- -Ruby/Rails/RHTML:Doctype=2,,,1,,,,,,,--- -Ruby/Rails/RHTML:Element=1,,,,,,,,,,--- -Ruby/Rails/RHTML:EntityRef=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Error=13,,,,,,,,,,--- -Ruby/Rails/RHTML:Expression=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Float=5,,,,,,,,,,--- -Ruby/Rails/RHTML:GDL input=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Global Constant=2,ffbb1188,,1,,,,,,,--- -Ruby/Rails/RHTML:Global Variable=2,ffc00000,,,,,,,,,--- -Ruby/Rails/RHTML:Hex=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Instance Variable=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Kernel methods=0,ff000080,ffffffff,,,,,,,,--- -Ruby/Rails/RHTML:Keyword=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Member=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Message=0,ff4000a7,,,,,,,,,--- -Ruby/Rails/RHTML:Normal Text=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Octal=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Operator=6,ff000080,ff6c2477,,,,,,,,--- -Ruby/Rails/RHTML:PEntityRef=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Processing Instruction=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Pseudo variable=3,,,,,,,,,,--- -Ruby/Rails/RHTML:RDoc Value=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Raw String=7,ffbf0303,ffdd4a4a,,,,,,,,--- -Ruby/Rails/RHTML:Region Marker=0,ff0000ff,,,,,,,,,--- -Ruby/Rails/RHTML:Regular Expression=9,ff4a5704,,,,,,,,,--- -Ruby/Rails/RHTML:Ruby Comment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:Ruby Normal Text=0,,,,,,,,,,--- -Ruby/Rails/RHTML:String=7,ffbf0303,ff9c0e0e,,,,,,,,--- -Ruby/Rails/RHTML:Substitution=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Symbol=7,ffbf0303,ff9c0e0e,,,,,,,,--- -Ruby/Rails/RHTML:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting SCSS - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -SCSS:Alert=10,,,,,,,,,,--- -SCSS:At Rule=3,,,,,,,,,,--- -SCSS:Comment=8,,,,,,,,,,--- -SCSS:Error=13,,,,,,,,,,--- -SCSS:Important=1,,,,,,,,,,--- -SCSS:Media=3,,,1,,,,,,,--- -SCSS:Normal Text=0,,,,,,,,,,--- -SCSS:Property=1,,,,,,,,,,--- -SCSS:Region Marker=12,,,,,,,,,,--- -SCSS:Selector Attr=6,,,,,,,,,,--- -SCSS:Selector Class=5,,,,,,,,,,--- -SCSS:Selector Id=5,,,1,,,,,,,--- -SCSS:Selector Pseudo=3,,,,,,,,,,--- -SCSS:String=7,,,,,,,,,,--- -SCSS:Unknown Property=1,,,,1,,,,,,--- -SCSS:Value=2,,,,,,,,,,--- -SCSS:Variable=0,,,,,,,,,,--- - -[Highlighting SGML - Schema mssola] -SGML:Attribute Name=9,,,,,,,,,,--- -SGML:Attribute Value=2,,,,,,,,,,--- -SGML:Comment=8,,,,,,,,,,--- -SGML:Normal Text=0,,,,,,,,,,--- -SGML:Tag=1,,,,,,,,,,--- - -[Highlighting SML - Schema mssola] -SML:Comment=8,,,,,,,,,,--- -SML:Data Type=2,,,,,,,,,,--- -SML:Decimal=3,,,,,,,,,,--- -SML:Float=5,,,,,,,,,,--- -SML:Keyword=1,,,,,,,,,,--- -SML:Normal Text=0,,,,,,,,,,--- -SML:Notice=7,,,,,,,,,,--- -SML:String=7,,,,,,,,,,--- -SML:String Char=6,,,,,,,,,,--- - -[Highlighting SQL (MySQL) - Schema mssola] -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting SQL (PostgreSQL) - Schema mssola] -SQL (PostgreSQL):Comment=8,,,,,,,,,,--- -SQL (PostgreSQL):Data Type=2,,,,,,,,,,--- -SQL (PostgreSQL):Decimal=3,,,,,,,,,,--- -SQL (PostgreSQL):Float=5,,,,,,,,,,--- -SQL (PostgreSQL):Function=11,,,,,,,,,,--- -SQL (PostgreSQL):Identifier=9,,,,,,,,,,--- -SQL (PostgreSQL):Keyword=1,,,,,,,,,,--- -SQL (PostgreSQL):Normal Text=0,,,,,,,,,,--- -SQL (PostgreSQL):Operator=0,,,,,,,,,,--- -SQL (PostgreSQL):Preprocessor=9,,,,,,,,,,--- -SQL (PostgreSQL):String=7,,,,,,,,,,--- -SQL (PostgreSQL):String Char=6,,,,,,,,,,--- -SQL (PostgreSQL):Symbol=6,,,,,,,,,,--- - -[Highlighting SQL - Schema mssola] -SQL:Comment=8,,,,,,,,,,--- -SQL:Data Type=2,,,,,,,,,,--- -SQL:Decimal=3,,,,,,,,,,--- -SQL:External Variable=6,,,,,,,,,,--- -SQL:Float=5,,,,,,,,,,--- -SQL:Function=11,,,,,,,,,,--- -SQL:Hex=4,,,,,,,,,,--- -SQL:Identifier=9,,,,,,,,,,--- -SQL:Keyword=1,,,,,,,,,,--- -SQL:Normal Text=0,,,,,,,,,,--- -SQL:Operator=0,,,,,,,,,,--- -SQL:Preprocessor=9,,,,,,,,,,--- -SQL:String=7,,,,,,,,,,--- -SQL:String Char=6,,,,,,,,,,--- -SQL:Symbol=6,,,,,,,,,,--- - -[Highlighting Sather - Schema mssola] -Sather:Char=6,,,,,,,,,,--- -Sather:Comment=8,,,,,,,,,,--- -Sather:Data Type=2,,,,,,,,,,--- -Sather:Decimal=3,,,,,,,,,,--- -Sather:Features=9,,,,,,,,,,--- -Sather:Float=5,,,,,,,,,,--- -Sather:Keyword=1,,,,,,,,,,--- -Sather:Normal Text=0,,,,,,,,,,--- -Sather:String=7,,,,,,,,,,--- - -[Highlighting Scala - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Scala:Char=6,,,,,,,,,,--- -Scala:Comment=8,,,,,,,,,,--- -Scala:Data Type=2,,,,,,,,,,--- -Scala:Decimal=3,,,,,,,,,,--- -Scala:Float=5,,,,,,,,,,--- -Scala:Function=11,,,,,,,,,,--- -Scala:Hex=4,,,,,,,,,,--- -Scala:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -Scala:Java15=0,ff0095ff,ffffffff,1,0,,,,,,--- -Scala:Keyword=1,,,,,,,,,,--- -Scala:Normal Text=0,,,,,,,,,,--- -Scala:Octal=4,,,,,,,,,,--- -Scala:PrintfString=7,,,,,,,,,,--- -Scala:Scala2=0,ff0095ff,ffffffff,1,0,,,,,,--- -Scala:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -Scala:String=7,,,,,,,,,,--- -Scala:String Char=6,,,,,,,,,,--- -Scala:Symbol=0,,,,,,,,,,--- - -[Highlighting Scheme - Schema mssola] -Scheme:BaseN=4,,,,,,,,,,--- -Scheme:Brackets1=0,ffff0000,ff000000,1,0,,,,,,--- -Scheme:Brackets2=0,ffff8800,ff000000,1,0,,,,,,--- -Scheme:Brackets3=0,ff888800,ff000000,1,0,,,,,,--- -Scheme:Brackets4=0,ff008800,ff000000,1,0,,,,,,--- -Scheme:Brackets5=0,ff000088,ff000000,1,0,,,,,,--- -Scheme:Brackets6=0,ff880088,ff000000,1,0,,,,,,--- -Scheme:Char=6,,,,,,,,,,--- -Scheme:Comment=8,,,,,,,,,,--- -Scheme:Data=2,,,,,,,,,,--- -Scheme:Decimal=3,,,,,,,,,,--- -Scheme:Definition=1,ffd22811,,,,,,,,,--- -Scheme:Float=5,,,,,,,,,,--- -Scheme:Function=11,,,,,,,,,,--- -Scheme:Keyword=1,,,,,,,,,,--- -Scheme:Normal=0,,,,,,,,,,--- -Scheme:Operator=1,ffd22811,,,,,,,,,--- -Scheme:Region Marker=12,,,,,,,,,,--- -Scheme:String=7,,,,,,,,,,--- - -[Highlighting SiSU - Schema mssola] -SiSU:Bold=0,ff800000,ff60ffff,1,0,,,,,,--- -SiSU:Break=0,ffff0000,ff60ffff,0,0,,,,,,--- -SiSU:Comment=8,,,,,,,,,,--- -SiSU:Endnote=0,ff086800,ff60ffff,0,0,,,,,,--- -SiSU:Group=12,,,,,,,,,,--- -SiSU:Header=0,ff1c869b,ff60ffff,0,0,,,,,,--- -SiSU:Heading=0,ffff0000,ff60ffff,1,0,,,,,,--- -SiSU:Indent=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Insert=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Italic=0,ff800000,ff60ffff,0,1,,,,,,--- -SiSU:Keyword=1,,,,,,,,,,--- -SiSU:Link=0,ff0000ff,ff60ffff,0,0,,,,,,--- -SiSU:Normal Text=0,,,,,,,,,,--- -SiSU:Strike=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:String=7,,,,,,,,,,--- -SiSU:Structure=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Subscript=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Superscript=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Underscore=0,fff00000,ff80ffd0,0,0,,,,,,--- - -[Highlighting Sieve - Schema mssola] -Sieve:Comment=8,,,,,,,,,,--- -Sieve:Decimal=3,,,,,,,,,,--- -Sieve:Function=11,,,,,,,,,,--- -Sieve:Keyword=1,,,,,,,,,,--- -Sieve:Normal Text=0,,,,,,,,,,--- -Sieve:String=7,,,,,,,,,,--- -Sieve:String Char=6,,,,,,,,,,--- -Sieve:Symbol=0,,,,,,,,,,--- -Sieve:Tagged Argument=9,,,,,,,,,,--- - -[Highlighting Spice - Schema mssola] -Spice:Comment=8,,,,,,,,,,--- -Spice:Keyword=1,,,,,,,,,,--- -Spice:Normal Text=0,,,,,,,,,,--- -Spice:Number=3,,,,,,,,,,--- -Spice:String=7,,,,,,,,,,--- - -[Highlighting Stata - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Stata:Comment=8,,,,,,,,,,--- -Stata:Constants=2,,,,,,,,,,--- -Stata:Data Type=2,,,,,,,,,,--- -Stata:Functions=11,,,,,,,,,,--- -Stata:GlobalMacro=9,,,,,,,,,,--- -Stata:Graphics=4,,,,,,,,,,--- -Stata:Keyword=1,,,,,,,,,,--- -Stata:Macro=9,,,,,,,,,,--- -Stata:Mata=1,,,,,,,,,,--- -Stata:Normal Text=0,,,,,,,,,,--- -Stata:String=7,,,,,,,,,,--- -Stata:String Char=6,,,,,,,,,,--- -Stata:System Params=3,,,,,,,,,,--- - -[Highlighting SystemC - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -SystemC:Comment=8,,,,,,,,,,--- -SystemC:Data Type=2,,,,,,,,,,--- -SystemC:Extensions-Functions=1,ff000000,ffffffff,1,1,,,,,,--- -SystemC:Extensions-Keywords=1,,,,,,,,,,--- -SystemC:Extensions-Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -SystemC:Keyword=1,,,,,,,,,,--- -SystemC:Normal Text=0,,,,,,,,,,--- - -[Highlighting SystemVerilog - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -SystemVerilog:Assert Keyword=1,,,,,,,,,,--- -SystemVerilog:Binary=4,,,,,,,,,,--- -SystemVerilog:Block Keyword=1,,,,,,,,,,--- -SystemVerilog:Block Name=2,,,,,,,,,,--- -SystemVerilog:Case Keyword=1,,,,,,,,,,--- -SystemVerilog:Checker Keyword=1,,,,,,,,,,--- -SystemVerilog:Class Keyword=1,,,,,,,,,,--- -SystemVerilog:Comment=8,,,,,,,,,,--- -SystemVerilog:Config Keyword=1,,,,,,,,,,--- -SystemVerilog:Confitional Keyword=1,,,,,,,,,,--- -SystemVerilog:Constraint Keyword=1,,,,,,,,,,--- -SystemVerilog:Continuous Assign Keyword=1,,,,,,,,,,--- -SystemVerilog:Coverage Keyword=1,,,,,,,,,,--- -SystemVerilog:DPI Keyword=1,,,,,,,,,,--- -SystemVerilog:Data Type Keyword=2,,,,,,,,,,--- -SystemVerilog:Decimal=4,,,,,,,,,,--- -SystemVerilog:Delay=4,,,,,,,,,,--- -SystemVerilog:Deprecated Keyword=13,,,,,,,,,,--- -SystemVerilog:Drive/Charge Strength Keyword=4,,,,,,,,,,--- -SystemVerilog:Event Keyword=1,,,,,,,,,,--- -SystemVerilog:Float=5,,,,,,,,,,--- -SystemVerilog:Gate Instantiation Keyword=2,,,,,,,,,,--- -SystemVerilog:Generator Keyword=1,,,,,,,,,,--- -SystemVerilog:Hex=4,,,,,,,,,,--- -SystemVerilog:Integer=3,,,,,,,,,,--- -SystemVerilog:Interface Keyword=1,,,,,,,,,,--- -SystemVerilog:Keyword=1,,,,,,,,,,--- -SystemVerilog:Library Keyword=1,,,,,,,,,,--- -SystemVerilog:Loop Keyword=1,,,,,,,,,,--- -SystemVerilog:Method Keyword=1,,,,,,,,,,--- -SystemVerilog:Normal Text=0,,,,,,,,,,--- -SystemVerilog:Octal=4,,,,,,,,,,--- -SystemVerilog:PLI Task=2,,,,,,,,,,--- -SystemVerilog:Port Connection=2,,,,,,,,,,--- -SystemVerilog:Prep. Lib=5,,,,,,,,,,--- -SystemVerilog:Preprocessor=9,,,,,,,,,,--- -SystemVerilog:Preprocessor Keyword=9,,,,,,,,,,--- -SystemVerilog:Process Block Keyword=1,,,,,,,,,,--- -SystemVerilog:Specify Keyword=1,,,,,,,,,,--- -SystemVerilog:Standard Library=9,,,,,,,,,,--- -SystemVerilog:String=7,,,,,,,,,,--- -SystemVerilog:String Char=6,,,,,,,,,,--- -SystemVerilog:Symbol=0,,,,,,,,,,--- -SystemVerilog:System Task Keyword=2,,,,,,,,,,--- -SystemVerilog:Time Keyword=1,,,,,,,,,,--- -SystemVerilog:Type Keyword=1,,,,,,,,,,--- - -[Highlighting TADS 3 - Schema mssola] -TADS 3:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -TADS 3:Comment=8,,,,,,,,,,--- -TADS 3:Decimal=3,,,,,,,,,,--- -TADS 3:Embedded Expression=0,ff000000,ffffffff,0,1,,,,,,--- -TADS 3:HTML Tag=1,ff0f0f8f,ffffffff,0,1,,,,,,--- -TADS 3:Hex=4,,,,,,,,,,--- -TADS 3:Keyword=1,,,,,,,,,,--- -TADS 3:Normal Text=0,,,,,,,,,,--- -TADS 3:Octal=4,,,,,,,,,,--- -TADS 3:Preprocessor=9,,,,,,,,,,--- -TADS 3:String=7,,,,,,,,,,--- -TADS 3:Symbol=0,,,,,,,,,,--- -TADS 3:ValString=7,,,,,,,,,,--- - -[Highlighting TI Basic - Schema mssola] -TI Basic:Assignment=9,,,,,,,,,,--- -TI Basic:Keyword=1,,,,,,,,,,--- -TI Basic:Matrix=0,,,,,,,,,,--- -TI Basic:Normal Text=0,,,,,,,,,,--- -TI Basic:Special operators=0,,,,,,,,,,--- -TI Basic:String=7,,,,,,,,,,--- - -[Highlighting TT2 - Schema mssola] -TT2:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -TT2:Comment=8,,,,,,,,,,--- -TT2:Control Structures=1,ff0000dd,ffffffff,1,0,,,,,,--- -TT2:Decimal=3,,,,,,,,,,--- -TT2:Float=5,,,,,,,,,,--- -TT2:Function=1,ff0000ff,ff00ffff,0,0,,,,,,--- -TT2:HTML Comment=8,,,,,,,,,,--- -TT2:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -TT2:Hex=4,,,,,,,,,,--- -TT2:Identifier=9,,,,,,,,,,--- -TT2:Keyword=1,,,,,,,,,,--- -TT2:Normal Text=0,,,,,,,,,,--- -TT2:Octal=4,,,,,,,,,,--- -TT2:Operator=1,ff008000,,,,,,,,,--- -TT2:Other=9,,,,,,,,,,--- -TT2:String=7,ffff6c6c,ffff6c6c,0,0,,,,,,--- -TT2:TT2 Text=0,,,,,,,,,,--- -TT2:Types=2,,,,,,,,,,--- -TT2:Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- - -[Highlighting Tcl/Tk - Schema mssola] -Tcl/Tk:Char=6,,,,,,,,,,--- -Tcl/Tk:Comment=8,,,,,,,,,,--- -Tcl/Tk:Decimal=3,,,,,,,,,,--- -Tcl/Tk:Float=5,,,,,,,,,,--- -Tcl/Tk:Keyword=1,,,,,,,,,,--- -Tcl/Tk:Normal Text=0,,,,,,,,,,--- -Tcl/Tk:Parameter=9,,,,,,,,,,--- -Tcl/Tk:Region Marker=12,,,,,,,,,,--- -Tcl/Tk:String=7,,,,,,,,,,--- -Tcl/Tk:Variable=2,,,,,,,,,,--- - -[Highlighting Tcsh - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Tcsh:Backquote=1,,,,,,,,,,--- -Tcsh:Builtin=1,,,,,,,,,,--- -Tcsh:Command=1,,,,,,,,,,--- -Tcsh:Comment=8,,,,,,,,,,--- -Tcsh:Control=1,,,,,,,,,,--- -Tcsh:Escape=2,,,,,,,,,,--- -Tcsh:Expression=9,,,,,,,,,,--- -Tcsh:Function=11,,,,,,,,,,--- -Tcsh:Keyword=1,,,,,,,,,,--- -Tcsh:Label=9,,,,,,,,,,--- -Tcsh:Normal Text=0,,,,,,,,,,--- -Tcsh:Option=0,,,,,,,,,,--- -Tcsh:Path=0,,,,,,,,,,--- -Tcsh:Redirection=1,,,,,,,,,,--- -Tcsh:String DoubleQ=7,,,,,,,,,,--- -Tcsh:String Escape=2,,,,,,,,,,--- -Tcsh:String SingleQ=7,,,,,,,,,,--- -Tcsh:String Transl.=7,,,,,,,,,,--- -Tcsh:Variable=9,,,,,,,,,,--- - -[Highlighting Texinfo - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Texinfo:Command=11,,,,,,,,,,--- -Texinfo:Comment=8,,,,,,,,,,--- -Texinfo:Normal Text=0,,,,,,,,,,--- - -[Highlighting Textile - Schema mssola] -Textile:Normal Text=0,,,,,,,,,,--- -Textile:blockattrs=8,,,,,,,,,,--- -Textile:comment=8,,,,,,,,,,--- -Textile:htmllink=2,,,,,,,,,,--- -Textile:image=5,,,,,,,,,,--- -Textile:imagefilename=1,,,,,,,,,,--- -Textile:itemlist=2,,,,,,,,,,--- -Textile:macro=8,,,1,,,,,,,--- -Textile:sectionblockattrs=8,,,1,,,,,,,--- -Textile:sectionheader=11,,,1,,,,,,,--- -Textile:sectiontitle=1,,,1,,,,,,,--- -Textile:strikeout=0,,,,,1,,,,,--- -Textile:strong=0,,,1,,,,,,,--- -Textile:textblock=8,,,,,,,,,,--- - -[Highlighting Troff Mandoc - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Roff:Comment=8,,,,,,,,,,--- -Roff:Error=13,,,,,,,,,,--- -Roff:Escape=6,,,,,,,,,,--- -Roff:Font=9,,,,,,,,,,--- -Roff:Format Macros=1,,,,,,,,,,--- -Roff:GNU Macros=2,,,,,,,,,,--- -Roff:Glyph=9,,,,,,,,,,--- -Roff:Identifier=7,,,,,,,,,,--- -Roff:Layout Macros=1,,,,,,,,,,--- -Roff:Normal Text=0,,,,,,,,,,--- -Roff:Number=3,,,,,,,,,,--- -Roff:Other Macros=11,,,,,,,,,,--- -Roff:Register=9,,,,,,,,,,--- -Roff:String=7,,,,,,,,,,--- -Troff Mandoc:Comment=8,,,,,,,,,,--- -Troff Mandoc:Formatting=1,,,,,,,,,,--- -Troff Mandoc:Headings=1,,,,,,,,,,--- -Troff Mandoc:Identifier=7,,,,,,,,,,--- -Troff Mandoc:Macros=11,,,,,,,,,,--- -Troff Mandoc:Normal Text=0,,,,,,,,,,--- -Troff Mandoc:Other Macros=11,,,,,,,,,,--- -Troff Mandoc:Paragraphs=2,,,,,,,,,,--- - -[Highlighting UnrealScript - Schema mssola] -UnrealScript:Char=6,,,,,,,,,,--- -UnrealScript:Comment=8,,,,,,,,,,--- -UnrealScript:Data Type=2,,,,,,,,,,--- -UnrealScript:Decimal=3,,,,,,,,,,--- -UnrealScript:Float=5,,,,,,,,,,--- -UnrealScript:Hex=4,,,,,,,,,,--- -UnrealScript:Keyword=1,,,,,,,,,,--- -UnrealScript:Normal Text=0,,,,,,,,,,--- -UnrealScript:Octal=4,,,,,,,,,,--- -UnrealScript:Preprocessor=9,,,,,,,,,,--- -UnrealScript:Region Marker=12,,,,,,,,,,--- -UnrealScript:String=7,,,,,,,,,,--- -UnrealScript:String Char=6,,,,,,,,,,--- -UnrealScript:Symbol=0,,,,,,,,,,--- - -[Highlighting VHDL - Schema mssola] -VHDL:Attribute=4,,,,,,,,,,--- -VHDL:Bit=6,,,,,,,,,,--- -VHDL:Comment=8,,,,,,,,,,--- -VHDL:Control=1,ff223388,,,,,,,,,--- -VHDL:Data Type=2,,,,,,,,,,--- -VHDL:Error=13,ffff0000,,1,,,,,,,--- -VHDL:Integer=3,,,,,,,,,,--- -VHDL:Keyword=1,,,,,,,,,,--- -VHDL:Name=1,ffbb6600,,1,,,,,,,--- -VHDL:Normal Text=0,,,,,,,,,,--- -VHDL:Operator=9,,,,,,,,,,--- -VHDL:Process=1,ff0099aa,,,,,,,,,--- -VHDL:Range=9,,,,,,,,,,--- -VHDL:Redirection=1,ff223388,,,,,,,,,--- -VHDL:Region Marker=12,,,,,,,,,,--- -VHDL:Signal=9,,,,,,,,,,--- -VHDL:Vector=7,,,,,,,,,,--- - -[Highlighting VRML - Schema mssola] -VRML:Comment=8,,,,,,,,,,--- -VRML:Data Type=2,,,,,,,,,,--- -VRML:Decimal=3,,,,,,,,,,--- -VRML:Float=5,,,,,,,,,,--- -VRML:Hex=4,,,,,,,,,,--- -VRML:Keyword=1,,,,,,,,,,--- -VRML:Node=0,ff000080,ffffffff,1,0,,,,,,--- -VRML:Normal Text=0,,,,,,,,,,--- -VRML:String=7,,,,,,,,,,--- -VRML:String Char=6,,,,,,,,,,--- - -[Highlighting Vala - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Vala:Char=6,,,,,,,,,,--- -Vala:Comment=8,,,,,,,,,,--- -Vala:Data Type=2,,,,,,,,,,--- -Vala:Decimal=3,,,,,,,,,,--- -Vala:Error=13,,,,,,,,,,--- -Vala:Escaped Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -Vala:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -Vala:Float=5,,,,,,,,,,--- -Vala:Hex=4,,,,,,,,,,--- -Vala:Keyword=1,,,,,,,,,,--- -Vala:MultiLine String=7,,,,,,,,,,--- -Vala:Normal Text=0,,,,,,,,,,--- -Vala:Octal=4,,,,,,,,,,--- -Vala:Prep. Lib=9,,,,,,,,,,--- -Vala:Preprocessor=9,,,,,,,,,,--- -Vala:Region Marker=12,,,,,,,,,,--- -Vala:String=7,,,,,,,,,,--- -Vala:String Char=6,,,,,,,,,,--- -Vala:Symbol=0,,,,,,,,,,--- -Vala:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting Valgrind Suppression - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Valgrind Suppression:Comment=8,,,,,,,,,,--- -Valgrind Suppression:ErrorKind=9,,,,,,,,,,--- -Valgrind Suppression:FrameKind=11,,,,,,,,,,--- -Valgrind Suppression:Normal Text=0,,,,,,,,,,--- -Valgrind Suppression:RuleName=1,,,,,,,,,,--- - -[Highlighting Varnish Configuration Language - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C:Alert=10,,,,,,,,,,--- -C:Char=6,,,,,,,,,,--- -C:Comment=8,,,,,,,,,,--- -C:Data Type=2,,,,,,,,,,--- -C:Decimal=3,,,,,,,,,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,,,,,,,,,,--- -C:Hex=4,,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,,--- -C:Region Marker=12,,,,,,,,,,--- -C:String=7,,,,,,,,,,--- -C:String Char=6,,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Varnish Configuration Language:Action Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Backend Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Comment=8,,,,,,,,,,--- -Varnish Configuration Language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Condition Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Data Size=3,,,,,,,,,,--- -Varnish Configuration Language:Data Type=2,,,,,,,,,,--- -Varnish Configuration Language:Decimal=3,,,,,,,,,,--- -Varnish Configuration Language:Director Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Director Type=2,,,,,,,,,,--- -Varnish Configuration Language:Duration=3,,,,,,,,,,--- -Varnish Configuration Language:Float=5,,,,,,,,,,--- -Varnish Configuration Language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Configuration Language:Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Normal Text=0,,,,,,,,,,--- -Varnish Configuration Language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Probe Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Region Marker=0,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Function=11,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Sub=11,,,1,,,,,,,--- -Varnish Configuration Language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:String=7,,,0,0,,,,,,--- -Varnish Configuration Language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Configuration Language:VMod Identifier=2,ff0000ff,ff0000ff,,,,,,,,--- -Varnish Configuration Language:Well-known VMod=2,ff0000ff,ff0000ff,1,,,,,,,--- - -[Highlighting Varnish Test Case language - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ff880088,,,,,,,,,--- -Bash:Command=1,ffcc00cc,,,,,,,,,--- -Bash:Comment=8,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ff330033,,,,,,,,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff223388,,,,,,,,,--- -Bash:String DoubleQ=7,,,,,,,,,,--- -Bash:String Escape=2,,,,,,,,,,--- -Bash:String SingleQ=7,,,,,,,,,,--- -Bash:String Transl.=7,,,,,,,,,,--- -Bash:Variable=9,,,,,,,,,,--- -C:Alert=10,,,,,,,,,,--- -C:Char=6,,,,,,,,,,--- -C:Comment=8,,,,,,,,,,--- -C:Data Type=2,,,,,,,,,,--- -C:Decimal=3,,,,,,,,,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,,,,,,,,,,--- -C:Hex=4,,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,,--- -C:Region Marker=12,,,,,,,,,,--- -C:String=7,,,,,,,,,,--- -C:String Char=6,,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Varnish Configuration Language:Action Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Backend Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Comment=8,,,,,,,,,,--- -Varnish Configuration Language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Condition Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Data Size=3,,,,,,,,,,--- -Varnish Configuration Language:Data Type=2,,,,,,,,,,--- -Varnish Configuration Language:Decimal=3,,,,,,,,,,--- -Varnish Configuration Language:Director Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Director Type=2,,,,,,,,,,--- -Varnish Configuration Language:Duration=3,,,,,,,,,,--- -Varnish Configuration Language:Float=5,,,,,,,,,,--- -Varnish Configuration Language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Configuration Language:Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Normal Text=0,,,,,,,,,,--- -Varnish Configuration Language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Probe Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Region Marker=0,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Function=11,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Sub=11,,,1,,,,,,,--- -Varnish Configuration Language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:String=7,,,0,0,,,,,,--- -Varnish Configuration Language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Configuration Language:VMod Identifier=2,ff0000ff,ff0000ff,,,,,,,,--- -Varnish Configuration Language:Well-known VMod=2,ff0000ff,ff0000ff,1,,,,,,,--- -Varnish Test Case language:Action Keyword=1,,,,,,,,,,--- -Varnish Test Case language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Client Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Comment=8,,,,,,,,,,--- -Varnish Test Case language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Decimal=3,,,,,,,,,,--- -Varnish Test Case language:Float=5,,,,,,,,,,--- -Varnish Test Case language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Test Case language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Test Case language:HTTP WebDAV method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Test Case language:HTTP announce=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP custom method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:Keyword=1,,,,,,,,,,--- -Varnish Test Case language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Normal Text=0,,,,,,,,,,--- -Varnish Test Case language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Region Marker=0,,,,,,,,,,--- -Varnish Test Case language:RxResp Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Sema Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Server Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Test Case language:String=7,,,0,0,,,,,,--- -Varnish Test Case language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Test Case language:TxReq Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:TxResp Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Varnish Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:VarnishStat metric=2,ff0000ff,ff0000ff,0,0,,,,,,--- - -[Highlighting Velocity - Schema mssola] -Velocity:Comment=8,,,,,,,,,,--- -Velocity:Keyword=1,,,,,,,,,,--- -Velocity:Normal Text=0,,,,,,,,,,--- -Velocity:Other=9,,,,,,,,,,--- -Velocity:Properties=0,ff8ac6ff,ffffffff,0,1,,,,,,--- -Velocity:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting Vera - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Vera:Char=6,,,,,,,,,,--- -Vera:Comment=8,,,,,,,,,,--- -Vera:Data Type=2,,,,,,,,,,--- -Vera:Decimal=3,,,,,,,,,,--- -Vera:Error=13,,,,,,,,,,--- -Vera:Float=5,,,,,,,,,,--- -Vera:Hex=4,,,,,,,,,,--- -Vera:Keyword=1,,,,,,,,,,--- -Vera:Methods=1,,,,,,,,,,--- -Vera:Normal Text=0,,,,,,,,,,--- -Vera:Octal=4,,,,,,,,,,--- -Vera:Prep. Lib=9,,,,,,,,,,--- -Vera:Preprocessor=9,,,,,,,,,,--- -Vera:Q Values=1,,,,,,,,,,--- -Vera:String=7,,,,,,,,,,--- -Vera:String Char=6,,,,,,,,,,--- -Vera:Symbol=0,,,,,,,,,,--- - -[Highlighting Verilog - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Verilog:Alert=10,,,,,,,,,,--- -Verilog:Binary=4,,,,,,,,,,--- -Verilog:Block name=2,,,,,,,,,,--- -Verilog:Case label=3,,,,,,,,,,--- -Verilog:Comment=8,,,,,,,,,,--- -Verilog:Data Type=2,,,,,,,,,,--- -Verilog:Decimal=4,,,,,,,,,,--- -Verilog:Delay=4,,,,,,,,,,--- -Verilog:Drive/charge strength=4,,,,,,,,,,--- -Verilog:Float=5,,,,,,,,,,--- -Verilog:Gate instantiation=2,,,,,,,,,,--- -Verilog:Hex=4,,,,,,,,,,--- -Verilog:Integer=3,,,,,,,,,,--- -Verilog:Keyword=1,,,,,,,,,,--- -Verilog:Normal Text=0,,,,,,,,,,--- -Verilog:Octal=4,,,,,,,,,,--- -Verilog:Port map=2,,,,,,,,,,--- -Verilog:Prep. Lib=5,,,,,,,,,,--- -Verilog:Preprocessor=9,,,,,,,,,,--- -Verilog:String=7,,,,,,,,,,--- -Verilog:String Char=6,,,,,,,,,,--- -Verilog:Symbol=0,,,,,,,,,,--- -Verilog:System Task=2,,,,,,,,,,--- - -[Highlighting WINE Config - Schema mssola] -WINE Config:Comment=8,,,,,,,,,,--- -WINE Config:Key=2,,,,,,,,,,--- -WINE Config:Normal Text=0,,,,,,,,,,--- -WINE Config:RegistryBeginEnd=0,ff00aaaa,ffffffff,1,0,,,,,,--- -WINE Config:Section=1,,,,,,,,,,--- -WINE Config:Value=0,ff0000ff,ffffffff,1,0,,,,,,--- -WINE Config:ValueFilesystem1=0,ff00aa00,ffffffff,1,0,,,,,,--- -WINE Config:ValueFilesystem2=0,ffff0000,ffffffff,1,0,,,,,,--- - -[Highlighting Wesnoth Markup Language - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- -Lua:Alerts=10,,,,,,,,,,--- -Lua:BFunc=11,,,,,,,,,,--- -Lua:Comment=8,,,,,,,,,,--- -Lua:Constant=1,,,,,,,,,,--- -Lua:Control=1,ffa1a100,ffffffff,0,0,,,,,,--- -Lua:Error=13,,,,,,,,,,--- -Lua:Keyword=1,,,,,,,,,,--- -Lua:Normal Text=0,,,,,,,,,,--- -Lua:Numbers=3,,,,,,,,,,--- -Lua:Strings=7,,,,,,,,,,--- -Lua:Symbols=9,,,,,,,,,,--- -Lua:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -Pango:Color=5,,,,,,,,,,--- -Pango:Decimal=3,,,,,,,,,,--- -Pango:Element=1,,,,,,,,,,--- -Pango:Error=13,,,,,,,,,,--- -Pango:Key=9,,,,,,,,,,--- -Pango:Normal Text=0,,,,,,,,,,--- -Pango:String=7,,,,,,,,,,--- -Pango:Value=7,ffaa0000,,,,,,,,,--- -Wesnoth Markup Language:Comment=8,,,,,,,,,,--- -Wesnoth Markup Language:Error=13,,,,,,,,,,--- -Wesnoth Markup Language:Macro String=6,,,,,,,,,,--- -Wesnoth Markup Language:Macro/Include=11,,,,,,,,,,--- -Wesnoth Markup Language:Maintenance script statement=10,,,,,,,,,,--- -Wesnoth Markup Language:Normal Text=7,,,,,,,,,,--- -Wesnoth Markup Language:Normal WML Text=0,,,,,,,,,,--- -Wesnoth Markup Language:Preprocessor=9,,,,,,,,,,--- -Wesnoth Markup Language:String=7,,,,,,,,,,--- -Wesnoth Markup Language:Variable Subscript=4,,,,,,,,,,--- -Wesnoth Markup Language:Variable Substitution=3,,,,,,,,,,--- -Wesnoth Markup Language:WML Attribute=2,,,,,,,,,,--- -Wesnoth Markup Language:WML Node=1,,,,,,,,,,--- - -[Highlighting XML (Debug) - Schema mssola] -XML (Debug):Attribute=2,,,,,,,,,,--- -XML (Debug):Comment=8,,,,,,,,,,--- -XML (Debug):Doctype Declaration=1,,,,,,,,,,--- -XML (Debug):Entity=6,,,,,,,,,,--- -XML (Debug):Error=13,,,,,,,,,,--- -XML (Debug):Normal Tag=1,,,,,,,,,,--- -XML (Debug):Normal Text=0,,,,,,,,,,--- -XML (Debug):PI content=9,,,,,,,,,,--- -XML (Debug):Processing Instruction=1,,,,,,,,,,--- -XML (Debug):Stylesheet=1,,,,,,,,,,--- -XML (Debug):Value=7,,,,,,,,,,--- - -[Highlighting XML - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -XML:Attribute=9,,,,,,,,,,--- -XML:CDATA=4,,,1,,,,,,,--- -XML:Comment=8,,,,,,,,,,--- -XML:Doctype=2,,,1,,,,,,,--- -XML:Element=1,,,,,,,,,,--- -XML:EntityRef=3,,,,,,,,,,--- -XML:Error=13,,,,,,,,,,--- -XML:Normal Text=0,,,,,,,,,,--- -XML:Other Text=0,,,,,,,,,,--- -XML:PEntityRef=3,,,,,,,,,,--- -XML:Processing Instruction=1,,,,,,,,,,--- -XML:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting XUL - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -XUL:Attribute=9,,,,,,,,,,--- -XUL:CDATA=4,,,1,,,,,,,--- -XUL:Char=6,,,,,,,,,,--- -XUL:Comment=8,,,,,,,,,,--- -XUL:Data Type=2,,,,,,,,,,--- -XUL:Decimal=3,,,,,,,,,,--- -XUL:Doctype=2,,,1,,,,,,,--- -XUL:Element=1,,,,,,,,,,--- -XUL:EntityRef=3,,,,,,,,,,--- -XUL:Error=13,,,,,,,,,,--- -XUL:Events=1,fff766d5,ff00ffff,0,0,,,,,,--- -XUL:Float=5,,,,,,,,,,--- -XUL:Function=11,,,,,,,,,,--- -XUL:Keyword=1,,,,,,,,,,--- -XUL:Math=1,ffdba716,ff00ffff,0,0,,,,,,--- -XUL:Normal Text=0,,,,,,,,,,--- -XUL:Objects=1,ff008000,ff00ffff,0,0,,,,,,--- -XUL:PEntityRef=3,,,,,,,,,,--- -XUL:Pattern Character Class=4,,,,,,,,,,--- -XUL:Pattern Internal Operator=5,,,,,,,,,,--- -XUL:Processing Instruction=1,,,,,,,,,,--- -XUL:Region Marker=12,,,,,,,,,,--- -XUL:Regular Expression=9,,,,,,,,,,--- -XUL:String=7,,,,,,,,,,--- -XUL:String Char=6,,,,,,,,,,--- -XUL:Symbol=0,,,,,,,,,,--- -XUL:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting YAML - Schema mssola] -YAML:Alias=2,,,,,,,,,,--- -YAML:Comment=8,,,,,,,,,,--- -YAML:Data Types=2,,,,,,,,,,--- -YAML:Directive=9,,,,,,,,,,--- -YAML:Document Header=9,,,,,,,,,,--- -YAML:End of Document=8,,,,,,,,,,--- -YAML:Error=13,,,,,,,,,,--- -YAML:Hash=0,,,,,,,,,,--- -YAML:Key=11,,,,,,,,,,--- -YAML:List=0,,,,,,,,,,--- -YAML:Normal Text=0,,,,,,,,,,--- -YAML:Operator=1,,,,,,,,,,--- -YAML:Reference=2,,,,,,,,,,--- -YAML:String=0,,,,,,,,,,--- - -[Highlighting Yacc/Bison - Schema mssola] -Alerts:Alert Level 1=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ffbf0303,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Yacc/Bison:Alert=10,,,,,,,,,,--- -Yacc/Bison:Backslash Code=7,,,1,,,,,,,--- -Yacc/Bison:Comment=8,,,,,,,,,,--- -Yacc/Bison:Content-Type Delimiter=4,,,1,,,,,,,--- -Yacc/Bison:Data Type=2,,,,,,,,,,--- -Yacc/Bison:Definition=0,,,,,,,,,,--- -Yacc/Bison:Directive=1,,,,,,,,,,--- -Yacc/Bison:Normal Text=0,,,,,,,,,,--- -Yacc/Bison:Rule=7,,,,,,,,,,--- -Yacc/Bison:String=7,,,,,,,,,,--- -Yacc/Bison:String Char=6,,,,,,,,,,--- - -[Highlighting Zonnon - Schema mssola] -Zonnon:Comment=8,,,,,,,,,,--- -Zonnon:Keyword=1,,,,,,,,,,--- -Zonnon:Modifier=9,,,,,,,,,,--- -Zonnon:Normal Text=0,,,,,,,,,,--- -Zonnon:Number=3,,,,,,,,,,--- -Zonnon:Predefine=1,,,,1,,,,,,--- -Zonnon:String=7,,,,,,,,,,--- -Zonnon:Type=2,,,,,,,,,,--- - -[Highlighting Zsh - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Zsh:Backquote=1,,,,,,,,,,--- -Zsh:Builtin=1,ff880088,,,,,,,,,--- -Zsh:Command=1,ffcc00cc,,,,,,,,,--- -Zsh:Comment=8,,,,,,,,,,--- -Zsh:Control=1,,,,,,,,,,--- -Zsh:Error=13,,,,,,,,,,--- -Zsh:Escape=2,,,,,,,,,,--- -Zsh:Expression=9,,,,,,,,,,--- -Zsh:Function=11,,,,,,,,,,--- -Zsh:Keyword=1,,,,,,,,,,--- -Zsh:Normal Text=0,,,,,,,,,,--- -Zsh:Option=0,,,,,,,,,,--- -Zsh:Path=0,,,,,,,,,,--- -Zsh:Redirection=1,ff223388,,,,,,,,,--- -Zsh:String DoubleQ=7,,,,,,,,,,--- -Zsh:String Escape=2,,,,,,,,,,--- -Zsh:String SingleQ=7,,,,,,,,,,--- -Zsh:String Transl.=7,,,,,,,,,,--- -Zsh:Variable=9,,,,,,,,,,--- - -[Highlighting dot - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -dot:Attribute=2,,,,,,,,,,--- -dot:Comment=8,,,,,,,,,,--- -dot:Error=13,,,,,,,,,,--- -dot:Identifier=11,,,,,,,,,,--- -dot:Keyword=1,,,,,,,,,,--- -dot:Normal Text=0,,,,,,,,,,--- -dot:Number=3,,,,,,,,,,--- -dot:String=7,,,,,,,,,,--- -dot:String Char=6,,,,,,,,,,--- -dot:Symbol=9,,,,,,,,,,--- - -[Highlighting ferite - Schema mssola] -ferite:Alert=10,,,,,,,,,,--- -ferite:Char=6,,,,,,,,,,--- -ferite:Comment=8,,,,,,,,,,--- -ferite:Data Type=2,,,,,,,,,,--- -ferite:Decimal=3,,,,,,,,,,--- -ferite:Float=5,,,,,,,,,,--- -ferite:Hex=4,,,,,,,,,,--- -ferite:Keyword=1,,,,,,,,,,--- -ferite:Normal Text=0,,,,,,,,,,--- -ferite:Octal=4,,,,,,,,,,--- -ferite:Prep. Lib=9,,,,,,,,,,--- -ferite:Preprocessor=9,,,,,,,,,,--- -ferite:String=7,,,,,,,,,,--- -ferite:String Char=6,,,,,,,,,,--- -ferite:Symbol=0,,,,,,,,,,--- - -[Highlighting fstab - Schema mssola] -fstab:Comment=8,,,,,,,,,,--- -fstab:Device=1,,,,,,,,,,--- -fstab:Dump=3,,,,,,,,,,--- -fstab:Error=13,,,,,,,,,,--- -fstab:Mount Point=2,,,,,,,,,,--- -fstab:Normal=0,,,,,,,,,,--- -fstab:Options=1,,,,,,,,,,--- -fstab:Pass=3,,,,,,,,,,--- -fstab:Type=11,,,,,,,,,,--- -fstab:Valid FileSystem=2,,,,1,,,,,,--- - -[Highlighting k - Schema mssola] -k:Comment=8,,,,,,,,,,--- -k:CommentToEOF=8,,,,,,,,,,--- -k:DotQfunctions=1,,,,,,,,,,--- -k:Dothfunctions=1,,,,,,,,,,--- -k:Dotofunctions=1,,,,,,,,,,--- -k:Dotqfunctions=1,,,,,,,,,,--- -k:Dotzfunctions=1,,,,,,,,,,--- -k:FlowControl=1,,,,,,,,,,--- -k:MultiLineComment=8,,,,,,,,,,--- -k:Normal Text=0,,,,,,,,,,--- -k:String=7,,,,,,,,,,--- -k:Todos=8,,,,,,,,,,--- -k:kBool=4,,,,,,,,,,--- -k:kByte=4,,,,,,,,,,--- -k:kDateTime=9,,,,,,,,,,--- -k:kGuid=4,,,,,,,,,,--- -k:kHSym=9,,,,,,,,,,--- -k:kIdentifier=0,,,,,,,,,,--- -k:kKeyword=1,,,,,,,,,,--- -k:kNumber=3,,,,,,,,,,--- -k:kSeparators=0,,,,,,,,,,--- -k:kSymbol=9,,,,,,,,,,--- -k:kSystemCommand=9,,,,,,,,,,--- - -[Highlighting mergetag text - Schema mssola] -mergetag text:Binary=4,,,,,,,,,,--- -mergetag text:Brackets=1,,,,,,,,,,--- -mergetag text:Char=6,,,,,,,,,,--- -mergetag text:Comment=8,,,,,,,,,,--- -mergetag text:Comment Brackets=8,ff404040,,,0,,,,,,--- -mergetag text:Error=13,,,,,,,,,,--- -mergetag text:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -mergetag text:Float=5,,,,,,,,,,--- -mergetag text:Hex=4,,,,,,,,,,--- -mergetag text:ID=9,,,,,,,,,,--- -mergetag text:Integer=3,,,,,,,,,,--- -mergetag text:Normal Text=0,,,,,,,,,,--- -mergetag text:Octal=4,,,,,,,,,,--- -mergetag text:String=7,,,,,,,,,,--- -mergetag text:Tag Character=1,ff008040,,,,,,,,,--- -mergetag text:Type=2,,,,,,,,,,--- - -[Highlighting nesC - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -nesC:Char=6,,,,,,,,,,--- -nesC:Comment=8,,,,,,,,,,--- -nesC:Data Type=2,,,,,,,,,,--- -nesC:Decimal=3,,,,,,,,,,--- -nesC:Float=5,,,,,,,,,,--- -nesC:Function=1,ff000080,ffffffff,0,0,,,,,,--- -nesC:Hex=4,,,,,,,,,,--- -nesC:Keyword=1,,,,,,,,,,--- -nesC:Normal Text=0,,,,,,,,,,--- -nesC:Octal=4,,,,,,,,,,--- -nesC:Prep. Lib=9,,,,,,,,,,--- -nesC:Preprocessor=9,,,,,,,,,,--- -nesC:String=7,,,,,,,,,,--- -nesC:String Char=6,,,,,,,,,,--- -nesC:Symbol=0,,,,,,,,,,--- - -[Highlighting noweb - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -CSS:Alert=10,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,ff0000ff,,,1,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -noweb:Code=0,,,,,,,,,,--- -noweb:Prose=0,,,,,,,,,,--- -noweb:Punctuation=12,,,1,,,,,,,--- -noweb:SectionName=12,,,,1,,,,,,--- - -[Highlighting progress - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -progress:Alert=10,,,,,,,,,,--- -progress:Attributes=2,,,,,,,,,,--- -progress:Comment=8,,,,,,,,,,--- -progress:Data_Type=2,,,,,,,,,,--- -progress:Decimal=3,,,,,,,,,,--- -progress:Function=11,,,,,,,,,,--- -progress:Handles=3,,,,,,,,,,--- -progress:Identifier=9,,,,,,,,,,--- -progress:Integer=4,,,,,,,,,,--- -progress:Methods=9,,,,,,,,,,--- -progress:Normal Text=0,,,,,,,,,,--- -progress:Operators=3,,,,,,,,,,--- -progress:Phrases=1,,,,,,,,,,--- -progress:Preprocvar=6,,,,,,,,,,--- -progress:Properties=9,,,,,,,,,,--- -progress:Region Marker=12,,,,,,,,,,--- -progress:Statements=1,,,,,,,,,,--- -progress:String=7,,,,,,,,,,--- -progress:String Char=6,,,,,,,,,,--- -progress:Symbol=6,,,,,,,,,,--- -progress:Widgets=1,,,,,,,,,,--- - -[Highlighting q - Schema mssola] -k:Comment=8,,,,,,,,,,--- -k:CommentToEOF=8,,,,,,,,,,--- -k:DotQfunctions=1,,,,,,,,,,--- -k:Dothfunctions=1,,,,,,,,,,--- -k:Dotofunctions=1,,,,,,,,,,--- -k:Dotqfunctions=1,,,,,,,,,,--- -k:Dotzfunctions=1,,,,,,,,,,--- -k:FlowControl=1,,,,,,,,,,--- -k:MultiLineComment=8,,,,,,,,,,--- -k:Normal Text=0,,,,,,,,,,--- -k:String=7,,,,,,,,,,--- -k:Todos=8,,,,,,,,,,--- -k:kBool=4,,,,,,,,,,--- -k:kByte=4,,,,,,,,,,--- -k:kDateTime=9,,,,,,,,,,--- -k:kGuid=4,,,,,,,,,,--- -k:kHSym=9,,,,,,,,,,--- -k:kIdentifier=0,,,,,,,,,,--- -k:kKeyword=1,,,,,,,,,,--- -k:kNumber=3,,,,,,,,,,--- -k:kSeparators=0,,,,,,,,,,--- -k:kSymbol=9,,,,,,,,,,--- -k:kSystemCommand=9,,,,,,,,,,--- -q:DotQfunctions=1,,,,,,,,,,--- -q:Normal Text=0,,,,,,,,,,--- -q:qKeyword=1,,,,,,,,,,--- - -[Highlighting reStructuredText - Schema mssola] -reStructuredText:Bold=0,,,1,,,,,,,--- -reStructuredText:Citation=2,,,,,,,,,,--- -reStructuredText:Directive=2,,,,,,,,,,--- -reStructuredText:Field=11,,,,,,,,,,--- -reStructuredText:Footnote=2,,,,,,,,,,--- -reStructuredText:FootnoteReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkRefOrInterpretedText=9,,,,,,,,,,--- -reStructuredText:HyperlinkReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkTarget=2,,,,,,,,,,--- -reStructuredText:InlineInternalTarget=11,,,,,,,,,,--- -reStructuredText:InlineLiteral=7,,,,,,,,,,--- -reStructuredText:Italic=0,,,,1,,,,,,--- -reStructuredText:Monospaced=0,ff006600,,,,,,,,,--- -reStructuredText:Normal=0,,,,,,,,,,--- -reStructuredText:SubstitutionDefinition=2,,,,,,,,,,--- -reStructuredText:SubstitutionReference=11,,,,,,,,,,--- - -[Highlighting scilab - Schema mssola] -scilab:Comment=8,,,,,,,,,,--- -scilab:Constants-keyword=0,ff008080,ff00ffff,1,0,,,,,,--- -scilab:Control-keywords=0,ff800000,ffff0000,1,0,,,,,,--- -scilab:Decimal=3,,,,,,,,,,--- -scilab:Float=5,,,,,,,,,,--- -scilab:Function-keywords=11,ff008000,ffffff00,1,0,,,,,,--- -scilab:Normal Text=0,,,,,,,,,,--- -scilab:String=7,,,,,,,,,,--- -scilab:Structure-keywords=0,ff000080,ffffff00,1,0,,,,,,--- -scilab:Warning-keywords=0,ffff0000,ffff0000,1,0,,,,,,--- -scilab:functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- - -[Highlighting sed - Schema mssola] -sed:Brace=0,,,,,,,,,,--- -sed:Char List=7,,,,,,,,,,--- -sed:Char List Escape=6,,,,,,,,,,--- -sed:Command=1,,,,,,,,,,--- -sed:Comment=8,,,,,,,,,,--- -sed:Error=13,,,,,,,,,,--- -sed:Exit Code=3,,,,,,,,,,--- -sed:Filename=4,,,,,,,,,,--- -sed:Flag=2,,,,,,,,,,--- -sed:Label=11,,,,,,,,,,--- -sed:Last Line=9,ff880088,,1,,,,,,,--- -sed:Line Continue=9,ff000000,,1,,,,,,,--- -sed:Line Number=3,,,,,,,,,,--- -sed:Literal Escape=9,ff00aa00,,,1,,,,,,--- -sed:Literal Text=9,ff008800,,,1,,,,,,--- -sed:Negation=9,ff880088,,1,,,,,,,--- -sed:Normal=0,,,,,,,,,,--- -sed:Regex=7,,,,,,,,,,--- -sed:Regex Escape=6,,,,,,,,,,--- -sed:Repl Escape=6,,,,,,,,,,--- -sed:Repl Number=3,,,,,,,,,,--- -sed:Replacement=7,,,,,,,,,,--- -sed:Separator=7,ff0000ff,,,,,,,,,--- -sed:Step=3,,,,,,,,,,--- -sed:Wrap Length=3,,,,,,,,,,--- - -[Highlighting txt2tags - Schema mssola] -txt2tags:Bar=0,ffc0c0c0,,,,,,,,,--- -txt2tags:Bold=0,ff445675,,1,,,,,,,--- -txt2tags:BoldItalic=0,,,1,1,,,,,,--- -txt2tags:Comment=0,ff666666,,,1,,,,,,--- -txt2tags:Date=0,ffff0000,,,1,,,,,,--- -txt2tags:DefList=0,ffe300ee,,,,,,,,,--- -txt2tags:Italic=0,ff653a39,,,1,,,,,,--- -txt2tags:Link=0,ff0930de,,,,,,,,,--- -txt2tags:List=0,ffe300ee,,,,,,,,,--- -txt2tags:Monospaced=0,ff006600,,,,,,,,,--- -txt2tags:Normal=0,,,,,,,,,,--- -txt2tags:NumList=0,ffe300ee,,,,,,,,,--- -txt2tags:Quote=0,ffa52a2a,,,,,,,,,--- -txt2tags:Strikeout=0,ff644a9b,,,,1,,,,,--- -txt2tags:Tabel=0,ffff0000,,,,,,,,,--- -txt2tags:Title=0,ff990000,,,,,,,,,--- -txt2tags:Underline=0,ff386742,,,,,,,,,--- -txt2tags:Verbatim Area=0,ff006600,,,,,,,,,--- -txt2tags:Verbatim Line=0,ff006600,,,,,,,,,--- - -[Highlighting vCard, vCalendar, iCalendar - Schema mssola] -vCard, vCalendar, iCalendar:Assignment=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Attribute=7,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Delimiter=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Parameter key=11,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Parameter value=9,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Property=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:vCard=12,,,,,,,,,,--- - -[Highlighting x.org Configuration - Schema mssola] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -x.org Configuration:Alert=13,,,,,,,,,,--- -x.org Configuration:Comment=8,,,,,,,,,,--- -x.org Configuration:Float=5,,,,,,,,,,--- -x.org Configuration:Int=3,,,,,,,,,,--- -x.org Configuration:Keyword=1,,,,,,,,,,--- -x.org Configuration:Normal Text=0,,,,,,,,,,--- -x.org Configuration:Section=11,,,,,,,,,,--- -x.org Configuration:Section Name=7,,,,,,,,,,--- -x.org Configuration:Value=2,,,,,,,,,,--- -x.org Configuration:Value2=9,,,,,,,,,,--- - -[Highlighting xHarbour - Schema mssola] -xHarbour:Comment=8,,,,,,,,,,--- -xHarbour:Function=11,,,,,,,,,,--- -xHarbour:Keyword=1,,,,,,,,,,--- -xHarbour:Normal Text=0,,,,,,,,,,--- -xHarbour:Number=3,ff5050c0,ff000000,0,0,,,,,,--- -xHarbour:Operator=4,ffa01060,ff400040,0,0,,,,,,--- -xHarbour:Preprocessor=9,,,,,,,,,,--- -xHarbour:String=7,,,,,,,,,,--- - -[Highlighting xslt - Schema mssola] -xslt:Alert=10,,,,,,,,,,--- -xslt:Attribute=9,,,,,,,,,,--- -xslt:Attribute Value=7,ff800000,ffffffff,0,0,,,,,,--- -xslt:CDATA=4,,,1,,,,,,,--- -xslt:Comment=8,,,,,,,,,,--- -xslt:Doctype=2,,,1,,,,,,,--- -xslt:Entity Reference=3,,,,,,,,,,--- -xslt:Invalid=13,,,,,,,,,,--- -xslt:Normal Text=0,,,,,,,,,,--- -xslt:PEntity Reference=3,,,,,,,,,,--- -xslt:Processing Instruction=1,,,,,,,,,,--- -xslt:Tag=1,,,,,,,,,,--- -xslt:Variable=0,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath=9,ff008080,ffffffff,0,0,,,,,,--- -xslt:XPath 2.0/ XSLT 2.0 Function=1,ff008080,ffffffff,1,0,,,,,,--- -xslt:XPath Attribute=0,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath Axis=1,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath String=7,ff800000,ffffffff,0,0,,,,,,--- -xslt:XPath/ XSLT Function=1,ff008080,ffffffff,1,0,,,,,,--- -xslt:XSLT 2.0 Tag=1,ff000080,ffffffff,1,0,,,,,,--- -xslt:XSLT Tag=1,ff000080,ffffffff,1,0,,,,,,--- - -[Highlighting yacas - Schema mssola] -yacas:Char=6,,,,,,,,,,--- -yacas:Comment=8,,,,,,,,,,--- -yacas:Decimal=3,,,,,,,,,,--- -yacas:Float=5,,,,,,,,,,--- -yacas:Highlight=10,,,,,,,,,,--- -yacas:Keyword=1,,,,,,,,,,--- -yacas:Normal Text=0,,,,,,,,,,--- -yacas:Parens=0,,,,,,,,,,--- -yacas:String=7,,,,,,,,,,--- -yacas:Symbol=9,,,,,,,,,,--- - -[KateSchema] -Font=Monospace,9,-1,5,50,0,0,0,0,0 -full schema=true -highlightings=None,Asm6502,AVR Assembler,GNU Assembler,Intel x86 (FASM),Intel x86 (NASM),MIPS Assembler,Motorola 68k (VASM/Devpac),Motorola DSP56k,PicAsm,.desktop,Apache Configuration,Asterisk,Cisco,fstab,INI Files,mergetag text,Nagios,Nginx Configuration,Varnish Configuration Language,Varnish Test Case language,WINE Config,x.org Configuration,4GL,4GL-PER,LDIF,progress,SQL,SQL (MySQL),SQL (PostgreSQL),AHDL,Spice,SystemC,SystemVerilog,Vera,Verilog,VHDL,ASN.1,ASP,BibTeX,CleanCSS,ColdFusion,ConTeXt,CSS,Django HTML Template,Doxygen,DoxygenLua,DTD,GlossTex,GNU Gettext,Haml,HTML,Javadoc,Jira,JSON,JSP,Kate File Template,LaTeX,LESSCSS,MAB-DB,Mako,Markdown,MediaWiki,Metapost/Metafont,Pango,PostScript,PostScript Printer Description,RELAX NG,RelaxNG-Compact,Restructured Text,reStructuredText,Roff,Ruby/Rails/RHTML,SCSS,SGML,SiSU,Texinfo,Textile,Troff Mandoc,TT2,txt2tags,vCard\\, vCalendar\\, iCalendar,VRML,Wesnoth Markup Language,XML,XML (Debug),xslt,XUL,YAML,ABC,Alerts,Alerts_indent,ChangeLog,CMake,CSS/PHP,CUE Sheet,Debian Changelog,Debian Control,Diff,Email,GDB Backtrace,Git Rebase,Jam,JavaScript/PHP,JavaScript/PlasmaDesktop,LilyPond,M3U,Makefile,Modelines,Music Publisher,PGN,POV-Ray,QMake,RenderMan RIB,RPM Spec,Valgrind Suppression,Ansys,B-Method,dot,GAP,GDL,KAlgebra,Matlab,Maxima,Octave,scilab,TI Basic,yacas,AMPLE,AutoHotKey,AWK,Bash,Chicken,CoffeeScript,CubeScript,Erlang,Euphoria,ferite,GNU Linker Script,Gnuplot,JavaScript,k,LSL,Lua,Mason,MEL,MS-DOS Batch,Perl,PHP (HTML),PHP/PHP,Pig,Pike,Python,q,QML,Quake Script,R Script,REXX,Ruby,Scheme,sed,Sieve,Tcl/Tk,Tcsh,UnrealScript,Velocity,Zsh,ABAP,ActionScript 2.0,Ada,ANS-Forth94,ANSI C89,Boo,C,C#,C++,C++11,C++11/Qt4,Cg,CGiS,Clipper,Clojure,Common Lisp,Component-Pascal,Crack,Curry,D,E Language,Eiffel,Fortran,FreeBASIC,FSharp,GCCExtensions,GLSL,GNU M4,Go,Haskell,Haxe,IDL,ILERPG,Inform,Java,Julia,KBasic,KDev-PG[-Qt] Grammar,Lex/Flex,Literate Curry,Literate Haskell,Logtalk,LPC,Modelica,Modula-2,MonoBasic,Nemerle,nesC,noweb,Objective Caml,Objective-C,Objective-C++,OORS,OPAL,OpenCL,Pascal,Prolog,Protobuf,PureBasic,RapidQ,RSI IDL,Sather,Scala,SML,Stata,TADS 3,Vala,xHarbour,Yacc/Bison,Zonnon -schema=mssola diff --git a/kte/colors/xoria256.kateschema b/kte/colors/xoria256.kateschema deleted file mode 100644 index c167777..0000000 --- a/kte/colors/xoria256.kateschema +++ /dev/null @@ -1,8594 +0,0 @@ -[Default Item Styles - Schema xoria256] -Alert=ffafdf87,ffeeeeee,0,0,0,,-,-,,--- -Annotation=ff7f8c8d,ffbdc3c7,,,,,-,-,,--- -Attribute=ff87afdf,ffeeeeee,,,,,-,-,,--- -Base-N Integer=ffdfaf87,ffeeeeee,0,0,0,,-,-,,--- -Built-in=ff87afdf,ffeeeeee,,,,,-,-,,--- -Character=ffffffaf,ffeeeeee,0,0,0,,-,-,,--- -Comment=ff808080,ffeeeeee,0,0,0,,-,-,,--- -Comment Variable=ff7f8c8d,ffbdc3c7,,,,,-,-,,--- -Constant=ffafafdf,ffeff0f1,0,,,,-,-,,--- -Control Flow=ff87afdf,ffeff0f1,0,,,,-,-,,--- -Data Type=ffafafdf,ffeeeeee,0,0,0,,-,-,,--- -Decimal/Value=ffdfaf87,ffeeeeee,0,0,0,,-,-,,--- -Documentation=ffda4453,ffda4453,,,,,-,-,,--- -Error=ffafdf87,ffeeeeee,0,0,0,,-,-,,--- -Extension=ff87afdf,ffeff0f1,0,,,,-,-,,--- -Floating Point=ffdfaf87,ffeeeeee,0,0,0,,-,-,,--- -Function=ff87afdf,ffeeeeee,0,0,0,,-,-,,--- -Import=ff7f8c8d,ffbdc3c7,,,,,-,-,,--- -Information=fff67400,fff67400,,,,,-,-,,--- -Keyword=ff87afdf,ffeeeeee,0,0,0,,-,-,,--- -Normal=ffdfafdf,ffeeeeee,0,0,0,,-,-,,--- -Operator=ff87afdf,ffeff0f1,,,,,-,-,,--- -Others=ffafdf87,ffeeeeee,0,0,0,,-,-,,--- -Preprocessor=ffafdf87,ffeeeeee,,,,,-,-,,--- -Region Marker=ff87afdf,ffeeeeee,0,0,0,,-,-,,--- -Special Character=ffffffaf,ffeeeeee,,,,,-,-,,--- -Special String=ffffffaf,ffeeeeee,,,,,-,-,,--- -String=ffffffaf,ffeeeeee,0,0,0,,-,-,,--- -Variable=ffdfafdf,ffeeeeee,,,,,-,-,,--- -Verbatim String=ffffffaf,ffeeeeee,,,,,-,-,,--- -Warning=ffda4453,ffda4453,,,,,-,-,,--- - -[Editor Colors] -Color Background=28,28,28 -Color Code Folding=158,158,158 -Color Highlighted Bracket=95,135,223 -Color Highlighted Line=28,28,28 -Color Icon Bar=18,18,18 -Color Indentation Line=158,158,158 -Color Line Number=158,158,158 -Color MarkType 1=128,128,128 -Color MarkType 2=128,128,128 -Color MarkType 3=255,223,175 -Color MarkType 4=135,95,135 -Color MarkType 5=128,128,128 -Color MarkType 6=175,223,135 -Color MarkType 7=223,0,0 -Color Modified Lines=247,230,230 -Color Replace Highlight=135,95,135 -Color Saved Lines=28,28,28 -Color Search Highlight=135,95,135 -Color Selection=135,95,135 -Color Separator=137,136,135 -Color Spelling Mistake Line=223,0,0 -Color Tab Marker=158,158,158 -Color Template Background=237,237,237 -Color Template Editable Placeholder=175,223,135 -Color Template Focused Editable Placeholder=175,223,135 -Color Template Not Editable Placeholder=247,230,230 -Color Word Wrap Marker=237,237,237 -Current Color Line Number=255,239,6 - -[Highlighting .desktop - Schema xoria256] -.desktop:Comment=8,,,,,,,,,,--- -.desktop:Key=2,,,,,,,,,,--- -.desktop:Language=3,,,1,,,,,,,--- -.desktop:Normal Text=0,,,,,,,,,,--- -.desktop:Section=1,,,,,,,,,,--- - -[Highlighting 4DOS BatchToMemory - Schema xoria256] -4DOS BatchToMemory:Alert=28,,,,,,,,,,--- -4DOS BatchToMemory:Comment=21,,,,,,,,,,--- -4DOS BatchToMemory:Error=30,,,,,,,,,,--- -4DOS BatchToMemory:Escape=10,,,,,,,,,,--- -4DOS BatchToMemory:Function=2,,,,,,,,,,--- -4DOS BatchToMemory:Keyword=1,,,,,,,,,,--- -4DOS BatchToMemory:Label=29,,,,,,,,,,--- -4DOS BatchToMemory:Normal=0,,,,,,,,,,--- -4DOS BatchToMemory:Number=17,,,,,,,,,,--- -4DOS BatchToMemory:Operator=25,,,,,,,,,,--- -4DOS BatchToMemory:Option=17,,,,,,,,,,--- -4DOS BatchToMemory:Path=17,,,,,,,,,,--- -4DOS BatchToMemory:Redirection=1,,,,,,,,,,--- -4DOS BatchToMemory:String=12,,,,,,,,,,--- -4DOS BatchToMemory:Variable=16,,,,,,,,,,--- -4DOS BatchToMemory:VariableBold=16,,,1,,,,,,,--- - -[Highlighting 4GL - Schema xoria256] -4GL:Alert=10,,,,,,,,,,--- -4GL:Char=6,,,,,,,,,,--- -4GL:Comment=8,,,,,,,,,,--- -4GL:Data Type=2,,,,,,,,,,--- -4GL:Decimal=3,,,,,,,,,,--- -4GL:Float=5,,,,,,,,,,--- -4GL:Hex=4,,,,,,,,,,--- -4GL:Keyword=1,,,,,,,,,,--- -4GL:Normal Text=0,,,,,,,,,,--- -4GL:Octal=4,,,,,,,,,,--- -4GL:Prep. Lib=9,,,,,,,,,,--- -4GL:Preprocessor=9,,,,,,,,,,--- -4GL:String=7,,,,,,,,,,--- -4GL:String Char=6,,,,,,,,,,--- -4GL:Symbol=0,,,,,,,,,,--- - -[Highlighting 4GL-PER - Schema xoria256] -4GL-PER:Alert=10,,,,,,,,,,--- -4GL-PER:Char=6,,,,,,,,,,--- -4GL-PER:Comment=8,,,,,,,,,,--- -4GL-PER:Data Type=2,,,,,,,,,,--- -4GL-PER:Decimal=3,,,,,,,,,,--- -4GL-PER:Float=5,,,,,,,,,,--- -4GL-PER:Hex=4,,,,,,,,,,--- -4GL-PER:Keyword=1,,,,,,,,,,--- -4GL-PER:Normal Text=0,,,,,,,,,,--- -4GL-PER:Octal=4,,,,,,,,,,--- -4GL-PER:Prep. Lib=9,,,,,,,,,,--- -4GL-PER:Preprocessor=9,,,,,,,,,,--- -4GL-PER:String=7,,,,,,,,,,--- -4GL-PER:String Char=6,,,,,,,,,,--- -4GL-PER:Symbol=0,,,,,,,,,,--- - -[Highlighting ABAP - Schema xoria256] -ABAP:Comment=8,,,,,,,,,,--- -ABAP:Keyword=1,,,,,,,,,,--- -ABAP:Normal Text=0,,,,,,,,,,--- -ABAP:Symbol=0,,,,,,,,,,--- - -[Highlighting ABC - Schema xoria256] -ABC:Bar=6,ff0000ff,,,,,,,,,--- -ABC:Comment=8,,,,,,,,,,--- -ABC:Decoration=5,ff00bbaa,,,,,,,,,--- -ABC:Header=5,,,,,,,,,,--- -ABC:Lyrics=2,ff00bb00,,,,,,,,,--- -ABC:Normal Text=0,,,,,,,,,,--- -ABC:Notes=1,,,1,,,,,,,--- -ABC:Preprocessor=7,,,,1,,,,,,--- -ABC:Sharp=0,ff22bb66,,1,,,,,,,--- -ABC:Slur=2,,,1,,,,,,,--- -ABC:String=7,,,1,,,,,,,--- -ABC:Tuplet=2,ffbb00bb,,,,,,,,,--- - -[Highlighting AHDL - Schema xoria256] -AHDL:Bit=3,,,,,,,,,,--- -AHDL:Char=6,,,,,,,,,,--- -AHDL:Comment=8,,,,,,,,,,--- -AHDL:Data Type=2,,,,,,,,,,--- -AHDL:Decimal=3,,,,,,,,,,--- -AHDL:Hex=4,,,,,,,,,,--- -AHDL:Keyword=1,,,,,,,,,,--- -AHDL:Normal Text=0,,,,,,,,,,--- -AHDL:Octal=4,,,,,,,,,,--- -AHDL:Operator=9,,,,,,,,,,--- -AHDL:Region Marker=12,,,,,,,,,,--- -AHDL:String=7,,,,,,,,,,--- - -[Highlighting AMPLE - Schema xoria256] -AMPLE:Alert=10,,,,,,,,,,--- -AMPLE:Base Functions=0,ff0a7700,,,,,,,,,--- -AMPLE:CUI Functions=0,ff0a7700,,,,,,,,,--- -AMPLE:Char=6,,,,,,,,,,--- -AMPLE:Comment=8,,,,,,,,,,--- -AMPLE:DVE Functions=0,ff0a775c,,,,,,,,,--- -AMPLE:Data Type=2,,,,,,,,,,--- -AMPLE:Decimal=3,,,,,,,,,,--- -AMPLE:Error=13,,,,,,,,,,--- -AMPLE:Float=5,,,,,,,,,,--- -AMPLE:Keyword=1,,,,,,,,,,--- -AMPLE:Layout Functions=0,ff007720,,,,,,,,,--- -AMPLE:Normal Text=0,,,,,,,,,,--- -AMPLE:Prep. Lib=9,,,,,,,,,,--- -AMPLE:Preprocessor=9,,,,,,,,,,--- -AMPLE:Region Marker=12,,,,,,,,,,--- -AMPLE:Reserved Variables=0,ffff0000,,,,,,,,,--- -AMPLE:Schematic Functions=0,ff0a7701,,,,,,,,,--- -AMPLE:String=7,,,,,,,,,,--- -AMPLE:String Char=6,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting ANS-Forth94 - Schema xoria256] -ANS-Forth94:Alert=10,,,,,,,,,,--- -ANS-Forth94:Block Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Block Keyword=1,,,,,,,,,,--- -ANS-Forth94:Char=6,,,,,,,,,,--- -ANS-Forth94:Comment=8,,,,,,,,,,--- -ANS-Forth94:Constant=2,,,,,,,,,,--- -ANS-Forth94:Core Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Core Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Keyword=1,,,,,,,,,,--- -ANS-Forth94:Double Number=4,,,,,,,,,,--- -ANS-Forth94:Exception Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Exception Keyword=1,,,,,,,,,,--- -ANS-Forth94:Facility Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Facility Keyword=1,,,,,,,,,,--- -ANS-Forth94:File Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:File Keyword=1,,,,,,,,,,--- -ANS-Forth94:Float=5,,,,,,,,,,--- -ANS-Forth94:Floating Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Floating Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Keyword=1,,,,,,,,,,--- -ANS-Forth94:Local Variable=2,,,,,,,,,,--- -ANS-Forth94:Memory Keyword=1,,,,,,,,,,--- -ANS-Forth94:Normal Text=0,,,,,,,,,,--- -ANS-Forth94:Obs Core Ext Keyword=1,ffff0000,,,,,,,,,--- -ANS-Forth94:Obs Tools Ext Keyword=1,ffff0000,,,,,,,,,--- -ANS-Forth94:Search Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Search Keyword=1,,,,,,,,,,--- -ANS-Forth94:Single Number=4,,,,,,,,,,--- -ANS-Forth94:String=7,,,,,,,,,,--- -ANS-Forth94:String Keyword=1,,,,,,,,,,--- -ANS-Forth94:Tools Ext Keyword=1,,,,,,,,,,--- -ANS-Forth94:Tools Keyword=1,,,,,,,,,,--- -ANS-Forth94:Variable=2,,,,,,,,,,--- -ANS-Forth94:Word=11,,,,,,,,,,--- - -[Highlighting ANSI C89 - Schema xoria256] -ANSI C89:Char=6,,,,,,,,,,--- -ANSI C89:Comment=8,,,,,,,,,,--- -ANSI C89:Data Type=2,,,,,,,,,,--- -ANSI C89:Decimal=3,,,,,,,,,,--- -ANSI C89:Float=5,,,,,,,,,,--- -ANSI C89:Hex=4,,,,,,,,,,--- -ANSI C89:Keyword=1,,,,,,,,,,--- -ANSI C89:Normal Text=0,,,,,,,,,,--- -ANSI C89:Octal=4,,,,,,,,,,--- -ANSI C89:Prep. Lib=9,,,,,,,,,,--- -ANSI C89:Preprocessor=9,,,,,,,,,,--- -ANSI C89:String=7,,,,,,,,,,--- -ANSI C89:String Char=6,,,,,,,,,,--- -ANSI C89:Symbol=0,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- - -[Highlighting ASN.1 - Schema xoria256] -ASN.1:Comment=8,,,,,,,,,,--- -ASN.1:Data Type=2,,,,,,,,,,--- -ASN.1:Keyword=1,,,,,,,,,,--- -ASN.1:Normal Text=0,,,,,,,,,,--- - -[Highlighting ASP - Schema xoria256] -ASP:ASP Text=0,,,,,,,,,,--- -ASP:Comment=8,,,,,,,,,,--- -ASP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -ASP:Decimal=3,,,,,,,,,,--- -ASP:Escape Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -ASP:Float=5,,,,,,,,,,--- -ASP:Function=1,ff0000ff,ff00ffff,0,0,,,,,,--- -ASP:HTML Comment=8,,,,,,,,,,--- -ASP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -ASP:Hex=4,,,,,,,,,,--- -ASP:Identifier=9,,,,,,,,,,--- -ASP:Keyword=1,,,,,,,,,,--- -ASP:Normal Text=0,,,,,,,,,,--- -ASP:Octal=4,,,,,,,,,,--- -ASP:Other=9,,,,,,,,,,--- -ASP:String=7,,,,,,,,,,--- -ASP:Types=2,,,,,,,,,,--- -ASP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting AVR Assembler - Schema xoria256] -AVR Assembler:Binary=4,,,,,,,,,,--- -AVR Assembler:Char=6,,,,,,,,,,--- -AVR Assembler:Comment=8,,,,,,,,,,--- -AVR Assembler:Decimal=3,,,,,,,,,,--- -AVR Assembler:Float=5,,,,,,,,,,--- -AVR Assembler:Hex=4,,,,,,,,,,--- -AVR Assembler:Keyword=1,,,,,,,,,,--- -AVR Assembler:Label=11,,,,,,,,,,--- -AVR Assembler:Normal Text=0,,,,,,,,,,--- -AVR Assembler:Octal=4,,,,,,,,,,--- -AVR Assembler:Preprocessor=9,,,,,,,,,,--- -AVR Assembler:String=7,,,,,,,,,,--- -AVR Assembler:String Char=6,,,,,,,,,,--- -AVR Assembler:Symbol=0,,,,,,,,,,--- - -[Highlighting AWK - Schema xoria256] -AWK:Builtin=0,ffcc8822,,,,,,,,,--- -AWK:CharClass=7,ff008080,,,,,,,,,--- -AWK:Comment=8,,,,,,,,,,--- -AWK:Custom=7,ff449944,,,,,,,,,--- -AWK:Decimal=3,,,,,,,,,,--- -AWK:Error=13,,,,,,,,,,--- -AWK:Escape=7,ff4a5704,,,,,,,,,--- -AWK:Field=2,,,,,,,,,,--- -AWK:Float=5,,,,,,,,,,--- -AWK:Function=11,,,,,,,,,,--- -AWK:Keyword=1,,,,,,,,,,--- -AWK:Normal=0,,,,,,,,,,--- -AWK:Operator=0,ffff80e0,,,,,,,,,--- -AWK:Regex=7,ff4a5704,,,,,,,,,--- -AWK:Regex Op=9,ffff80e0,,,,,,,,,--- -AWK:Special=1,ffff9225,,0,,,,,,,--- -AWK:String=7,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- - -[Highlighting ActionScript 2.0 - Schema xoria256] -ActionScript 2.0:Char=6,,,,,,,,,,--- -ActionScript 2.0:Classes=0,ff660066,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Comment=8,,,,,,,,,,--- -ActionScript 2.0:Constants=0,ff003300,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Data Type=2,,,,,,,,,,--- -ActionScript 2.0:Decimal=3,,,,,,,,,,--- -ActionScript 2.0:Float=5,,,,,,,,,,--- -ActionScript 2.0:Function=11,,,,,,,,,,--- -ActionScript 2.0:Global Functions=0,ff006666,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:Hex=4,,,,,,,,,,--- -ActionScript 2.0:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -ActionScript 2.0:Keyword=1,,,,,,,,,,--- -ActionScript 2.0:Normal Text=0,,,,,,,,,,--- -ActionScript 2.0:Octal=4,,,,,,,,,,--- -ActionScript 2.0:Properties=0,ff000033,ffcccccc,1,0,,,,,,--- -ActionScript 2.0:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -ActionScript 2.0:String=7,,,,,,,,,,--- -ActionScript 2.0:String Char=6,,,,,,,,,,--- -ActionScript 2.0:Symbol=0,,,,,,,,,,--- -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Ada - Schema xoria256] -Ada:Base-N=4,,,,,,,,,,--- -Ada:Char=6,,,,,,,,,,--- -Ada:Comment=8,,,,,,,,,,--- -Ada:Data Type=2,,,,,,,,,,--- -Ada:Decimal=3,,,,,,,,,,--- -Ada:Float=5,,,,,,,,,,--- -Ada:Keyword=1,,,,,,,,,,--- -Ada:Normal Text=0,,,,,,,,,,--- -Ada:Pragmas=1,ff0095ff,ffffffff,1,0,,,,,,--- -Ada:Region Marker=12,,,,,,,,,,--- -Ada:String=7,,,,,,,,,,--- -Ada:Symbol=0,,,,,,,,,,--- - -[Highlighting Agda - Schema xoria256] -Agda:Char=10,,,,,,,,,,--- -Agda:Comment=21,,,,,,,,,,--- -Agda:Decimal=17,,,,,,,,,,--- -Agda:Float=19,,,,,,,,,,--- -Agda:Hole=29,,,,,,,,,,--- -Agda:Keyword=1,,,,,,,,,,--- -Agda:Normal=0,,,,,,,,,,--- -Agda:Pragma=29,,,,,,,,,,--- -Agda:Special=29,,,,,,,,,,--- -Agda:String=12,,,,,,,,,,--- -Agda:Type=16,,,,,,,,,,--- - -[Highlighting Alerts - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- - -[Highlighting Alerts_indent - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- - -[Highlighting Ansys - Schema xoria256] -Ansys:APDLcmd=11,,,,,,,,,,--- -Ansys:AUX12cmds=11,,,,,,,,,,--- -Ansys:AUX15cmds=11,,,,,,,,,,--- -Ansys:AUX2cmds=11,,,,,,,,,,--- -Ansys:AUX3cmds=11,,,,,,,,,,--- -Ansys:Commands=9,,,,,,,,,,--- -Ansys:DBcmd=11,,,,,,,,,,--- -Ansys:DISPLAYcmds=11,,,,,,,,,,--- -Ansys:GRPH_cmds=11,,,,,,,,,,--- -Ansys:Keyword=1,,,,,,,,,,--- -Ansys:Labels=6,,,,,,,,,,--- -Ansys:MatProp=2,,,,,,,,,,--- -Ansys:Normal Text=0,,,,,,,,,,--- -Ansys:NumFloat=5,,,,,,,,,,--- -Ansys:NumInt=3,,,,,,,,,,--- -Ansys:OPTIMIZATIONcmds=11,,,,,,,,,,--- -Ansys:POST1Commands=11,,,,,,,,,,--- -Ansys:POST26Commands=11,,,,,,,,,,--- -Ansys:PREP7Commands=11,,,,,,,,,,--- -Ansys:PROBcmds=11,,,,,,,,,,--- -Ansys:REDUORDERcmds=11,,,,,,,,,,--- -Ansys:RUNSTATcmds=11,,,,,,,,,,--- -Ansys:SESSIONcmd=11,,,,,,,,,,--- -Ansys:SOLUCommands=11,,,,,,,,,,--- -Ansys:String=7,,,,,,,,,,--- -Ansys:comment=8,,,,,,,,,,--- -Ansys:error=13,,,,,,,,,,--- -Ansys:functions_arg=1,,,,,,,,,,--- -Ansys:parentesis_not_closed=12,,,,,,,,,,--- -Ansys:variable=9,,,,,,,,,,--- - -[Highlighting Apache Configuration - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Apache Configuration:Alert=13,,,,,,,,,,--- -Apache Configuration:Alternates=1,,,,,,,,,,--- -Apache Configuration:Attribute=9,,,,,,,,,,--- -Apache Configuration:Comment=8,,,,,,,,,,--- -Apache Configuration:Container=11,,,,,,,,,,--- -Apache Configuration:Directives=9,ff0000ff,ff0000ff,1,0,,,,,,--- -Apache Configuration:Float=5,,,,,,,,,,--- -Apache Configuration:Int=5,,,,,,,,,,--- -Apache Configuration:Normal Text=0,,,,,,,,,,--- -Apache Configuration:Other=6,,,,,,,,,,--- -Apache Configuration:String=7,,,,,,,,,,--- - -[Highlighting Asm6502 - Schema xoria256] -Asm6502:Command=0,,,,,,,,,,--- -Asm6502:Comment=8,,,,,,,,,,--- -Asm6502:Data Type=2,,,,,,,,,,--- -Asm6502:Decimal=3,,,,,,,,,,--- -Asm6502:Hex=4,,,,,,,,,,--- -Asm6502:Keyword=1,,,,,,,,,,--- -Asm6502:Normal Text=0,,,,,,,,,,--- -Asm6502:Operator=9,,,,,,,,,,--- -Asm6502:Parameter=9,,,,,,,,,,--- -Asm6502:Preprocessor=9,,,,,,,,,,--- -Asm6502:String=7,,,,,,,,,,--- -Asm6502:Substitution=9,,,,,,,,,,--- - -[Highlighting Asterisk - Schema xoria256] -Asterisk:Comment=8,,,,,,,,,,--- -Asterisk:Keyword=1,,,,,,,,,,--- -Asterisk:Label=11,,,,,,,,,,--- -Asterisk:Normal Text=0,,,,,,,,,,--- -Asterisk:String=7,,,,,,,,,,--- -Asterisk:Symbol=0,,,,,,,,,,--- - -[Highlighting AutoHotKey - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -AutoHotKey:Char=6,,,,,,,,,,--- -AutoHotKey:Commands=1,ffff6827,,,,,,,,,--- -AutoHotKey:Comment=8,,,,,,,,,,--- -AutoHotKey:Decimal=3,,,,,,,,,,--- -AutoHotKey:Directives=0,ff663300,,1,,,,,,,--- -AutoHotKey:Error=13,,,,,,,,,,--- -AutoHotKey:Float=5,,,,,,,,,,--- -AutoHotKey:Flow of control=1,ffff0900,,,,,,,,,--- -AutoHotKey:Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -AutoHotKey:Hex=4,,,,,,,,,,--- -AutoHotKey:Keys and buttons=0,ff2313d4,,,,,,,,,--- -AutoHotKey:Keywords=1,ffff6827,,,,,,,,,--- -AutoHotKey:Normal Text=0,,,,,,,,,,--- -AutoHotKey:Octal=4,,,,,,,,,,--- -AutoHotKey:Prep. Lib=9,,,,,,,,,,--- -AutoHotKey:Preprocessor=9,,,,,,,,,,--- -AutoHotKey:Region Marker=12,,,,,,,,,,--- -AutoHotKey:String=7,,,,,,,,,,--- -AutoHotKey:String Char=6,,,,,,,,,,--- -AutoHotKey:Symbol=0,,,,,,,,,,--- -AutoHotKey:Variables=1,ff5127b2,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting B-Method - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -B-Method:Comment=8,,,,,,,,,,--- -B-Method:Data Type=2,,,,,,,,,,--- -B-Method:Decimal=3,,,,,,,,,,--- -B-Method:Normal Text=0,,,,,,,,,,--- -B-Method:OperationKeyword=1,ff0000ff,,,,,,,,,--- -B-Method:SectionKeyword=1,ffff0000,,,,,,,,,--- - -[Highlighting Bash - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffe85848,,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffca9219,,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,ffd0d0d0,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Bash:Backquote=1,ffffffaf,,,,,,,,,--- -Bash:Builtin=1,ffdf8787,,,,,,,,,--- -Bash:Command=1,ff87afdf,,,,,,,,,--- -Bash:Comment=8,ff808080,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,ffdf8787,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,ffdfafdf,,,,,,,,,--- -Bash:Keyword=1,ff87afdf,,,,,,,,,--- -Bash:Normal Text=0,ffd0d0d0,,,,,,,,,--- -Bash:Option=0,ffd0d0d0,,,,,,,,,--- -Bash:OtherCommand=1,ff87afdf,,,,,,,,,--- -Bash:Path=0,ffd0d0d0,,,,,,,,,--- -Bash:Redirection=1,ff87afdf,,,,,,,,,--- -Bash:String DoubleQ=7,ffffffaf,,,,,,,,,--- -Bash:String Escape=2,ffffffaf,,,,,,,,,--- -Bash:String SingleQ=7,ffffffaf,,,,,,,,,--- -Bash:String Transl.=7,ffffffaf,,,,,,,,,--- -Bash:Variable=9,ffdfafdf,,,,,,,,,--- -Modelines:Comment=8,ff808080,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,ffdfaf87,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,ffffffaf,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,ffdfafdf,,,,,,,,,--- - -[Highlighting BibTeX - Schema xoria256] -BibTeX:Command=11,,,,,,,,,,--- -BibTeX:Comment=8,,,,,,,,,,--- -BibTeX:Entry=1,ff0000ff,,,,,,,,,--- -BibTeX:Error=10,,,,,,,,,,--- -BibTeX:Field=2,,,,,,,,,,--- -BibTeX:LatexCommand=6,,,,,,,,,,--- -BibTeX:Normal Text=0,,,,,,,,,,--- -BibTeX:Ref Key=9,,,,,,,,,,--- -BibTeX:String=7,,,,,,,,,,--- - -[Highlighting Boo - Schema xoria256] -Boo:Builtin Function=2,,,,,,,,,,--- -Boo:Comment=8,,,,,,,,,,--- -Boo:Complex=9,,,,,,,,,,--- -Boo:Data Type=2,,,,,,,,,,--- -Boo:Definition Keyword=1,,,,,,,,,,--- -Boo:Float=5,,,,,,,,,,--- -Boo:Flow Control Keyword=1,,,,,,,,,,--- -Boo:Hex=9,,,,,,,,,,--- -Boo:Int=3,,,,,,,,,,--- -Boo:Long=9,,,,,,,,,,--- -Boo:Normal Text=0,,,,,,,,,,--- -Boo:Octal=9,,,,,,,,,,--- -Boo:Operator=0,ff000077,,,,,,,,,--- -Boo:Preprocessor=6,,,,,,,,,,--- -Boo:Raw String=7,,,,,,,,,,--- -Boo:Special Variable=9,,,,,,,,,,--- -Boo:String=7,,,,,,,,,,--- -Boo:String Char=6,,,,,,,,,,--- -Boo:String Substitution=0,,,,,,,,,,--- - -[Highlighting C - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C:Alert=10,ffafdf87,ffeeeeee,0,,,,,,,--- -C:Binary=4,ffdfaf87,,,,,,,,,--- -C:Char=6,ffffffaf,,,,,,,,,--- -C:Comment=8,ff808080,,,,,,,,,--- -C:Data Type=2,ffafafdf,,,,,,,,,--- -C:Decimal=3,ffdfaf87,,,,,,,,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,ffdfaf87,,,,,,,,,--- -C:Hex=4,ffdfaf87,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,ffdfaf87,,,,,,,,,--- -C:Prep. Lib=9,ffffffaf,,,,,,,,,--- -C:Preprocessor=9,ffafdf87,,,,,,,,,--- -C:Region Marker=12,ffffffaf,,,,,,,,,--- -C:String=7,ffffffaf,,,,,,,,,--- -C:String Char=6,ffffffaf,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Code=8,ff808080,,,,,,,,,--- -Doxygen:Comment=8,ff808080,ffc7e2f8,,,,,,,,--- -Doxygen:Custom Tags=0,ff87afdf,ff1c1c1c,,,,,,,,--- -Doxygen:Description=7,ff808080,ff9c0e0e,,,,,,,,--- -Doxygen:Dot Graph=8,ff808080,ffc7e2f8,,,,,,,,--- -Doxygen:Entities=9,ff808080,ff80ff80,,,,,,,,--- -Doxygen:Formulas=8,ff27ae60,ffc7e2f8,,,,,,,,--- -Doxygen:HTML Comment=8,ff808080,,,,,,,,,--- -Doxygen:HTML Tag=1,ff808080,ffffffff,0,,,,,,,--- -Doxygen:Identifier=9,ff808080,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff27ae60,ffc7e2f8,,,,,,,,--- -Doxygen:Normal Text=0,ff808080,,,,,,,,,--- -Doxygen:Note=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Region=12,ff808080,,,,,,,,,--- -Doxygen:Tags=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Todo=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,ff27ae60,,,,,,,,,--- -Doxygen:Warning=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Word=1,ff808080,ffffffff,0,,,,,,,--- - -[Highlighting C# - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C#:Char=6,,,,,,,,,,--- -C#:Comment=8,,,,,,,,,,--- -C#:Data Type=2,,,,,,,,,,--- -C#:Decimal=3,,,,,,,,,,--- -C#:Float=5,,,,,,,,,,--- -C#:Function=11,,,,,,,,,,--- -C#:Hex=4,,,,,,,,,,--- -C#:Keyword=1,,,,,,,,,,--- -C#:Normal Text=0,,,,,,,,,,--- -C#:Octal=4,,,,,,,,,,--- -C#:String=7,,,,,,,,,,--- -C#:String Char=6,,,,,,,,,,--- -C#:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting C++ - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Normal Text=0,ffd0d0d0,,,,,,,,,--- -Alerts:Region Marker=25,ff87afdf,,,,,,,,,--- -C++:Attribute=1,ff87afdf,ffeeeeee,0,0,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,ffd0d0d0,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,ffd0d0d0,,,,,,,,,--- -C++:Qt4 Functions=2,ffd0d0d0,,,,,,,,,--- -C++:Qt4 Macros=1,ffd0d0d0,ffffffff,0,0,,,,,,--- -C++:Qt4 Types=16,ffafafdf,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,ff87afdf,ffeeeeee,0,0,,,,,,--- -C++:Standard Classes=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ff87afdf,ffe85848,0,0,,,,,,--- -Doxygen:Code=8,ff808080,,,,,,,,,--- -Doxygen:Comment=8,ff808080,,,,,,,,,--- -Doxygen:Custom Tags=0,ff87afdf,,0,0,,,,,,--- -Doxygen:Description=7,ff808080,,,,,,,,,--- -Doxygen:Dot Graph=8,ff808080,ffffffff,,0,,,,,,--- -Doxygen:Entities=9,ff808080,,0,0,,,,,,--- -Doxygen:Formulas=8,ff808080,ffffffff,,0,,,,,,--- -Doxygen:HTML Comment=8,ff808080,,,,,,,,,--- -Doxygen:HTML Tag=1,ff808080,,0,0,,,,,,--- -Doxygen:Identifier=9,ff808080,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff808080,ffffffff,,0,,,,,,--- -Doxygen:Normal Text=0,ff808080,,,,,,,,,--- -Doxygen:Note=1,ff87afdf,ff81ca2d,0,0,,,,,,--- -Doxygen:Region=12,ffffffaf,,,,,,,,,--- -Doxygen:Tags=1,ff87afdf,,0,0,,,,,,--- -Doxygen:Todo=1,ff87afdf,ffffffff,0,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,ff808080,,,,,,,,,--- -Doxygen:Warning=1,ff87afdf,ffca9219,0,0,,,,,,--- -Doxygen:Word=1,ff808080,,0,0,,,,,,--- -GCCExtensions:GNU Extensions=9,ff87afdf,ffeeeeee,,,,,,,,--- -GCCExtensions:GNU Functions=9,ffd0d0d0,,,,,,,,,--- -GCCExtensions:GNU Macros=9,ffafdf87,,,,,,,,,--- -GCCExtensions:GNU Types=9,ffafafdf,,,,,,,,,--- -GCCExtensions:Normal Text=0,ffd0d0d0,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,ff87afdf,,0,0,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ffd0d0d0,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,ff808080,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,ffda4453,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ffd0d0d0,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,ffffffaf,,,,,,,,,--- -ISO C++:Preprocessor=29,ffafdf87,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,ff87afdf,,0,0,,,,,,--- -ISO C++:Standard Classes=0,ffd0d0d0,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,ffafdf87,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Modelines:Comment=8,ff808080,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,ffdfaf87,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,ffffffaf,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,ffdfafdf,,,,,,,,,--- - -[Highlighting C++/Qt4 - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++/Qt4:Normal Text=0,,,,,,,,,,--- -C++/Qt4:Qt4 Classes=0,,,,,,,,,,--- -C++/Qt4:Qt4 Extensions=0,,,,,,,,,,--- -C++/Qt4:Qt4 Functions=0,,,,,,,,,,--- -C++/Qt4:Qt4 Macros=0,,,,,,,,,,--- -C++/Qt4:Qt4 Types=0,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting C++11 - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -C++11:Attribute=1,,,0,1,,,,,,--- -C++11:Binary=4,,,,,,,,,,--- -C++11:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++11:CONSTS/MACROS=0,,,,,,,,,,--- -C++11:Char=6,,,,,,,,,,--- -C++11:Comment=8,,,,,,,,,,--- -C++11:Data Members (m_*)=0,,,,,,,,,,--- -C++11:Data Type=2,,,,,,,,,,--- -C++11:Decimal=3,,,,,,,,,,--- -C++11:Error=13,,,,,,,,,,--- -C++11:Float=5,,,,,,,,,,--- -C++11:Globals (g_*)=0,,,,,,,,,,--- -C++11:Hex=4,,,,,,,,,,--- -C++11:Internals=0,ff808080,ff808080,,,,,,,,--- -C++11:Keyword=1,,,,,,,,,,--- -C++11:Normal Text=0,,,,,,,,,,--- -C++11:Octal=4,,,,,,,,,,--- -C++11:Prep. Lib=9,,,,,,,,,,--- -C++11:Preprocessor=9,,,,,,,,,,--- -C++11:Region Marker=12,,,,,,,,,,--- -C++11:Separator Symbol=0,,,,,,,,,,--- -C++11:Standard Attribute=1,,,0,1,,,,,,--- -C++11:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++11:Standard Macros=9,,,,,,,,,,--- -C++11:Statics (s_*)=0,,,,,,,,,,--- -C++11:String=7,,,,,,,,,,--- -C++11:String Char=6,,,,,,,,,,--- -C++11:Symbol=0,,,,,,,,,,--- -C++11:Type Modifiers=2,,,,,,,,,,--- -C++11:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting CGiS - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CGiS:Alert=10,,,,,,,,,,--- -CGiS:Char=6,,,,,,,,,,--- -CGiS:Comment=8,,,,,,,,,,--- -CGiS:Data Type=2,,,,,,,,,,--- -CGiS:Decimal=3,,,,,,,,,,--- -CGiS:Float=5,,,,,,,,,,--- -CGiS:Hex=4,,,,,,,,,,--- -CGiS:Hint=9,,,,,,,,,,--- -CGiS:Keyword=1,,,,,,,,,,--- -CGiS:Normal Text=0,,,,,,,,,,--- -CGiS:Octal=4,,,,,,,,,,--- -CGiS:Region Marker=12,,,,,,,,,,--- -CGiS:String=7,,,,,,,,,,--- -CGiS:String Char=6,,,,,,,,,,--- -CGiS:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting CMake - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffe85848,,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffca9219,,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -CMake:Builtin CMake Variable=3,ffafafdf,ffc09050,,,,,,,,--- -CMake:CMake Variable=3,ffafafdf,,,,,,,,,--- -CMake:Commands=1,ff87afdf,,,,,,,,,--- -CMake:Comment=8,ff808080,,,,,,,,,--- -CMake:Environment Variable=5,,,,,,,,,,--- -CMake:Escapes=6,,,,,,,,,,--- -CMake:Generator Expression=9,ffffffaf,ffb86050,,,,,,,,--- -CMake:Generator Expression Keyword=1,ff87afdf,ffb84040,,,,,,,,--- -CMake:Macros=11,,,,,,,,,,--- -CMake:Normal Text=0,,,,,,,,,,--- -CMake:Properties=9,,,,,,,,,,--- -CMake:Region Marker=12,ffffffaf,,,,,,,,,--- -CMake:Special Args=9,ff87afdf,,,,,,,,,--- -CMake:Strings=7,ffffffaf,,,,,,,,,--- -CMake:Third-Party Commands=11,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,ff808080,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,ffdfaf87,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,ffffffaf,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,ffdfafdf,,,,,,,,,--- -reStructuredText:Bold=0,,,1,,,,,,,--- -reStructuredText:CMakeCode=2,,,,,,,,,,--- -reStructuredText:Citation=2,,,,,,,,,,--- -reStructuredText:Code=2,,,,,,,,,,--- -reStructuredText:CppCode=2,,,,,,,,,,--- -reStructuredText:Directive=2,,,,,,,,,,--- -reStructuredText:Field=11,,,,,,,,,,--- -reStructuredText:Footnote=2,,,,,,,,,,--- -reStructuredText:FootnoteReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkRefOrInterpretedText=9,,,,,,,,,,--- -reStructuredText:HyperlinkReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkTarget=2,,,,,,,,,,--- -reStructuredText:InlineInternalTarget=11,,,,,,,,,,--- -reStructuredText:InlineLiteral=2,,,,,,,,,,--- -reStructuredText:Italic=0,,,,1,,,,,,--- -reStructuredText:Monospaced=0,ff006600,,,,,,,,,--- -reStructuredText:Normal=0,,,,,,,,,,--- -reStructuredText:Role=0,,,1,,,,,,,--- -reStructuredText:SubstitutionDefinition=2,,,,,,,,,,--- -reStructuredText:SubstitutionReference=11,,,,,,,,,,--- - -[Highlighting CSS - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffe85848,,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffca9219,,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,ffafdf87,,,,,,,,,--- -CSS:Comment=8,ff808080,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,ffafdf87,,0,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,ffffffaf,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,ffdfafdf,,0,,,,,,,--- -CSS:Selector Pseudo=3,ffdfafdf,,,,,,,,,--- -CSS:String=7,ffffffaf,,,,,,,,,--- -CSS:Unknown Property=1,ff87afdf,,,0,,,,,,--- -CSS:Value=2,ffdfaf87,,,,,,,,,--- - -[Highlighting CSS/PHP - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS/PHP:At Rule=3,,,,,,,,,,--- -CSS/PHP:Comment=8,,,,,,,,,,--- -CSS/PHP:Error=13,,,,,,,,,,--- -CSS/PHP:Important=1,,,,,,,,,,--- -CSS/PHP:Media=3,,,1,,,,,,,--- -CSS/PHP:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Property=1,,,,,,,,,,--- -CSS/PHP:Region Marker=12,,,,,,,,,,--- -CSS/PHP:Selector Attr=6,,,,,,,,,,--- -CSS/PHP:Selector Class=5,,,,,,,,,,--- -CSS/PHP:Selector Id=5,,,1,,,,,,,--- -CSS/PHP:Selector Pseudo=3,,,,,,,,,,--- -CSS/PHP:String=7,,,,,,,,,,--- -CSS/PHP:Unknown Property=1,,,,1,,,,,,--- -CSS/PHP:Value=2,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting CUE Sheet - Schema xoria256] -CUE Sheet:Comment=8,,,,,,,,,,--- -CUE Sheet:Decimal=3,,,,,,,,,,--- -CUE Sheet:Flags=0,ff008000,,,,,,,,,--- -CUE Sheet:Format=0,ff800000,,,,,,,,,--- -CUE Sheet:Keyword=1,,,,,,,,,,--- -CUE Sheet:Mode=0,ff000080,,,,,,,,,--- -CUE Sheet:Normal Text=0,,,,,,,,,,--- -CUE Sheet:String=7,,,,,,,,,,--- - -[Highlighting Cg - Schema xoria256] -Cg:Alert=10,,,,,,,,,,--- -Cg:Binding=1,,,,,,,,,,--- -Cg:Comment=8,,,,,,,,,,--- -Cg:Data Type=2,,,,,,,,,,--- -Cg:Decimal=3,,,,,,,,,,--- -Cg:Error=13,,,,,,,,,,--- -Cg:Fixed=5,,,,,,,,,,--- -Cg:Float=5,,,,,,,,,,--- -Cg:Function=11,,,0,,,,,,,--- -Cg:Half=5,,,,,,,,,,--- -Cg:Keyword=1,,,,,,,,,,--- -Cg:Normal Text=0,,,,,,,,,,--- -Cg:StdFunction=11,,,1,,,,,,,--- -Cg:Swizzle=0,,,1,,,,,,,--- -Cg:Symbol=0,,,,,,,,,,--- - -[Highlighting ChangeLog - Schema xoria256] -ChangeLog:Date=2,,,,,,,,,,--- -ChangeLog:E-Mail=9,,,,,,,,,,--- -ChangeLog:Entry=3,,,,,,,,,,--- -ChangeLog:Name=1,,,,,,,,,,--- -ChangeLog:Normal Text=0,,,,,,,,,,--- - -[Highlighting Chicken - Schema xoria256] -Chicken:BaseN=4,,,,,,,,,,--- -Chicken:Brackets1=0,ffff0000,ff000000,1,0,,,,,,--- -Chicken:Brackets2=0,ffff8800,ff000000,1,0,,,,,,--- -Chicken:Brackets3=0,ff888800,ff000000,1,0,,,,,,--- -Chicken:Brackets4=0,ff008800,ff000000,1,0,,,,,,--- -Chicken:Brackets5=0,ff000088,ff000000,1,0,,,,,,--- -Chicken:Brackets6=0,ff880088,ff000000,1,0,,,,,,--- -Chicken:Char=6,,,,,,,,,,--- -Chicken:Comment=8,,,,,,,,,,--- -Chicken:Data=2,,,,,,,,,,--- -Chicken:Decimal=3,,,,,,,,,,--- -Chicken:Definition=1,ffd22811,,,,,,,,,--- -Chicken:Float=5,,,,,,,,,,--- -Chicken:Function=11,,,,,,,,,,--- -Chicken:Keyword=1,,,,,,,,,,--- -Chicken:Normal=0,,,,,,,,,,--- -Chicken:Operator=1,ffd22811,,,,,,,,,--- -Chicken:Region Marker=12,,,,,,,,,,--- -Chicken:String=7,,,,,,,,,,--- - -[Highlighting Cisco - Schema xoria256] -Cisco:Char=6,,,,,,,,,,--- -Cisco:Command=0,,,,,,,,,,--- -Cisco:Comment=8,,,,,,,,,,--- -Cisco:Decimal=3,,,,,,,,,,--- -Cisco:Float=5,,,,,,,,,,--- -Cisco:Keyword=1,,,,,,,,,,--- -Cisco:Normal Text=0,,,,,,,,,,--- -Cisco:Operator=9,,,,,,,,,,--- -Cisco:Parameter=9,,,,,,,,,,--- -Cisco:String=7,,,,,,,,,,--- -Cisco:Substitution=9,,,,,,,,,,--- - -[Highlighting CleanCSS - Schema xoria256] -CleanCSS:Alert=10,,,,,,,,,,--- -CleanCSS:At Rule=3,,,,,,,,,,--- -CleanCSS:Comment=8,,,,,,,,,,--- -CleanCSS:Error=13,,,,,,,,,,--- -CleanCSS:Important=1,,,,,,,,,,--- -CleanCSS:Media=3,,,1,,,,,,,--- -CleanCSS:Normal Text=0,,,,,,,,,,--- -CleanCSS:Property=1,,,,,,,,,,--- -CleanCSS:Region Marker=12,,,,,,,,,,--- -CleanCSS:Selector Attr=6,,,,,,,,,,--- -CleanCSS:Selector Class=5,,,,,,,,,,--- -CleanCSS:Selector Id=5,,,1,,,,,,,--- -CleanCSS:Selector Pseudo=3,,,,,,,,,,--- -CleanCSS:String=7,,,,,,,,,,--- -CleanCSS:Unknown Property=1,,,,1,,,,,,--- -CleanCSS:Value=2,,,,,,,,,,--- - -[Highlighting Clipper - Schema xoria256] -Clipper:Command=2,,,,,,,,,,--- -Clipper:Comment=8,,,,,,,,,,--- -Clipper:Decimal=3,,,,,,,,,,--- -Clipper:Eval Block=9,,,,,,,,,,--- -Clipper:Function=11,,,,,,,,,,--- -Clipper:Hex=4,,,,,,,,,,--- -Clipper:Keyword=1,,,,,,,,,,--- -Clipper:Normal Text=0,,,,,,,,,,--- -Clipper:Prep. Lib=9,,,,,,,,,,--- -Clipper:Preprocessor=9,,,,,,,,,,--- -Clipper:Region Marker=12,,,,,,,,,,--- -Clipper:String=7,,,,,,,,,,--- -Clipper:String Char=6,,,,,,,,,,--- -Clipper:Symbol=0,,,,,,,,,,--- - -[Highlighting Clojure - Schema xoria256] -Clojure:BaseN=4,,,,,,,,,,--- -Clojure:Brackets=0,ff0000ff,ff00ff00,1,0,,,,,,--- -Clojure:Brackets1=0,ffff0000,ffffaa00,0,0,,,,,,--- -Clojure:Brackets2=0,ffff8800,ffffff00,0,0,,,,,,--- -Clojure:Brackets3=0,ff888800,ff888888,0,0,,,,,,--- -Clojure:Brackets4=0,ff008800,ff000000,0,0,,,,,,--- -Clojure:Brackets5=0,ff000088,ff000000,0,0,,,,,,--- -Clojure:Brackets6=0,ff880088,ff000000,0,0,,,,,,--- -Clojure:BracketsCurly=0,ff206620,ff219921,,,,,,,,--- -Clojure:BracketsSquare=0,ff3333ff,ff3333aa,,,,,,,,--- -Clojure:Char=6,,,,,,,,,,--- -Clojure:Comment=8,,,,,,,,,,--- -Clojure:Data=2,,,,,,,,,,--- -Clojure:Decimal=3,,,,,,,,,,--- -Clojure:Definition=1,ffd22811,,,,,,,,,--- -Clojure:Float=5,,,,,,,,,,--- -Clojure:Function=11,,,,,,,,,,--- -Clojure:Keyword=1,,,,,,,,,,--- -Clojure:Modifier=1,ff800000,,,,,,,,,--- -Clojure:Modifier2=1,ff555555,,,,,,,,,--- -Clojure:Normal=0,,,,,,,,,,--- -Clojure:Operator=1,ffd22811,,,,,,,,,--- -Clojure:Region Marker=12,,,,,,,,,,--- -Clojure:String=7,,,,,,,,,,--- -Clojure:Variable=1,ffb07e1f,,,,,,,,,--- - -[Highlighting CoffeeScript - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -CoffeeScript:Accessor=2,,,,,,,,,,--- -CoffeeScript:Browser Globals=0,ffdfafdf,,,,,,,,,--- -CoffeeScript:Class=2,ff87afdf,ffeeeeee,0,,,,,,,--- -CoffeeScript:Comment=8,ff808080,,,,,,,,,--- -CoffeeScript:Decimal=3,ffdfaf87,,,,,,,,,--- -CoffeeScript:Embedding=6,,,,,,,,,,--- -CoffeeScript:Float=5,ffdfaf87,,,,,,,,,--- -CoffeeScript:Function=11,ff87afdf,,,,,,,,,--- -CoffeeScript:Globals=9,,,,,,,,,,--- -CoffeeScript:Hex=4,ffdfaf87,,,,,,,,,--- -CoffeeScript:Identifier=0,,,,,,,,,,--- -CoffeeScript:Javascript=10,ffafdf87,ffeeeeee,0,0,,,,,,--- -CoffeeScript:Keyword=1,,,,,,,,,,--- -CoffeeScript:Node.js Globals=0,ffdfafdf,,,,,,,,,--- -CoffeeScript:Normal=0,,,,,,,,,,--- -CoffeeScript:Oct=4,ffdfaf87,,,,,,,,,--- -CoffeeScript:Regex=7,ffffffaf,,,,,,,,,--- -CoffeeScript:Reserved=10,ffffffaf,,,,,,,,,--- -CoffeeScript:String=7,ffffffaf,,,,,,,,,--- -CoffeeScript:Symbol=1,,,,,,,,,,--- -CoffeeScript:Value Keywords=9,,,,,,,,,,--- -Doxygen:Attention=1,ff87afdf,ffe85848,0,0,,,,,,--- -Doxygen:Code=8,ff727180,,,,,,,,,--- -Doxygen:Comment=8,ff808080,,,,,,,,,--- -Doxygen:Custom Tags=0,ff87afdf,,0,0,,,,,,--- -Doxygen:Description=7,ff808080,,,,,,,,,--- -Doxygen:Dot Graph=8,ff727180,ffffffff,,0,,,,,,--- -Doxygen:Entities=9,ff808080,,0,0,,,,,,--- -Doxygen:Formulas=8,ff27ae60,ffffffff,,0,,,,,,--- -Doxygen:HTML Comment=8,ff808080,,,,,,,,,--- -Doxygen:HTML Tag=1,ff808080,,0,0,,,,,,--- -Doxygen:Identifier=9,ff808080,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff27ae60,ffffffff,,0,,,,,,--- -Doxygen:Normal Text=0,ff808080,,,,,,,,,--- -Doxygen:Note=1,ff87afdf,ff81ca2d,0,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ff87afdf,,0,0,,,,,,--- -Doxygen:Todo=1,ff87afdf,ffffffff,0,0,,,,,,--- -Doxygen:Types=2,ff87afdf,,,0,,,,,,--- -Doxygen:Verbatim=8,ff27ae60,,,,,,,,,--- -Doxygen:Warning=1,ff87afdf,ffca9219,0,0,,,,,,--- -Doxygen:Word=1,ff808080,,0,0,,,,,,--- -JavaScript:Char=6,ffffffaf,,,,,,,,,--- -JavaScript:Comment=8,ff808080,,,,,,,,,--- -JavaScript:Decimal=3,ffdfaf87,,,,,,,,,--- -JavaScript:Float=5,ffdfaf87,,,,,,,,,--- -JavaScript:Function=11,ffffffaf,,,,,,,,,--- -JavaScript:Hex=4,ffdfaf87,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,ffffffaf,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,ffdfaf87,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,ffffffaf,,,,,,,,,--- -JavaScript:Regular Expression=9,ffffffaf,,,,,,,,,--- -JavaScript:Reserved=1,ff87afdf,,,0,,,,,,--- -JavaScript:String=7,ffffffaf,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,ff808080,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,ffdfaf87,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,ffffffaf,,,,,,,,,--- -Modelines:Value=9,ff87afdf,,,,,,,,,--- -Modelines:Variable=11,ffdfafdf,,,,,,,,,--- - -[Highlighting ColdFusion - Schema xoria256] -ColdFusion:Anchor Tags=0,ff008000,ffffffff,0,0,,,,,,--- -ColdFusion:Attribute Values=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Brackets=0,ff000080,ffffffff,1,0,,,,,,--- -ColdFusion:CF Comment=8,ffff9900,ff999999,0,0,,,,,,--- -ColdFusion:CF Tags=0,ff800000,ffffffff,0,0,,,,,,--- -ColdFusion:CFX Tags=0,ff008000,ffffffff,0,0,,,,,,--- -ColdFusion:Custom Tags=0,ffcc6666,ffffffff,0,0,,,,,,--- -ColdFusion:HTML Comment=8,ff008000,ff999999,0,0,,,,,,--- -ColdFusion:HTML Entities=0,ff000000,ffffffff,1,0,,,,,,--- -ColdFusion:Image Tags=0,ff800080,ffffffff,0,0,,,,,,--- -ColdFusion:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -ColdFusion:Numbers=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Comment=8,ffff9900,ff999999,0,0,,,,,,--- -ColdFusion:Script Functions=11,,,1,,,,,,,--- -ColdFusion:Script Keywords=0,ff0000cc,ffffffff,1,0,,,,,,--- -ColdFusion:Script Numbers=0,ffff00ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Objects=0,ff0000cc,ffffffff,1,0,,,,,,--- -ColdFusion:Script Operators=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Strings=0,ff008080,ffffffff,0,0,,,,,,--- -ColdFusion:Script Tags=0,ff800000,ffffffff,0,0,,,,,,--- -ColdFusion:Style Properties=0,ff000080,ffffffff,0,0,,,,,,--- -ColdFusion:Style Selectors=0,ffff00ff,ffffffff,0,0,,,,,,--- -ColdFusion:Style Tags=0,ff800080,ffffffff,0,0,,,,,,--- -ColdFusion:Style Values=0,ffff0000,ffffffff,0,0,,,,,,--- -ColdFusion:Table Tags=0,ff008080,ffffffff,0,0,,,,,,--- -ColdFusion:Tags=0,ff000080,ffffffff,0,0,,,,,,--- - -[Highlighting Common Lisp - Schema xoria256] -Common Lisp:BaseN=4,,,,,,,,,,--- -Common Lisp:Brackets=0,ff0000ff,ff00ff00,1,0,,,,,,--- -Common Lisp:Char=6,,,,,,,,,,--- -Common Lisp:Comment=8,,,,,,,,,,--- -Common Lisp:Data=2,,,,,,,,,,--- -Common Lisp:Decimal=3,,,,,,,,,,--- -Common Lisp:Definition=1,ffd22811,,,,,,,,,--- -Common Lisp:Float=5,,,,,,,,,,--- -Common Lisp:Function=11,,,,,,,,,,--- -Common Lisp:Keyword=1,,,,,,,,,,--- -Common Lisp:Modifier=1,ff800000,,,,,,,,,--- -Common Lisp:Normal=0,,,,,,,,,,--- -Common Lisp:Operator=1,ffd22811,,,,,,,,,--- -Common Lisp:Region Marker=12,,,,,,,,,,--- -Common Lisp:String=7,,,,,,,,,,--- -Common Lisp:Variable=1,ffb07e1f,,,,,,,,,--- - -[Highlighting Component-Pascal - Schema xoria256] -Component-Pascal:Attribute=9,,,,,,,,,,--- -Component-Pascal:Builtin=0,,,,,,,,,,--- -Component-Pascal:Char=6,,,,,,,,,,--- -Component-Pascal:CommentMaior=8,,,,,,,,,,--- -Component-Pascal:CommentMinor=8,,,,,,,,,,--- -Component-Pascal:Exit=1,,,,,,,,,,--- -Component-Pascal:ExportFull=9,,,,,,,,,,--- -Component-Pascal:ExportReadOnly=9,,,,,,,,,,--- -Component-Pascal:Float=5,,,,,,,,,,--- -Component-Pascal:Integer=4,,,,,,,,,,--- -Component-Pascal:Keyword=1,,,,,,,,,,--- -Component-Pascal:MemAlloc=1,,,,,,,,,,--- -Component-Pascal:Normal Text=0,,,,,,,,,,--- -Component-Pascal:Operator=0,,,,,,,,,,--- -Component-Pascal:Relation=0,,,,,,,,,,--- -Component-Pascal:SpecialValues=3,,,,,,,,,,--- -Component-Pascal:String=7,,,,,,,,,,--- -Component-Pascal:Type=2,,,,,,,,,,--- - -[Highlighting ConTeXt - Schema xoria256] -ConTeXt:Alert=10,,,,,,,,,,--- -ConTeXt:Block=12,,,,,,,,,,--- -ConTeXt:Brace=6,,,,,,,,,,--- -ConTeXt:Comment=8,,,,,,,,,,--- -ConTeXt:Error=13,,,,,,,,,,--- -ConTeXt:Label Ref=12,,,,,,,,,,--- -ConTeXt:Macro=11,,,,,,,,,,--- -ConTeXt:Math=9,,,,,,,,,,--- -ConTeXt:Normal Text=0,,,,,,,,,,--- -ConTeXt:Section=1,,,,,,,,,,--- -ConTeXt:Verbatim=7,,,,,,,,,,--- - -[Highlighting Crack - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Crack:Annotation=1,,,,,,,,,,--- -Crack:Char=6,,,,,,,,,,--- -Crack:Comment=8,,,,,,,,,,--- -Crack:Data Type=2,,,,,,,,,,--- -Crack:Decimal=3,,,,,,,,,,--- -Crack:Float=5,,,,,,,,,,--- -Crack:Function=11,,,,,,,,,,--- -Crack:Hex=4,,,,,,,,,,--- -Crack:Keyword=1,,,,,,,,,,--- -Crack:Normal Text=0,,,,,,,,,,--- -Crack:Octal=4,,,,,,,,,,--- -Crack:Package=11,,,,,,,,,,--- -Crack:String=7,,,,,,,,,,--- -Crack:Substitution=9,,,,,,,,,,--- -Crack:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting CubeScript - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CubeScript:Brackets=0,,,1,,,,,,,--- -CubeScript:Comment=8,,,,,,,,,,--- -CubeScript:Error=13,,,,,,,,,,--- -CubeScript:Escaped=6,,,,,,,,,,--- -CubeScript:Float=5,,,,,,,,,,--- -CubeScript:Int10=3,,,,,,,,,,--- -CubeScript:IntOther=4,,,,,,,,,,--- -CubeScript:Key=9,,,,,,,,,,--- -CubeScript:Keyword=11,,,,,,,,,,--- -CubeScript:Lookup=2,,,,,,,,,,--- -CubeScript:LookupBrackets=12,,,,,,,,,,--- -CubeScript:Normal=0,,,,,,,,,,--- -CubeScript:Operator=1,,,,,,,,,,--- -CubeScript:String=7,,,,,,,,,,--- -CubeScript:String0=7,ff40ff80,,1,,,,ff3f3f3f,,,--- -CubeScript:String1=7,ff60a0ff,,1,,,,ffdfdfdf,,,--- -CubeScript:String2=7,ffffc040,,1,,,,ff3f3f3f,,,--- -CubeScript:String3=7,ffff4040,,1,,,,ffdfdfdf,,,--- -CubeScript:String4=7,ff808080,,1,,,,ffdfdfdf,,,--- -CubeScript:String5=7,ffa040a0,,1,,,,ffdfdfdf,,,--- -CubeScript:String6=7,ffff8000,,1,,,,ffdfdfdf,,,--- -CubeScript:String7=7,ffffffff,,1,,,,ff3f3f3f,,,--- - -[Highlighting Curry - Schema xoria256] -Curry:Braces=0,,,,,,,,,,--- -Curry:Char=6,,,,,,,,,,--- -Curry:Comment=8,,,,,,,,,,--- -Curry:Currydoc=8,ff008000,ffffffff,,,,,,,,--- -Curry:Decimal=3,,,,,,,,,,--- -Curry:Float=5,,,,,,,,,,--- -Curry:Function=0,,,,,,,,,,--- -Curry:Hex=4,,,,,,,,,,--- -Curry:Infix Application=9,,,,,,,,,,--- -Curry:Keyword=1,,,,,,,,,,--- -Curry:Normal=0,,,,,,,,,,--- -Curry:Octal=4,,,,,,,,,,--- -Curry:Operator=11,,,,,,,,,,--- -Curry:Pragma=9,,,,,,,,,,--- -Curry:Prelude Constructor=1,,,,,,,,,,--- -Curry:Prelude Function=11,,,,,,,,,,--- -Curry:Prelude Type=2,,,,,,,,,,--- -Curry:Signature=9,,,,,,,,,,--- -Curry:Special Symbol=9,,,,,,,,,,--- -Curry:String=7,,,,,,,,,,--- -Curry:String Escape=6,,,,,,,,,,--- -Curry:Syntax Error=13,,,,,,,,,,--- -Curry:Type, Constructor=2,,,,,,,,,,--- - -[Highlighting D - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -D:Attribute=1,ff800080,,,,,,,,,--- -D:BQString=7,ffa100a1,ffff00ff,,,,,,,,--- -D:Binary=4,,,,,,,,,,--- -D:Char=6,,,,,,,,,,--- -D:Comment=8,,,,,,,,,,--- -D:Ddoc=8,ff7f7fff,,,,,,,,,--- -D:DdocCode=0,,,,1,,,,,,--- -D:DdocSection=1,ff7f7fff,,1,,,,,,,--- -D:Declarator=1,ff800000,,,,,,,,,--- -D:Deprecated=1,ff800080,,,,1,,,,,--- -D:Error=13,,,,,,,,,,--- -D:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -D:Expression=1,ff000080,,,,,,,,,--- -D:Float=5,,,,,,,,,,--- -D:Hex=4,,,,,,,,,,--- -D:HexString=7,ffa10022,ffff0055,,,,,,,,--- -D:Integer=3,,,,,,,,,,--- -D:LibrarySymbols=2,,,,1,,,,,,--- -D:Linkage=1,ff808000,,,,,,,,,--- -D:Linkage Type=0,,,1,,,,,,,--- -D:Macro Text=0,ffbf7fff,ffffffff,0,0,,,,,,--- -D:Macros=9,ffbf5fbf,ffffffff,1,0,,,,,,--- -D:Module=1,ff008000,,,,,,,,,--- -D:Module Name=0,ff008000,,,,,,,,,--- -D:Normal Text=0,,,,,,,,,,--- -D:Octal=4,,,,,,,,,,--- -D:Pragma=1,ff00aa00,,,,,,,,,--- -D:Property=2,ff000080,,,,,,,,,--- -D:RawString=7,ffa100a1,ffff00ff,,,,,,,,--- -D:Region Marker=12,,,,,,,,,,--- -D:SpecialTokens=0,ff00aa00,,,,,,,,,--- -D:Statement=1,,,,,,,,,,--- -D:String=7,,,,,,,,,,--- -D:Symbol=0,,,,,,,,,,--- -D:Template=1,ff008000,,,,,,,,,--- -D:Tests=1,ffff00ff,,,,,,,,,--- -D:Type=2,,,,,,,,,,--- -D:UserKeywords=2,,,,1,,,,,,--- -D:Version=1,ff808000,,,,,,,,,--- -D:Version Type=0,,,1,,,,,,,--- - -[Highlighting DTD - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -DTD:Comment=8,,,,,,,,,,--- -DTD:Declaration=2,,,1,,,,,,,--- -DTD:Delimiter=3,,,,,,,,,,--- -DTD:Entity=3,,,,,,,,,,--- -DTD:Keyword=1,,,,,,,,,,--- -DTD:Local=3,,,1,,,,,,,--- -DTD:Name=11,,,,,,,,,,--- -DTD:Normal=0,,,,,,,,,,--- -DTD:Other=0,,,,,,,,,,--- -DTD:Processing Instruction=1,,,,,,,,,,--- -DTD:String=7,,,,,,,,,,--- -DTD:Symbol=5,,,1,,,,,,,--- - -[Highlighting Debian Changelog - Schema xoria256] -Debian Changelog:Bug=2,,,,,,,,,,--- -Debian Changelog:Data=2,,,,,,,,,,--- -Debian Changelog:Email=9,,,,,,,,,,--- -Debian Changelog:Keyword=1,,,,,,,,,,--- -Debian Changelog:Normal Text=0,,,,,,,,,,--- -Debian Changelog:Version=2,,,,,,,,,,--- - -[Highlighting Debian Control - Schema xoria256] -Debian Control:Email=9,,,,,,,,,,--- -Debian Control:Keyword=1,,,,,,,,,,--- -Debian Control:Normal Text=0,,,,,,,,,,--- -Debian Control:Value=2,,,,,,,,,,--- -Debian Control:Variable=9,,,,,,,,,,--- -Debian Control:Version=3,,,,,,,,,,--- - -[Highlighting Diff - Schema xoria256] -Diff:Added line=9,ff0000ff,,,,,,,,,--- -Diff:Changed line (new)=9,ff0000ff,,,,,,,,,--- -Diff:Changed line (old)=7,ffff0000,,,,,,,,,--- -Diff:File=1,,,,,,,,,,--- -Diff:Header=2,,,,,,,,,,--- -Diff:Normal Text=0,,,,,,,,,,--- -Diff:Removed line=7,ffff0000,,,,,,,,,--- - -[Highlighting Django HTML Template - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Django HTML Template:Attribute=9,,,,,,,,,,--- -Django HTML Template:CDATA=4,,,1,,,,,,,--- -Django HTML Template:Comment=8,,,,,,,,,,--- -Django HTML Template:Doctype=2,,,1,,,,,,,--- -Django HTML Template:Element=1,,,,,,,,,,--- -Django HTML Template:EntityRef=3,,,,,,,,,,--- -Django HTML Template:Error=13,,,,,,,,,,--- -Django HTML Template:Mismatched Block Tag=13,,,,,,,,,,--- -Django HTML Template:Normal Text=0,,,,,,,,,,--- -Django HTML Template:PEntityRef=3,,,,,,,,,,--- -Django HTML Template:Processing Instruction=1,,,,,,,,,,--- -Django HTML Template:Template Comment=8,,,,,,,,,,--- -Django HTML Template:Template Filter=9,,,,,,,,,,--- -Django HTML Template:Template String=7,,,,,,,,,,--- -Django HTML Template:Template Tag=11,,,,,,,,,,--- -Django HTML Template:Template Tag Argument=11,,,,,,,,,,--- -Django HTML Template:Template Var=11,,,,,,,,,,--- -Django HTML Template:Value=7,ffaa0000,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Dockerfile - Schema xoria256] -Dockerfile:Comment=21,,,,,,,,,,--- -Dockerfile:Keyword=1,,,,,,,,,,--- -Dockerfile:Normal=0,,,,,,,,,,--- -Dockerfile:String=12,,,,,,,,,,--- - -[Highlighting Doxygen - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- - -[Highlighting DoxygenLua - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- - -[Highlighting E Language - Schema xoria256] -E Language:Action=0,ffff8080,ff00ff00,1,0,,,,,,--- -E Language:Bit=3,,,,,,,,,,--- -E Language:Comment=8,,,,,,,,,,--- -E Language:Data Type=2,,,,,,,,,,--- -E Language:Function=11,,,1,,,,,,,--- -E Language:Integer=3,,,,,,,,,,--- -E Language:Keyword=1,,,,,,,,,,--- -E Language:Normal Text=0,,,,,,,,,,--- -E Language:Operators=0,ff404000,ff00ff00,0,0,,,,,,--- -E Language:OutSide E code=8,,,,,,,,,,--- -E Language:Statement=0,ff8080ff,ff00ff00,1,0,,,,,,--- -E Language:Vector=7,,,,,,,,,,--- - -[Highlighting Eiffel - Schema xoria256] -Eiffel:Assertions=9,,,,,,,,,,--- -Eiffel:Char=6,,,,,,,,,,--- -Eiffel:Comment=8,,,,,,,,,,--- -Eiffel:Decimal=3,,,,,,,,,,--- -Eiffel:Float=5,,,,,,,,,,--- -Eiffel:Keyword=1,,,,,,,,,,--- -Eiffel:Normal Text=0,,,,,,,,,,--- -Eiffel:Predefined entities=9,,,,,,,,,,--- -Eiffel:String=7,,,,,,,,,,--- - -[Highlighting Email - Schema xoria256] -Email:Normal Text=0,,,,,,,,,,--- -Email:base64=12,,,,,,,,,,--- -Email:common=0,ffffd700,,,,,,,,,--- -Email:email=0,ff0000ff,,,,,,,,,--- -Email:indent1=0,ffff0000,,1,,,,,,,--- -Email:indent2=0,ff008000,,1,,,,,,,--- -Email:indent3=0,ff0000ff,,1,,,,,,,--- -Email:indent4=0,ff00ffff,,1,,,,,,,--- -Email:indent5=0,ffff00ff,,1,,,,,,,--- -Email:indent6=0,ffffff00,,1,,,,,,,--- -Email:marker=10,,,,,,,,,,--- -Email:other=0,ffff0000,,,,,,,,,--- -Email:rfc=0,ff006400,,,,,,,,,--- -Email:rfc-main=10,ff006400,,1,,,,,,,--- -Email:sign=8,,,,,,,,,,--- -Email:string=7,,,,,,,,,,--- - -[Highlighting Erlang - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Erlang:Atom=6,,,,,,,,,,--- -Erlang:Comment=8,,,,,,,,,,--- -Erlang:Float=5,,,,,,,,,,--- -Erlang:Function=11,,,,,,,,,,--- -Erlang:Integer=3,,,,,,,,,,--- -Erlang:Keyword=1,,,,,,,,,,--- -Erlang:Normal Text=0,,,,,,,,,,--- -Erlang:Number=4,,,,,,,,,,--- -Erlang:Operator=1,,,,,,,,,,--- -Erlang:Pragma=1,,,,,,,,,,--- -Erlang:Separator=11,,,,,,,,,,--- -Erlang:String=7,,,,,,,,,,--- -Erlang:Variable=2,,,,,,,,,,--- - -[Highlighting Error: /home/mssola/kde/share/apps/katepart/syntax/lilypond.xml - Schema xoria256] -Normal Text=0,,,,,,,,,,--- - -[Highlighting Euphoria - Schema xoria256] -Euphoria:Comment=8,,,,,,,,,,--- -Euphoria:Directive=9,,,,,,,,,,--- -Euphoria:GtkKeyword=1,,,,,,,,,,--- -Euphoria:Keyword=1,,,,,,,,,,--- -Euphoria:Normal Text=0,,,,,,,,,,--- -Euphoria:Number=3,,,,,,,,,,--- -Euphoria:Region Marker=12,,,,,,,,,,--- -Euphoria:String=7,,,,,,,,,,--- -Euphoria:Type=2,,,,,,,,,,--- - -[Highlighting FSharp - Schema xoria256] -FSharp:Binary=4,,,,,,,,,,--- -FSharp:Camlp4 Quotation=7,,,,,,,,,,--- -FSharp:Character=6,,,,,,,,,,--- -FSharp:Comment=8,,,,,,,,,,--- -FSharp:Constructor=0,,,,,,,,,,--- -FSharp:Core Data Type=2,,,,,,,,,,--- -FSharp:Decimal=3,,,,,,,,,,--- -FSharp:Directive=9,,,,,,,,,,--- -FSharp:Escaped characters=6,,,,,,,,,,--- -FSharp:Float=5,,,,,,,,,,--- -FSharp:Hexadecimal=4,,,,,,,,,,--- -FSharp:Identifier=0,,,,,,,,,,--- -FSharp:Keyword=1,,,,,,,,,,--- -FSharp:Module=0,,,,,,,,,,--- -FSharp:Normal Text=0,,,,,,,,,,--- -FSharp:Octal=4,,,,,,,,,,--- -FSharp:Region Marker=1,,,,,,,,,,--- -FSharp:Revised Syntax Keyword=0,,,,,,,,,,--- -FSharp:String=7,,,,,,,,,,--- -FSharp:Symbol=0,,,,,,,,,,--- - -[Highlighting FTL - Schema xoria256] -FTL:Comment=21,,,,,,,,,,--- -FTL:FTLComment=21,ff7777cc,ff00ff00,0,1,,,,,,--- -FTL:FTLIdentifier=29,ff0022bb,ff00ff00,0,0,,,,,,--- -FTL:FTLKeyword=1,ff0000cc,ff00ff00,1,0,,,,,,--- -FTL:FTLMark=29,ff0000cc,ff00ff00,1,1,,,,,,--- -FTL:FTLQuot=29,ffff0044,ff00ff00,0,0,,,,,,--- -FTL:Identifier=29,,,,,,,,,,--- -FTL:Keyword=1,,,,,,,,,,--- -FTL:NormalText=0,,,,,,,,,,--- -FTL:String=12,,,,,,,,,,--- -FTL:Types=16,,,,,,,,,,--- - -[Highlighting Fortran - Schema xoria256] -Fortran:Comment=8,,,,,,,,,,--- -Fortran:Data Type=2,,,,,,,,,,--- -Fortran:Decimal=3,,,,,,,,,,--- -Fortran:Elemental Procedure=1,ff600060,ffffa0ff,1,0,,,,,,--- -Fortran:Float=5,,,,,,,,,,--- -Fortran:IO Function=11,ff006060,ffffffff,0,0,,,,,,--- -Fortran:Inquiry Function=11,ff000060,ffa0a0ff,1,1,,,,,,--- -Fortran:Keyword=1,,,,,,,,,,--- -Fortran:Logical=9,ff800080,ffffa0a0,1,0,,,,,,--- -Fortran:Non elemental subroutine=1,ff600060,ffffa0ff,1,0,,,,,,--- -Fortran:Normal Text=0,,,,,,,,,,--- -Fortran:Operator=1,ff008000,ffff00ff,1,0,,,,,,--- -Fortran:Preprocessor=9,,,,,,,,,,--- -Fortran:String=7,,,,,,,,,,--- -Fortran:Symbol=0,,,,,,,,,,--- -Fortran:Transformational Function=11,ff600060,ffffa0ff,1,0,,,,,,--- - -[Highlighting FreeBASIC - Schema xoria256] -FreeBASIC:Comment=8,,,,,,,,,,--- -FreeBASIC:Constant=0,,,,,,,,,,--- -FreeBASIC:Data Types=2,,,,,,,,,,--- -FreeBASIC:Functions=11,,,,,,,,,,--- -FreeBASIC:Keyword=1,,,,,,,,,,--- -FreeBASIC:Normal Text=0,,,,,,,,,,--- -FreeBASIC:Number=3,,,,,,,,,,--- -FreeBASIC:Preprocessor=0,,,,,,,,,,--- -FreeBASIC:Region Marker=12,,,,,,,,,,--- -FreeBASIC:String=7,,,,,,,,,,--- - -[Highlighting GAP - Schema xoria256] -GAP:Builtin Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -GAP:Commentary=8,ff009900,,,1,,,,,,--- -GAP:Control Statements=1,ffff0900,,,,,,,,,--- -GAP:Function=1,ffff6827,,,,,,,,,--- -GAP:GAP Keywords=1,ffff6827,,,,,,,,,--- -GAP:Incomplete String=6,ffa020f0,,,,,,,,,--- -GAP:Logic Operators=1,ff5127b2,,,,,,,,,--- -GAP:Math Operators=1,ff663333,,,,,,,,,--- -GAP:Normal Text=0,,,,,,,,,,--- -GAP:Number=5,,,,,,,,,,--- -GAP:Operator1=0,ff2313d4,,,,,,,,,--- -GAP:Operator2=0,ff663300,,1,,,,,,,--- -GAP:String=7,,,,,,,,,,--- -GAP:Variable=0,,,,,,,,,,--- - -[Highlighting GCCExtensions - Schema xoria256] -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- - -[Highlighting GDB Backtrace - Schema xoria256] -GDB Backtrace:Crash=13,,,1,,,,,,,--- -GDB Backtrace:File=2,,,,,,,,,,--- -GDB Backtrace:Function=11,,,1,,,,,,,--- -GDB Backtrace:Normal=0,,,,,,,,,,--- -GDB Backtrace:QualifiedIdentifier=9,,,,,,,,,,--- -GDB Backtrace:Thread=4,,,,,,,,,,--- - -[Highlighting GDL - Schema xoria256] -GDL:Char=6,,,,,,,,,,--- -GDL:Comment=8,,,,,,,,,,--- -GDL:Datatype=2,,,,,,,,,,--- -GDL:Float=5,,,,,,,,,,--- -GDL:Integer=3,,,,,,,,,,--- -GDL:Keyword=1,,,,,,,,,,--- -GDL:Normal=0,,,,,,,,,,--- -GDL:String=7,,,,,,,,,,--- -GDL:Value=9,,,,,,,,,,--- - -[Highlighting GLSL - Schema xoria256] -GLSL:Alert=10,,,,,,,,,,--- -GLSL:Comment=8,,,,,,,,,,--- -GLSL:Data Type=2,,,,,,,,,,--- -GLSL:Decimal=3,,,,,,,,,,--- -GLSL:Float=5,,,,,,,,,,--- -GLSL:Function=11,,,0,,,,,,,--- -GLSL:Hex=4,,,,,,,,,,--- -GLSL:Keyword=1,,,,,,,,,,--- -GLSL:Normal Text=0,,,,,,,,,,--- -GLSL:Octal=4,,,,,,,,,,--- -GLSL:Preprocessor=9,,,,,,,,,,--- -GLSL:StdFunction=11,,,1,,,,,,,--- -GLSL:StdVariable=11,,,0,,,,,,,--- -GLSL:Symbol=0,,,,,,,,,,--- -GLSL:Type Qualifier=2,,,,,,,,,,--- - -[Highlighting GNU Assembler - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -GNU Assembler:Binary=4,,,,,,,,,,--- -GNU Assembler:Char=6,,,,,,,,,,--- -GNU Assembler:Comment=8,,,,,,,,,,--- -GNU Assembler:Decimal=3,,,,,,,,,,--- -GNU Assembler:Float=5,,,,,,,,,,--- -GNU Assembler:Hex=4,,,,,,,,,,--- -GNU Assembler:Keyword=1,,,,,,,,,,--- -GNU Assembler:Label=1,,,,,,,,,,--- -GNU Assembler:Normal Text=0,,,,,,,,,,--- -GNU Assembler:Octal=4,,,,,,,,,,--- -GNU Assembler:Preprocessor=9,,,,,,,,,,--- -GNU Assembler:String=7,,,,,,,,,,--- -GNU Assembler:String Char=6,,,,,,,,,,--- -GNU Assembler:Symbol=0,,,,,,,,,,--- - -[Highlighting GNU Gettext - Schema xoria256] -GNU Gettext:Automatic Comment=8,ff0000ff,,,,,,,,,--- -GNU Gettext:Char=6,ffff00ff,,,,,,,,,--- -GNU Gettext:CharPrevious=6,ff00c040,,,1,,,,,,--- -GNU Gettext:Entity=7,ffff0040,,1,,,,,,,--- -GNU Gettext:EntityPrevious=7,ff40c080,,1,1,,,,,,--- -GNU Gettext:Flag=8,ff0000ff,,,,,,,,,--- -GNU Gettext:FlagFuzzy=8,ff800080,,1,,,,,,,--- -GNU Gettext:Index=3,ff0000ff,,,,,,,,,--- -GNU Gettext:IndexPrevious=3,ff000000,,,1,,,,,,--- -GNU Gettext:Keyword=1,ff000000,,,,,,,,,--- -GNU Gettext:KeywordPrevious=1,ff006060,,,1,,,,,,--- -GNU Gettext:Normal Text=0,ff000000,,,,,,,,,--- -GNU Gettext:Reference=8,ff0000ff,,,,,,,,,--- -GNU Gettext:String=7,ffff0000,,,,,,,,,--- -GNU Gettext:StringDiffNew=7,ff0080f8,,,,,,,,,--- -GNU Gettext:StringDiffNewComment=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewPrevious=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewWrap=7,ff0080f8,,,,,,,,,--- -GNU Gettext:StringDiffNewWrapComment=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffNewWrapPrevious=7,ff0080f8,,,1,,,,,,--- -GNU Gettext:StringDiffOld=7,fff00080,,,,,,,,,--- -GNU Gettext:StringDiffOldComment=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldPrevious=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldWrap=7,fff00080,,,,,,,,,--- -GNU Gettext:StringDiffOldWrapComment=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringDiffOldWrapPrevious=7,fff00080,,,1,,,,,,--- -GNU Gettext:StringPrevious=7,ff008080,,,1,,,,,,--- -GNU Gettext:StringTag=7,ffc00000,,1,,,,,,,--- -GNU Gettext:StringTagPrevious=7,ff006060,,1,1,,,,,,--- -GNU Gettext:Translator Comment=8,ff888888,,,,,,,,,--- - -[Highlighting GNU Linker Script - Schema xoria256] -GNU Linker Script:Command=1,,,,,,,,,,--- -GNU Linker Script:Comment=8,,,,,,,,,,--- -GNU Linker Script:Function=11,,,,,,,,,,--- -GNU Linker Script:Keyword=1,,,,,,,,,,--- -GNU Linker Script:Normal Text=0,,,,,,,,,,--- -GNU Linker Script:Number=4,,,,,,,,,,--- -GNU Linker Script:Section Name=6,,,,,,,,,,--- -GNU Linker Script:String=7,,,,,,,,,,--- - -[Highlighting GNU M4 - Schema xoria256] -GNU M4:Builtins=1,,,,,,,,,,--- -GNU M4:Builtins (prefixed with m4_)=1,,,,,,,,,,--- -GNU M4:Commas=6,,,,,,,,,,--- -GNU M4:Comment=8,,,,,,,,,,--- -GNU M4:Int=3,,,,,,,,,,--- -GNU M4:Normal Text=0,,,,,,,,,,--- -GNU M4:Operators=6,,,,,,,,,,--- -GNU M4:Optional builtins=1,,,,,,,,,,--- -GNU M4:Optional builtins (prefixed with m4_)=1,,,,,,,,,,--- -GNU M4:Special arguments to macros=6,,,,,,,,,,--- - -[Highlighting Git Ignore - Schema xoria256] -Git Ignore:Comment=21,,,,,,,,,,--- -Git Ignore:Exclude=12,,,,,,,,,,--- -Git Ignore:Include=10,,,,,,,,,,--- - -[Highlighting Git Rebase - Schema xoria256] -Git Rebase:Comment=8,,,,,,,,,,--- -Git Rebase:Commit=11,,,,,,,,,,--- -Git Rebase:Edit=2,,,,,,,,,,--- -Git Rebase:Exec=9,,,,,,,,,,--- -Git Rebase:Fixup=4,,,,,,,,,,--- -Git Rebase:Normal Text=0,,,,,,,,,,--- -Git Rebase:Pick=1,,,,,,,,,,--- -Git Rebase:Reword=3,,,,,,,,,,--- -Git Rebase:Squash=6,,,,,,,,,,--- -Git Rebase:Summary=7,,,,,,,,,,--- - -[Highlighting Gitolite - Schema xoria256] -Gitolite:Comment (Single)=21,,,,,,,,,,--- -Gitolite:Group=1,,,,,,,,,,--- -Gitolite:Keyword=1,,,,,,,,,,--- -Gitolite:Normal Text=0,,,,,,,,,,--- -Gitolite:Symbol=12,,,,,,,,,,--- - -[Highlighting GlossTex - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -GlossTex:Abbrev=9,,,,,,,,,,--- -GlossTex:Comment=8,,,,,,,,,,--- -GlossTex:Entry=1,ff0000ff,,,,,,,,,--- -GlossTex:Full=7,,,,,,,,,,--- -GlossTex:Label=2,,,,,,,,,,--- -GlossTex:Normal Text=0,,,,,,,,,,--- -GlossTex:Text=6,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -LaTeX:Alert=10,,,,,,,,,,--- -LaTeX:Ampersand=0,ff002793,,1,,,,,,,--- -LaTeX:Bullet=0,ffff00c4,,1,,,,,,,--- -LaTeX:Column Separator=0,ff002793,,,,,,,,,--- -LaTeX:Comment=8,,,,,,,,,,--- -LaTeX:Environment=0,ff0000d0,ffffff90,0,0,,,,,,--- -LaTeX:Error=10,,,,,,,,,,--- -LaTeX:Keyword=0,ff800000,ff60ffff,0,0,,,,,,--- -LaTeX:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -LaTeX:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -LaTeX:Normal Text=0,,,,,,,,,,--- -LaTeX:Option Text=0,,,,,,,,,,--- -LaTeX:Region Marker=12,,,,,,,,,,--- -LaTeX:Structure=0,fff00000,ff80ffd0,0,0,,,,,,--- -LaTeX:Structure Keyword=0,ff800000,ff60ffff,1,0,,,,,,--- -LaTeX:Structure Keyword Mathmode=0,ff606000,ffffd0ff,1,0,,,,,,--- -LaTeX:Structure Math=0,ff00a000,ffff40ff,1,0,,,,,,--- -LaTeX:Structure Text=0,ff000000,ffffffff,1,0,,,,,,--- -LaTeX:Verbatim=0,ffa08000,ff80d0ff,0,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting Gnuplot - Schema xoria256] -Gnuplot:Comment=8,,,,,,,,,,--- -Gnuplot:Data Type=2,,,,,,,,,,--- -Gnuplot:Decimal=3,,,,,,,,,,--- -Gnuplot:FloatFunc=5,,,,,,,,,,--- -Gnuplot:Funktion=9,,,,,,,,,,--- -Gnuplot:Keyword=1,,,,,,,,,,--- -Gnuplot:Normal Text=0,,,,,,,,,,--- -Gnuplot:String=4,,,,,,,,,,--- - -[Highlighting Go - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Go:Builtin Function=11,,,,,,,,,,--- -Go:Char=6,,,,,,,,,,--- -Go:Comment=8,,,,,,,,,,--- -Go:Data Type=2,,,,,,,,,,--- -Go:Decimal=17,,,,,,,,,,--- -Go:Error=13,,,,,,,,,,--- -Go:Float=19,,,,,,,,,,--- -Go:Hex=4,,,,,,,,,,--- -Go:Keyword=1,,,,,,,,,,--- -Go:Normal Text=0,,,,,,,,,,--- -Go:Octal=4,,,,,,,,,,--- -Go:Predeclared Identifier=9,,,,,,,,,,--- -Go:String=7,,,,,,,,,,--- -Go:String Char=6,,,,,,,,,,--- -Go:Symbol=0,,,,,,,,,,--- - -[Highlighting HTML - Schema xoria256] -Alerts:Alert Level 1=10,ffbf0303,ff9c0e0e,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 2=10,ffbf0303,ff9c0e0e,1,,,,fff7e6e6,,,--- -Alerts:Alert Level 3=10,ffbf0303,ff9c0e0e,1,,,,fff7e6e6,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,ffdfaf87,ffffdd00,,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,ff87afdf,ffffffff,,,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ffd0d0d0,ffffffff,,,,,,,,--- -Doxygen:Description=7,ffffffaf,ff9c0e0e,,,,,,,,--- -Doxygen:Dot Graph=8,ff808080,ffc7e2f8,,,,,,,,--- -Doxygen:Entities=9,ffafdf87,ff80ff80,,,,,,,,--- -Doxygen:Formulas=8,ff808080,ffc7e2f8,,,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff808080,ffc7e2f8,,,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Todo=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ff87afdf,ffffffff,0,,,,,,,--- -Doxygen:Word=1,ff87afdf,ffffffff,0,,,,,,,--- -HTML:Attribute=9,ffdfafdf,ff80ff80,,,,,,,,--- -HTML:CDATA=4,ffd0d0d0,ffffdd00,,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,ffd0d0d0,ff00316e,,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,ffd0d0d0,ffffffff,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffffffaf,ff9c0e0e,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,ff87afdf,ffffffff,,,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Haml - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Haml:Access Control=1,ff0000ff,,,,,,,,,--- -Haml:Alert=10,,,,,,,,,,--- -Haml:Attribute Definition=9,,,,,,,,,,--- -Haml:Bin=4,,,,,,,,,,--- -Haml:Blockcomment=8,,,,,,,,,,--- -Haml:Char=6,,,,,,,,,,--- -Haml:Class Variable=9,,,,,,,,,,--- -Haml:Command=7,ffaa3000,,,,,,,,,--- -Haml:Comment=8,,,,,,,,,,--- -Haml:Constant=2,,,,,,,,,,--- -Haml:Constant Value=2,ffbb1188,,,,,,,,,--- -Haml:Data=0,,,,,,,,,,--- -Haml:Dec=3,,,,,,,,,,--- -Haml:Default globals=2,ffc00000,,1,,,,,,,--- -Haml:Definition=1,,,,,,,,,,--- -Haml:Delimiter=6,,,,,,,,,,--- -Haml:Div Class=3,,,,,,,,,,--- -Haml:Div Id=3,,,1,,,,,,,--- -Haml:Doctype=2,,,1,,,,,,,--- -Haml:Element Class=5,,,,,,,,,,--- -Haml:Element Id=5,,,1,,,,,,,--- -Haml:Entity=3,,,,,,,,,,--- -Haml:Error=13,,,,,,,,,,--- -Haml:Expression=9,,,,,,,,,,--- -Haml:Filter=9,,,,,,,,,,--- -Haml:Float=5,,,,,,,,,,--- -Haml:GDL input=9,,,,,,,,,,--- -Haml:Global Constant=2,ffbb1188,,1,,,,,,,--- -Haml:Global Variable=2,ffc00000,,,,,,,,,--- -Haml:Hash=0,,,,,,,,,,--- -Haml:Hex=4,,,,,,,,,,--- -Haml:Instance Variable=9,,,,,,,,,,--- -Haml:Kernel methods=0,ff000080,ffffffff,,,,,,,,--- -Haml:Keyword=1,,,,,,,,,,--- -Haml:Member=0,,,,,,,,,,--- -Haml:Message=0,ff4000a7,,,,,,,,,--- -Haml:Normal Text=0,,,,,,,,,,--- -Haml:Octal=4,,,,,,,,,,--- -Haml:Operator=6,,,,,,,,,,--- -Haml:Pseudo variable=3,,,,,,,,,,--- -Haml:RDoc Value=9,,,,,,,,,,--- -Haml:Raw String=7,ffdd4a4a,ffdd4a4a,,,,,,,,--- -Haml:Region Marker=0,ff0000ff,,,,,,,,,--- -Haml:Regular Expression=9,ff4a5704,,,,,,,,,--- -Haml:Ruby Comment=8,,,,,,,,,,--- -Haml:Ruby Normal Text=0,,,,,,,,,,--- -Haml:String=0,,,,,,,,,,--- -Haml:Substitution=9,,,,,,,,,,--- -Haml:Symbol=2,,,,,,,,,,--- -Haml:Tag=1,,,,,,,,,,--- -Haml:Unquoted String=7,,,,,,,,,,--- - -[Highlighting Hamlet - Schema xoria256] -Hamlet:Assignment=29,,,,,,,,,,--- -Hamlet:Attribute=29,,,,,,,,,,--- -Hamlet:Class=12,ffaa0000,,,,,,,,,--- -Hamlet:Code=1,,,,,,,,,,--- -Hamlet:Element=1,,,,,,,,,,--- -Hamlet:Error=30,,,,,,,,,,--- -Hamlet:Logic=1,,,,,,,,,,--- -Hamlet:Normal Text=0,,,,,,,,,,--- -Hamlet:Value=12,ffaa0000,,,,,,,,,--- -Haskell:C2HS Directive=12,,,,,,,,,,--- -Haskell:Char=10,,,,,,,,,,--- -Haskell:Class Prelude=1,,,,,,,,,,--- -Haskell:Comment=21,,,,,,,,,,--- -Haskell:Data Prelude=1,,,,,,,,,,--- -Haskell:Decimal=17,,,,,,,,,,--- -Haskell:EnumFromTo=29,,,,,,,,,,--- -Haskell:Float=19,,,,,,,,,,--- -Haskell:Function=0,,,,,,,,,,--- -Haskell:Function Infix=29,,,,,,,,,,--- -Haskell:Function Prelude=2,,,,,,,,,,--- -Haskell:Hex=18,,,,,,,,,,--- -Haskell:Keyword=1,,,,,,,,,,--- -Haskell:Normal=0,,,,,,,,,,--- -Haskell:Octal=18,,,,,,,,,,--- -Haskell:Operator=2,,,,,,,,,,--- -Haskell:Pragma=29,,,,,,,,,,--- -Haskell:Signature=29,,,,,,,,,,--- -Haskell:Special=29,,,,,,,,,,--- -Haskell:String=12,,,,,,,,,,--- -Haskell:Type=16,,,,,,,,,,--- -Haskell:Type Prelude=16,,,,,,,,,,--- - -[Highlighting Haskell - Schema xoria256] -Hamlet:Assignment=29,,,,,,,,,,--- -Hamlet:Attribute=29,,,,,,,,,,--- -Hamlet:Class=12,ffaa0000,,,,,,,,,--- -Hamlet:Code=1,,,,,,,,,,--- -Hamlet:Element=1,,,,,,,,,,--- -Hamlet:Error=30,,,,,,,,,,--- -Hamlet:Logic=1,,,,,,,,,,--- -Hamlet:Normal Text=0,,,,,,,,,,--- -Hamlet:Value=12,ffaa0000,,,,,,,,,--- -Haskell:C2HS Directive=7,,,,,,,,,,--- -Haskell:Char=6,,,,,,,,,,--- -Haskell:Class Prelude=1,,,,,,,,,,--- -Haskell:Comment=8,,,,,,,,,,--- -Haskell:Data Prelude=1,,,,,,,,,,--- -Haskell:Decimal=3,,,,,,,,,,--- -Haskell:EnumFromTo=9,,,,,,,,,,--- -Haskell:Float=5,,,,,,,,,,--- -Haskell:Function=0,,,,,,,,,,--- -Haskell:Function Infix=9,,,,,,,,,,--- -Haskell:Function Prelude=11,,,,,,,,,,--- -Haskell:Hex=18,,,,,,,,,,--- -Haskell:Keyword=1,,,,,,,,,,--- -Haskell:Normal=0,,,,,,,,,,--- -Haskell:Octal=18,,,,,,,,,,--- -Haskell:Operator=11,,,,,,,,,,--- -Haskell:Pragma=9,,,,,,,,,,--- -Haskell:Signature=9,,,,,,,,,,--- -Haskell:Special=9,,,,,,,,,,--- -Haskell:String=7,,,,,,,,,,--- -Haskell:Type=2,,,,,,,,,,--- -Haskell:Type Prelude=2,,,,,,,,,,--- - -[Highlighting Haxe - Schema xoria256] -Haxe:Comment=8,,,,,,,,,,--- -Haxe:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -Haxe:Float=5,,,,,,,,,,--- -Haxe:Hex=4,,,,,,,,,,--- -Haxe:Integer=3,,,,,,,,,,--- -Haxe:Keyword=1,,,,,,,,,,--- -Haxe:Module=1,ff0000ff,ffffffff,,,,,,,,--- -Haxe:Module Name=0,ff0000ff,ffffffff,,,,,,,,--- -Haxe:Normal Text=0,,,,,,,,,,--- -Haxe:Preprocessor=9,,,,,,,,,,--- -Haxe:RawString=7,,,,,,,,,,--- -Haxe:String=7,,,,,,,,,,--- -Haxe:Type=2,,,,,,,,,,--- - -[Highlighting Hunspell Affix File - Schema xoria256] -Alerts:Alert Level 1=28,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=28,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=28,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Hunspell Affix File:Affix=12,,,,,,,,,,--- -Hunspell Affix File:Characters=10,,,,,,,,,,--- -Hunspell Affix File:Choice=16,,,,,,,,,,--- -Hunspell Affix File:Comment=21,,,,,,,,,,--- -Hunspell Affix File:Flags=10,,,,,,,,,,--- -Hunspell Affix File:Keyword=1,,,,,,,,,,--- -Hunspell Affix File:Number=17,,,,,,,,,,--- -Hunspell Affix File:Pattern=29,,,,,,,,,,--- -Hunspell Affix File:Skipped parameter=1,,,,,,,,,,--- -Hunspell Affix File:String=12,,,,,,,,,,--- -Hunspell Affix File:Stripping=12,,,,,,,,,,--- -Hunspell Affix File:Undefined=0,,,,,,,,,,--- - -[Highlighting Hunspell Dictionary File - Schema xoria256] -Alerts:Alert Level 1=28,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=28,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=28,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Hunspell Dictionary File:Comment=21,,,,,,,,,,--- -Hunspell Dictionary File:Encoding=16,,,,,,,,,,--- -Hunspell Dictionary File:Flags=10,,,,,,,,,,--- -Hunspell Dictionary File:Keyword=1,,,,,,,,,,--- -Hunspell Dictionary File:Number=17,,,,,,,,,,--- -Hunspell Dictionary File:String=12,,,,,,,,,,--- -Hunspell Dictionary File:Undefined=0,,,,,,,,,,--- - -[Highlighting Hunspell Thesaurus File - Schema xoria256] -Hunspell Thesaurus File:Encoding=16,,,,,,,,,,--- -Hunspell Thesaurus File:Entry=2,,,,,,,,,,--- -Hunspell Thesaurus File:Hint=29,,,,,,,,,,--- -Hunspell Thesaurus File:Keyword=1,,,,,,,,,,--- -Hunspell Thesaurus File:Number=17,,,,,,,,,,--- -Hunspell Thesaurus File:String=12,,,,,,,,,,--- -Hunspell Thesaurus File:Undefined=0,,,,,,,,,,--- - -[Highlighting Hunspell Thesaurus Index File - Schema xoria256] -Hunspell Thesaurus Index File:Encoding=16,,,,,,,,,,--- -Hunspell Thesaurus Index File:Entry=2,,,,,,,,,,--- -Hunspell Thesaurus Index File:Keyword=1,,,,,,,,,,--- -Hunspell Thesaurus Index File:Number=17,,,,,,,,,,--- -Hunspell Thesaurus Index File:Undefined=0,,,,,,,,,,--- - -[Highlighting IDL - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -IDL:Alert=10,,,,,,,,,,--- -IDL:Char=6,,,,,,,,,,--- -IDL:Comment=8,,,,,,,,,,--- -IDL:Data Type=2,,,,,,,,,,--- -IDL:Decimal=3,,,,,,,,,,--- -IDL:Float=5,,,,,,,,,,--- -IDL:Hex=4,,,,,,,,,,--- -IDL:Keyword=1,,,,,,,,,,--- -IDL:Normal Text=0,,,,,,,,,,--- -IDL:Octal=4,,,,,,,,,,--- -IDL:Prep. Lib=9,,,,,,,,,,--- -IDL:Preprocessor=9,,,,,,,,,,--- -IDL:String=7,,,,,,,,,,--- -IDL:String Char=6,,,,,,,,,,--- -IDL:Symbol=0,,,,,,,,,,--- - -[Highlighting ILERPG - Schema xoria256] -ILERPG:Alert=10,,,,,,,,,,--- -ILERPG:Base-N=4,,,,,,,,,,--- -ILERPG:Biff=1,,,,,,,,,,--- -ILERPG:BoldComment=0,ffcd853f,ff808080,1,1,,,,,,--- -ILERPG:Char=6,,,,,,,,,,--- -ILERPG:Comment=8,,,,,,,,,,--- -ILERPG:Constant=0,ffcc2222,ff000000,0,0,,,,,,--- -ILERPG:ConstantChar=0,ffdd0022,ff000000,0,0,,,,,,--- -ILERPG:Decimal=3,,,,,,,,,,--- -ILERPG:Directive=9,,,,,,,,,,--- -ILERPG:DivideComment=8,,,1,,,,,,,--- -ILERPG:Fill=0,ffff6347,ff000000,0,0,,,,,,--- -ILERPG:Float=5,,,,,,,,,,--- -ILERPG:Hex=4,,,,,,,,,,--- -ILERPG:Indicator=0,ffcc0000,ff000000,0,0,,,,,,--- -ILERPG:Keyword=1,,,,,,,,,,--- -ILERPG:Normal Text=0,,,,,,,,,,--- -ILERPG:Octal=4,,,,,,,,,,--- -ILERPG:RegExpr=4,,,,,,,,,,--- -ILERPG:Reserved=0,ffbb1133,ff000000,0,0,,,,,,--- -ILERPG:Symbol=0,,,,,,,,,,--- - -[Highlighting INI Files - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -INI Files:Assignment=9,,,,,,,,,,--- -INI Files:Comment=8,,,,,,,,,,--- -INI Files:Float=5,,,,,,,,,,--- -INI Files:Int=3,,,,,,,,,,--- -INI Files:Keyword=1,,,,,,,,,,--- -INI Files:Normal Text=2,,,,,,,,,,--- -INI Files:Section=1,,,,,,,,,,--- -INI Files:Value=7,,,,,,,,,,--- - -[Highlighting ISO C++ - Schema xoria256] -Alerts:Alert Level 1=28,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=28,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=28,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=21,,,,,,,,,,--- -Doxygen:Comment=21,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=12,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=29,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=21,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=29,,,,,,,,,,--- -Doxygen:Message Sequence Chart=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=25,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=16,,,,,,,,,,--- -Doxygen:Verbatim=21,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=29,,,,1,,,,,,--- -GCCExtensions:GNU Functions=29,,,,,,,,,,--- -GCCExtensions:GNU Macros=29,,,,,,,,,,--- -GCCExtensions:GNU Types=29,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Modelines:Comment=21,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=17,,,,,,,,,,--- -Modelines:Option OFF=29,,,,,,,,,,--- -Modelines:Option ON=29,,,,,,,,,,--- -Modelines:String=12,,,,,,,,,,--- -Modelines:Value=29,,,,,,,,,,--- -Modelines:Variable=2,,,,,,,,,,--- - -[Highlighting Inform - Schema xoria256] -Inform:Actions=2,ffe06060,ff400000,0,0,,,,,,--- -Inform:Comment=8,ff707070,ffffffff,0,1,,,,,,--- -Inform:Function=11,,,,,,,,,,--- -Inform:Keyword=1,,,,,,,,,,--- -Inform:Normal Text=0,,,,,,,,,,--- -Inform:Number=3,ff5050c0,ff000000,0,0,,,,,,--- -Inform:OpCode=3,ff3015f0,ff000000,1,0,,,,,,--- -Inform:Operator=4,ffa01060,ff400040,0,0,,,,,,--- -Inform:Pragma=9,ff109010,ff400000,1,0,,,,,,--- -Inform:PredefFunction=11,,,,,,,,,,--- -Inform:String=7,ff007000,ff007000,0,0,,,,,,--- -Inform:Values=4,ff7020f0,ff400000,1,0,,,,,,--- -Inform:Word=7,ff007000,ff007000,0,1,,,,,,--- - -[Highlighting Intel x86 (FASM) - Schema xoria256] -Intel x86 (FASM):BaseN=4,,,,,,,,,,--- -Intel x86 (FASM):Char=6,,,,,,,,,,--- -Intel x86 (FASM):Comment=8,,,,,,,,,,--- -Intel x86 (FASM):Data=2,,,,,,,,,,--- -Intel x86 (FASM):Float=5,,,,,,,,,,--- -Intel x86 (FASM):Instructions=1,,,,,,,,,,--- -Intel x86 (FASM):Label=11,,,,,,,,,,--- -Intel x86 (FASM):Normal Text=0,,,,,,,,,,--- -Intel x86 (FASM):Number=3,,,,,,,,,,--- -Intel x86 (FASM):Preprocessor=9,,,,,,,,,,--- -Intel x86 (FASM):Registers=1,,,,,,,,,,--- -Intel x86 (FASM):String=7,,,,,,,,,,--- - -[Highlighting Intel x86 (NASM) - Schema xoria256] -Intel x86 (NASM):BaseN=4,,,,,,,,,,--- -Intel x86 (NASM):Char=6,,,,,,,,,,--- -Intel x86 (NASM):Comment=8,,,,,,,,,,--- -Intel x86 (NASM):Data=2,,,,,,,,,,--- -Intel x86 (NASM):Float=5,,,,,,,,,,--- -Intel x86 (NASM):Instructions=1,,,,,,,,,,--- -Intel x86 (NASM):Label=11,,,,,,,,,,--- -Intel x86 (NASM):NASM Keywords=1,,,,,,,,,,--- -Intel x86 (NASM):Normal Text=0,,,,,,,,,,--- -Intel x86 (NASM):Number=3,,,,,,,,,,--- -Intel x86 (NASM):Preprocessor=9,,,,,,,,,,--- -Intel x86 (NASM):Registers=1,,,,,,,,,,--- -Intel x86 (NASM):String=7,,,,,,,,,,--- - -[Highlighting J - Schema xoria256] -J:Adverb=1,ffdd4444,,,,,,,,,--- -J:Comment=21,,,,,,,,,,--- -J:Conjunction=1,ffdd9900,,,,,,,,,--- -J:Control=1,ffff0000,,0,,,,,,,--- -J:Copulae Global=1,ffa52a2a,,,,,,,,,--- -J:Copulae Local=1,ffa020f0,,0,,,,,,,--- -J:ExpArg=1,ffa52a2a,,,1,,,,,,--- -J:Noun=1,ff0000ff,,1,,,,,,,--- -J:Number=17,ffa020f0,,,,,,,,,--- -J:Parens=25,ff000000,,,,,,,,,--- -J:Sentence=0,,,,,,,,,,--- -J:String=12,ff0000ff,,,,,,,,,--- -J:Verb=1,ff009966,,,,,,,,,--- - -[Highlighting JSON - Schema xoria256] -JSON:Style_Decimal=3,ffdfaf87,,,,,,,,,--- -JSON:Style_Error=13,,,,,,,,,,--- -JSON:Style_Float=5,ffdfaf87,,,,,,,,,--- -JSON:Style_Keyword=1,,,,,,,,,,--- -JSON:Style_Normal=0,ffd0d0d0,,,,,,,,,--- -JSON:Style_Seperator_Array=9,ffdfaf87,ffeeeeee,,,,,,,,--- -JSON:Style_Seperator_Pair=11,ffd0d0d0,ffeeeeee,,,,,,,,--- -JSON:Style_String_Key=2,ff87afdf,,,,,,,,,--- -JSON:Style_String_Key_Char=6,ff87afdf,,,,,,,,,--- -JSON:Style_String_Value=7,ffffffaf,,,,,,,,,--- -JSON:Style_String_Value_Char=6,ffffffaf,,,,,,,,,--- - -[Highlighting JSP - Schema xoria256] -JSP:Char=6,,,,,,,,,,--- -JSP:Comment=8,,,,,,,,,,--- -JSP:Decimal=3,,,,,,,,,,--- -JSP:Float=5,,,,,,,,,,--- -JSP:Hex=4,,,,,,,,,,--- -JSP:Html Comment=8,,,,,,,,,,--- -JSP:Identifier=9,,,,,,,,,,--- -JSP:Java 1.4.2 Classes=0,ff0095ff,ffffffff,1,0,,,,,,--- -JSP:Java Comment=8,,,,,,,,,,--- -JSP:Jsp Comment=8,,,,,,,,,,--- -JSP:Jsp Directive=0,ff0000ff,ff00ff00,1,1,,,,,,--- -JSP:Jsp Expression=0,ff000000,ffffffff,1,0,,,,,,--- -JSP:Jsp Param Name=9,,,,,,,,,,--- -JSP:Jsp Param Value=7,,,,,,,,,,--- -JSP:Jsp Scriptlet=0,ff000000,ffffffff,1,0,,,,,,--- -JSP:Keyword=1,,,,,,,,,,--- -JSP:Normal Text=0,,,,,,,,,,--- -JSP:Octal=4,,,,,,,,,,--- -JSP:String=7,,,,,,,,,,--- -JSP:String Char=6,,,,,,,,,,--- -JSP:Symbol=0,,,,,,,,,,--- -JSP:Types=2,,,,,,,,,,--- - -[Highlighting Jam - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ff880088,,,,,,,,,--- -Bash:Command=1,ffcc00cc,,,,,,,,,--- -Bash:Comment=8,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ff330033,,,,,,,,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff223388,,,,,,,,,--- -Bash:String DoubleQ=7,,,,,,,,,,--- -Bash:String Escape=2,,,,,,,,,,--- -Bash:String SingleQ=7,,,,,,,,,,--- -Bash:String Transl.=7,,,,,,,,,,--- -Bash:Variable=9,,,,,,,,,,--- -Jam:Action=0,,,,,,,,,,--- -Jam:ActionText=0,,,,,,,,,,--- -Jam:Alert=10,,,,,,,,,,--- -Jam:Comment=8,,,,,,,,,,--- -Jam:CommentTitle=8,ffff8c00,,1,,,,,,,--- -Jam:Error=13,,,,,,,,,,--- -Jam:EscapeSeq=7,ff800080,,1,,,,,,,--- -Jam:Keyword=1,,,1,,,,,,,--- -Jam:Normal=0,,,,,,,,,,--- -Jam:Operator=0,,,1,,,,,,,--- -Jam:Rule=11,ff000000,,,,,,,,,--- -Jam:String=7,ffff0000,,,,,,,,,--- -Jam:VarAssign=0,ff006400,,,,,,,,,--- -Jam:Variable=0,ff006400,,,,,,,,,--- -Jam:VariableAttribute=0,ff0000ff,,,,,,,,,--- -Jam:VariableDelimiter=0,ff0000ff,,,,,,,,,--- -Jam:Varname=0,ff006400,,,1,,,,,,--- -Jam:actionAttribute=0,,,,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Java - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffe85848,,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffca9219,,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,ffdfafdf,,1,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -Java:Annotation=11,ffffffaf,,,,,,,,,--- -Java:Char=6,ffffffaf,,,,,,,,,--- -Java:Comment=8,ff808080,,,,,,,,,--- -Java:Data Type=2,ffafafdf,,,,,,,,,--- -Java:Decimal=3,ffdfaf87,,,,,,,,,--- -Java:Float=5,ffdfaf87,,,,,,,,,--- -Java:Function=11,ffd0d0d0,,,,,,,,,--- -Java:Hex=4,ffdfaf87,,,,,,,,,--- -Java:Imports=1,ffd0d0d0,ffffffff,0,0,,,,,,--- -Java:Java15=0,ffd0d0d0,ffffffff,0,0,,,,,,--- -Java:Keyword=1,ff87afdf,,,,,,,,,--- -Java:Normal Text=0,ffd0d0d0,,,,,,,,,--- -Java:Octal=4,ffdfaf87,,,,,,,,,--- -Java:PrintfString=7,ffffffaf,,,,,,,,,--- -Java:StaticImports=1,ffd0d0d0,ffffffff,0,0,,,,,,--- -Java:String=7,ffffffaf,,,,,,,,,--- -Java:String Char=6,ffffffaf,,,,,,,,,--- -Java:Symbol=0,ffd0d0d0,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff87afdf,ffffffff,0,0,,,,,,--- -Javadoc:InlineTag=1,ff87afdf,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff808080,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:JavadocParam=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Normal Text=0,ff808080,,,,,,,,,--- -Javadoc:SeeTag=1,ff87afdf,ffffffff,0,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting JavaScript - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting JavaScript/PHP - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript/PHP:Char=6,,,,,,,,,,--- -JavaScript/PHP:Comment=8,,,,,,,,,,--- -JavaScript/PHP:Decimal=3,,,,,,,,,,--- -JavaScript/PHP:Float=5,,,,,,,,,,--- -JavaScript/PHP:Function=11,,,,,,,,,,--- -JavaScript/PHP:Hex=4,,,,,,,,,,--- -JavaScript/PHP:JSON=2,,,,,,,,,,--- -JavaScript/PHP:Keyword=1,,,,,,,,,,--- -JavaScript/PHP:Normal Text=0,,,,,,,,,,--- -JavaScript/PHP:Object Member=11,,,,,,,,,,--- -JavaScript/PHP:Objects=9,,,,,,,,,,--- -JavaScript/PHP:Octal=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Character Class=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript/PHP:Region Marker=12,,,,,,,,,,--- -JavaScript/PHP:Regular Expression=9,,,,,,,,,,--- -JavaScript/PHP:Reserved=1,,,,1,,,,,,--- -JavaScript/PHP:String=7,,,,,,,,,,--- -JavaScript/PHP:Symbol=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting JavaScript/PlasmaDesktop - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Javadoc - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=8,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=8,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Jira - Schema xoria256] -Alerts:Alert Level 1=28,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=28,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=28,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ff880088,,,,,,,,,--- -Bash:Command=1,ffcc00cc,,,,,,,,,--- -Bash:Comment=21,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=30,,,,,,,,,,--- -Bash:Escape=16,,,,,,,,,,--- -Bash:Expression=29,,,,,,,,,,--- -Bash:Function=2,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ff330033,,,,,,,,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff223388,,,,,,,,,--- -Bash:String DoubleQ=12,,,,,,,,,,--- -Bash:String Escape=16,,,,,,,,,,--- -Bash:String SingleQ=12,,,,,,,,,,--- -Bash:String Transl.=12,,,,,,,,,,--- -Bash:Variable=29,,,,,,,,,,--- -C#:Char=10,,,,,,,,,,--- -C#:Comment=21,,,,,,,,,,--- -C#:Data Type=16,,,,,,,,,,--- -C#:Decimal=17,,,,,,,,,,--- -C#:Float=19,,,,,,,,,,--- -C#:Function=2,,,,,,,,,,--- -C#:Hex=18,,,,,,,,,,--- -C#:Keyword=1,,,,,,,,,,--- -C#:Normal Text=0,,,,,,,,,,--- -C#:Octal=18,,,,,,,,,,--- -C#:String=12,,,,,,,,,,--- -C#:String Char=10,,,,,,,,,,--- -C#:Symbol=0,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -CSS:At Rule=17,,,,,,,,,,--- -CSS:Comment=21,,,,,,,,,,--- -CSS:Error=30,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=17,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=25,,,,,,,,,,--- -CSS:Selector Attr=10,,,,,,,,,,--- -CSS:Selector Class=19,,,,,,,,,,--- -CSS:Selector Id=19,,,1,,,,,,,--- -CSS:Selector Pseudo=17,,,,,,,,,,--- -CSS:String=12,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=16,,,,,,,,,,--- -ColdFusion:Anchor Tags=0,ff008000,ffffffff,0,0,,,,,,--- -ColdFusion:Attribute Values=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Brackets=0,ff000080,ffffffff,1,0,,,,,,--- -ColdFusion:CF Comment=21,ffff9900,ff999999,0,0,,,,,,--- -ColdFusion:CF Tags=0,ff800000,ffffffff,0,0,,,,,,--- -ColdFusion:CFX Tags=0,ff008000,ffffffff,0,0,,,,,,--- -ColdFusion:Custom Tags=0,ffcc6666,ffffffff,0,0,,,,,,--- -ColdFusion:HTML Comment=21,ff008000,ff999999,0,0,,,,,,--- -ColdFusion:HTML Entities=0,ff000000,ffffffff,1,0,,,,,,--- -ColdFusion:Image Tags=0,ff800080,ffffffff,0,0,,,,,,--- -ColdFusion:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -ColdFusion:Numbers=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Comment=21,ffff9900,ff999999,0,0,,,,,,--- -ColdFusion:Script Functions=2,,,1,,,,,,,--- -ColdFusion:Script Keywords=0,ff0000cc,ffffffff,1,0,,,,,,--- -ColdFusion:Script Numbers=0,ffff00ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Objects=0,ff0000cc,ffffffff,1,0,,,,,,--- -ColdFusion:Script Operators=0,ff0000ff,ffffffff,0,0,,,,,,--- -ColdFusion:Script Strings=0,ff008080,ffffffff,0,0,,,,,,--- -ColdFusion:Script Tags=0,ff800000,ffffffff,0,0,,,,,,--- -ColdFusion:Style Properties=0,ff000080,ffffffff,0,0,,,,,,--- -ColdFusion:Style Selectors=0,ffff00ff,ffffffff,0,0,,,,,,--- -ColdFusion:Style Tags=0,ff800080,ffffffff,0,0,,,,,,--- -ColdFusion:Style Values=0,ffff0000,ffffffff,0,0,,,,,,--- -ColdFusion:Table Tags=0,ff008080,ffffffff,0,0,,,,,,--- -ColdFusion:Tags=0,ff000080,ffffffff,0,0,,,,,,--- -Diff:Added line=29,ff0000ff,,,,,,,,,--- -Diff:Changed line (new)=29,ff0000ff,,,,,,,,,--- -Diff:Changed line (old)=12,ffff0000,,,,,,,,,--- -Diff:File=1,,,,,,,,,,--- -Diff:Header=16,,,,,,,,,,--- -Diff:Normal Text=0,,,,,,,,,,--- -Diff:Removed line=12,ffff0000,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=21,,,,,,,,,,--- -Doxygen:Comment=21,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=12,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=29,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=21,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=29,,,,,,,,,,--- -Doxygen:Message Sequence Chart=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=25,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=16,,,,,,,,,,--- -Doxygen:Verbatim=21,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Erlang:Atom=10,,,,,,,,,,--- -Erlang:Comment=21,,,,,,,,,,--- -Erlang:Float=19,,,,,,,,,,--- -Erlang:Function=2,,,,,,,,,,--- -Erlang:Integer=17,,,,,,,,,,--- -Erlang:Keyword=1,,,,,,,,,,--- -Erlang:Normal Text=0,,,,,,,,,,--- -Erlang:Number=18,,,,,,,,,,--- -Erlang:Operator=1,,,,,,,,,,--- -Erlang:Pragma=1,,,,,,,,,,--- -Erlang:Separator=2,,,,,,,,,,--- -Erlang:String=12,,,,,,,,,,--- -Erlang:Variable=16,,,,,,,,,,--- -GCCExtensions:GNU Extensions=29,,,,1,,,,,,--- -GCCExtensions:GNU Functions=29,,,,,,,,,,--- -GCCExtensions:GNU Macros=29,,,,,,,,,,--- -GCCExtensions:GNU Types=29,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -HTML:Attribute=29,,,,,,,,,,--- -HTML:CDATA=18,,,1,,,,,,,--- -HTML:Comment=21,,,,,,,,,,--- -HTML:Doctype=16,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=17,,,,,,,,,,--- -HTML:Error=30,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=17,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=12,ffaa0000,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Java:Annotation=2,,,,,,,,,,--- -Java:Char=10,,,,,,,,,,--- -Java:Comment=21,,,,,,,,,,--- -Java:Data Type=16,,,,,,,,,,--- -Java:Decimal=17,,,,,,,,,,--- -Java:Float=19,,,,,,,,,,--- -Java:Function=2,,,,,,,,,,--- -Java:Hex=18,,,,,,,,,,--- -Java:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -Java:Java15=0,ff0095ff,ffffffff,1,0,,,,,,--- -Java:Keyword=1,,,,,,,,,,--- -Java:Normal Text=0,,,,,,,,,,--- -Java:Octal=18,,,,,,,,,,--- -Java:PrintfString=12,,,,,,,,,,--- -Java:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -Java:String=12,,,,,,,,,,--- -Java:String Char=10,,,,,,,,,,--- -Java:Symbol=0,,,,,,,,,,--- -JavaScript:Char=10,,,,,,,,,,--- -JavaScript:Comment=21,,,,,,,,,,--- -JavaScript:Decimal=17,,,,,,,,,,--- -JavaScript:Float=19,,,,,,,,,,--- -JavaScript:Function=2,,,,,,,,,,--- -JavaScript:Hex=18,,,,,,,,,,--- -JavaScript:JSON=16,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=2,,,,,,,,,,--- -JavaScript:Objects=29,,,,,,,,,,--- -JavaScript:Octal=18,,,,,,,,,,--- -JavaScript:Pattern Character Class=18,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=19,,,,,,,,,,--- -JavaScript:Region Marker=25,,,,,,,,,,--- -JavaScript:Regular Expression=29,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=12,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff808080,ffffffff,1,0,,,,,,--- -Javadoc:InlineTag=1,ff808080,ffffffff,0,0,,,,,,--- -Javadoc:Javadoc=21,ff008000,ffffffff,,,,,,,,--- -Javadoc:JavadocFS=21,ff008000,ffffffff,1,0,,,,,,--- -Javadoc:JavadocParam=1,ff008080,ffffffff,0,1,,,,,,--- -Javadoc:Normal Text=0,,,,,,,,,,--- -Javadoc:SeeTag=1,ff008080,ffffffff,0,1,,,,,,--- -Jira:Aqua=0,ff00ffff,,,,,,,,,--- -Jira:AttributeKeyword=29,,,,,,,,,,--- -Jira:AttributeValue=12,ffaa0000,,,,,,,,,--- -Jira:Blue=0,ff0000ff,,,,,,,,,--- -Jira:Bold=0,,,1,,,,,,,--- -Jira:EscapeSequence=10,,,,,,,,,,--- -Jira:Fuchsia=0,ffff00ff,,,,,,,,,--- -Jira:Gray=0,ff808080,,,,,,,,,--- -Jira:Green=0,ff008000,,,,,,,,,--- -Jira:Header=1,,,,,,,,,,--- -Jira:Italic=0,,,,1,,,,,,--- -Jira:Keyword=1,,,,,,,,,,--- -Jira:Lime=0,ff00ff00,,,,,,,,,--- -Jira:Maroon=0,ff800000,,,,,,,,,--- -Jira:Navy=0,ff000080,,,,,,,,,--- -Jira:Normal=0,,,,,,,,,,--- -Jira:Olive=0,ff808000,,,,,,,,,--- -Jira:Purple=0,ff800080,,,,,,,,,--- -Jira:Red=0,ffff0000,,,,,,,,,--- -Jira:Silver=0,ffc0c0c0,,,,,,,,,--- -Jira:Special Character=3,,,1,,,,,,,--- -Jira:Stroked Out=0,,,,,1,,,,,--- -Jira:Teal=0,ff008080,,,,,,,,,--- -Jira:Underlined=0,,,,,,,,,,--- -Jira:Yellow=0,ffffff00,,,,,,,,,--- -Modelines:Comment=21,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=17,,,,,,,,,,--- -Modelines:Option OFF=29,,,,,,,,,,--- -Modelines:Option ON=29,,,,,,,,,,--- -Modelines:String=12,,,,,,,,,,--- -Modelines:Value=29,,,,,,,,,,--- -Modelines:Variable=2,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=21,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=17,,,,,,,,,,--- -PHP/PHP:Error=30,,,,,,,,,,--- -PHP/PHP:Float=19,,,,,,,,,,--- -PHP/PHP:Function=2,,,,,,,,,,--- -PHP/PHP:HTML Comment=21,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=18,,,,,,,,,,--- -PHP/PHP:Identifier=29,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,,,,,,,,,,--- -PHP/PHP:Octal=18,,,,,,,,,,--- -PHP/PHP:Other=29,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=2,,,,,,,,,,--- -PHP/PHP:String=12,,,,,,,,,,--- -PHP/PHP:Types=16,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -Pascal:Alert=28,,,,,,,,,,--- -Pascal:Comment=21,,,,,,,,,,--- -Pascal:Directive=29,,,,,,,,,,--- -Pascal:Hex=18,,,,,,,,,,--- -Pascal:ISO/Delphi Extended=1,ff000080,,,,,,,,,--- -Pascal:Keyword=1,,,,,,,,,,--- -Pascal:Normal Text=0,,,,,,,,,,--- -Pascal:Number=17,,,,,,,,,,--- -Pascal:String=12,,,,,,,,,,--- -Pascal:Type=16,,,,,,,,,,--- -Perl:Bin=18,,,,,,,,,,--- -Perl:Comment=21,,,,,,,,,,--- -Perl:Data=0,,,,,,,,,,--- -Perl:Data Type=16,,,,,,,,,,--- -Perl:Decimal=17,,,,,,,,,,--- -Perl:Float=19,,,,,,,,,,--- -Perl:Function=2,,,,,,,,,,--- -Perl:Hex=18,,,,,,,,,,--- -Perl:Keyword=1,,,,,,,,,,--- -Perl:Normal Text=0,,,,,,,,,,--- -Perl:Nothing=21,,,,,,,,,,--- -Perl:Octal=18,,,,,,,,,,--- -Perl:Operator=1,ff008000,,,,,,,,,--- -Perl:Pattern=29,,,,,,,,,,--- -Perl:Pattern Character Class=18,,,,,,,,,,--- -Perl:Pattern Internal Operator=10,,,,,,,,,,--- -Perl:Pod=21,,,,,,,,,,--- -Perl:Pragma=1,,,,,,,,,,--- -Perl:Special Variable=16,ffc00000,ffc00000,0,0,,,,,,--- -Perl:String=12,ffff6c6c,ffff6c6c,0,0,,,,,,--- -Perl:String (interpolated)=12,,,,,,,,,,--- -Perl:String Special Character=10,,,,,,,,,,--- -Python:Builtin Function=16,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=21,,,,,,,,,,--- -Python:Complex=29,,,,,,,,,,--- -Python:Decorator=29,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=29,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=29,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=19,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=18,,,,,,,,,,--- -Python:Int=17,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=18,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=29,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=10,,,,,,,,,,--- -Python:Raw String=12,,,,,,,,,,--- -Python:Special Variable=29,,,,,,,,,,--- -Python:String=12,,,,,,,,,,--- -Python:String Char=10,,,,,,,,,,--- -Python:String Substitution=29,ff0057ae,ff0057ae,,,,,,,,--- -Ruby:Access Control=1,ff0000ff,,,,,,,,,--- -Ruby:Attribute Definition=29,,,,,,,,,,--- -Ruby:Bin=18,,,,,,,,,,--- -Ruby:Blockcomment=21,,,,,,,,,,--- -Ruby:Char=10,,,,,,,,,,--- -Ruby:Class Variable=29,,,,,,,,,,--- -Ruby:Command=12,ffaa3000,,,,,,,,,--- -Ruby:Comment=21,,,,,,,,,,--- -Ruby:Constant=16,,,,,,,,,,--- -Ruby:Constant Value=16,ffbb1188,,,,,,,,,--- -Ruby:Data=0,,,,,,,,,,--- -Ruby:Dec=17,,,,,,,,,,--- -Ruby:Default globals=16,ffc00000,,1,,,,,,,--- -Ruby:Definition=1,,,,,,,,,,--- -Ruby:Delimiter=0,ffff9fec,,,,,,,,,--- -Ruby:Error=30,,,,,,,,,,--- -Ruby:Expression=29,,,,,,,,,,--- -Ruby:Float=19,,,,,,,,,,--- -Ruby:GDL input=29,,,,,,,,,,--- -Ruby:Global Constant=16,ffbb1188,,1,,,,,,,--- -Ruby:Global Variable=16,ffc00000,,,,,,,,,--- -Ruby:Here Document=29,,,,,,,,,,--- -Ruby:Hex=18,,,,,,,,,,--- -Ruby:Instance Variable=29,,,,,,,,,,--- -Ruby:Kernel methods=0,ff000080,ffffffff,,,,,,,,--- -Ruby:Keyword=1,,,,,,,,,,--- -Ruby:Member=0,,,,,,,,,,--- -Ruby:Message=0,ff4000a7,,,,,,,,,--- -Ruby:Module mixin methods=0,ff000080,ffffffff,,,,,,,,--- -Ruby:Normal Text=0,,,,,,,,,,--- -Ruby:Octal=18,,,,,,,,,,--- -Ruby:Operator=0,ffff9fec,,,,,,,,,--- -Ruby:Pseudo variable=17,,,,,,,,,,--- -Ruby:RDoc Value=29,,,,,,,,,,--- -Ruby:Raw String=12,ffdd4a4a,ffdd4a4a,,,,,,,,--- -Ruby:Region Marker=0,ff0000ff,,,,,,,,,--- -Ruby:Regular Expression=29,ff4a5704,,,,,,,,,--- -Ruby:String=12,,,,,,,,,,--- -Ruby:Substitution=29,,,,,,,,,,--- -Ruby:Symbol=12,ffd40000,,,,,,,,,--- -SQL (MySQL):Comment=21,,,,,,,,,,--- -SQL (MySQL):Data Type=16,,,,,,,,,,--- -SQL (MySQL):Decimal=17,,,,,,,,,,--- -SQL (MySQL):Float=19,,,,,,,,,,--- -SQL (MySQL):Function=2,,,,,,,,,,--- -SQL (MySQL):Hex=18,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=12,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=29,,,,,,,,,,--- -SQL (MySQL):String=12,,,,,,,,,,--- -SQL (MySQL):String Char=10,,,,,,,,,,--- -SQL (MySQL):Symbol=10,,,,,,,,,,--- -SQL:Comment=21,,,,,,,,,,--- -SQL:Data Type=16,,,,,,,,,,--- -SQL:Decimal=17,,,,,,,,,,--- -SQL:External Variable=10,,,,,,,,,,--- -SQL:Float=19,,,,,,,,,,--- -SQL:Function=2,,,,,,,,,,--- -SQL:Hex=18,,,,,,,,,,--- -SQL:Identifier=29,,,,,,,,,,--- -SQL:Keyword=1,,,,,,,,,,--- -SQL:Normal Text=0,,,,,,,,,,--- -SQL:Operator=0,,,,,,,,,,--- -SQL:Preprocessor=29,,,,,,,,,,--- -SQL:String=12,,,,,,,,,,--- -SQL:String Char=10,,,,,,,,,,--- -SQL:Symbol=10,,,,,,,,,,--- -Scala:Char=10,,,,,,,,,,--- -Scala:Comment=21,,,,,,,,,,--- -Scala:Data Type=16,,,,,,,,,,--- -Scala:Decimal=17,,,,,,,,,,--- -Scala:Float=19,,,,,,,,,,--- -Scala:Function=2,,,,,,,,,,--- -Scala:Hex=18,,,,,,,,,,--- -Scala:Imports=1,ff808000,ffffffff,0,0,,,,,,--- -Scala:Java15=0,ff0095ff,ffffffff,1,0,,,,,,--- -Scala:Keyword=1,,,,,,,,,,--- -Scala:Normal Text=0,,,,,,,,,,--- -Scala:Octal=18,,,,,,,,,,--- -Scala:PrintfString=12,,,,,,,,,,--- -Scala:Scala2=0,ff0095ff,ffffffff,1,0,,,,,,--- -Scala:StaticImports=1,ff800080,ffffffff,0,0,,,,,,--- -Scala:String=12,,,,,,,,,,--- -Scala:String Char=10,,,,,,,,,,--- -Scala:Symbol=0,,,,,,,,,,--- -XML:Attribute=29,,,,,,,,,,--- -XML:CDATA=18,,,1,,,,,,,--- -XML:Comment=21,,,,,,,,,,--- -XML:Doctype=16,,,1,,,,,,,--- -XML:Element=1,,,,,,,,,,--- -XML:EntityRef=17,,,,,,,,,,--- -XML:Error=30,,,,,,,,,,--- -XML:Normal Text=0,,,,,,,,,,--- -XML:Other Text=0,,,,,,,,,,--- -XML:PEntityRef=17,,,,,,,,,,--- -XML:Processing Instruction=1,,,,,,,,,,--- -XML:Value=12,ffaa0000,,,,,,,,,--- - -[Highlighting Julia - Schema xoria256] -Julia:Char=6,,,,,,,,,,--- -Julia:Comment=8,,,,,,,,,,--- -Julia:Data Type=2,,,,,,,,,,--- -Julia:Decimal=3,,,,,,,,,,--- -Julia:Delimiter=0,,,,,,,,,,--- -Julia:Float=5,,,,,,,,,,--- -Julia:FoldingComment=8,,,,,,,,,,--- -Julia:Hex=4,,,,,,,,,,--- -Julia:Incomplete Char=6,,,,,,,,,,--- -Julia:Keyword=1,,,,,,,,,,--- -Julia:Normal Text=0,,,,,,,,,,--- -Julia:Operator=0,,,,,,,,,,--- -Julia:String=7,,,,,,,,,,--- -Julia:System=4,,,,,,,,,,--- -Julia:Variable=0,,,,,,,,,,--- - -[Highlighting KBasic - Schema xoria256] -KBasic:Comment=8,,,,,,,,,,--- -KBasic:Identifier=9,,,,,,,,,,--- -KBasic:Keyword=1,,,,,,,,,,--- -KBasic:Normal Text=0,,,,,,,,,,--- -KBasic:String=7,,,,,,,,,,--- -KBasic:Types=2,,,,,,,,,,--- - -[Highlighting KDev-PG\x5b-Qt\x5d Grammar - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Access=2,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstMember=0,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstMemberType=2,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:AstNode=11,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Code Segment=11,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Comment=8,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Decimal=3,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Error=13,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Float=5,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Keyword=1,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Location=9,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Normal Text=0,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:String=7,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:String Char=6,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Symbol=9,,,,,,,,,,--- -KDev-PG\x5b-Qt\x5d Grammar:Token=1,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Kate File Template - Schema xoria256] -Kate File Template:Comment=8,,,,,,,ffeeeeee,,,--- -Kate File Template:Error=13,,,,,,,,,,--- -Kate File Template:Escape=9,,,,,,,,,,--- -Kate File Template:Header Keyword=1,,,,,,,ffeeeeee,,,--- -Kate File Template:Header Text=0,,,,,,,ffeeeeee,,,--- -Kate File Template:Keyword=1,,,,,,,,,,--- -Kate File Template:Macro=2,,,,,,,,,,--- -Kate File Template:Normal Text=0,,,,,,,,,,--- -Kate File Template:Property=3,,,1,,,,ffeeeeee,,,--- -Kate File Template:Property Value=7,,,,,,,ffeeeeee,,,--- - -[Highlighting Kconfig - Schema xoria256] -Kconfig:badChar=28,,,,,,,,,,--- -Kconfig:badOptionEq=0,,,,1,,,,,,--- -Kconfig:badQuotedOptionValue=12,,,,1,,,,,,--- -Kconfig:badTristateConst=28,,,,,,,,,,--- -Kconfig:badType=28,,,,,,,,,,--- -Kconfig:badUnquotedOptionValue=12,,,,1,,,,,,--- -Kconfig:comment=21,,,,,,,,,,--- -Kconfig:error=30,,,,,,,,,,--- -Kconfig:exprOp=0,,,,,,,,,,--- -Kconfig:helpText=0,,,,,,,,,,--- -Kconfig:keyword=1,,,,,,,,,,--- -Kconfig:option=29,,,,,,,,,,--- -Kconfig:optionEq=0,,,,,,,,,,--- -Kconfig:plain=0,,,,,,,,,,--- -Kconfig:property=29,,,,,,,,,,--- -Kconfig:quotedMainmenuPrompt=12,,,,,,,,,,--- -Kconfig:quotedOptionValue=12,,,,,,,,,,--- -Kconfig:quotedPrompt=0,,,,,,,,,,--- -Kconfig:quotedSourceString=12,,,,,,,,,,--- -Kconfig:source=29,,,,,,,,,,--- -Kconfig:symbolConst=12,,,,,,,,,,--- -Kconfig:symbolVar=0,,,,,,,,,,--- -Kconfig:tristateConst=1,,,,,,,,,,--- -Kconfig:type=16,,,,,,,,,,--- -Kconfig:unknownOption=0,,,,1,,,,,,--- -Kconfig:unknownOptionEq=0,,,,1,,,,,,--- -Kconfig:unquotedMainmenuPrompt=12,,,,,,,,,,--- -Kconfig:unquotedOptionValue=12,,,,,,,,,,--- -Kconfig:unquotedPrompt=0,,,,,,,,,,--- -Kconfig:unquotedSourceString=12,,,,,,,,,,--- - -[Highlighting LDIF - Schema xoria256] -LDIF:AttributeType=1,ff404040,ffffffff,1,0,,,,,,--- -LDIF:Comment=8,ff808080,ff808080,0,0,,,,,,--- -LDIF:Description Keyword=1,ff000000,ffffffff,1,0,,,,,,--- -LDIF:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -LDIF:ObjectClass=1,ff800080,ffffffff,1,0,,,,,,--- -LDIF:Value (Encoded)=7,ffff8000,ff0080ff,0,0,,,,,,--- -LDIF:Value (Encrypted)=7,ffff0000,ff00ffff,0,0,,,,,,--- -LDIF:Value (Keyword)=7,ff008000,ff800080,1,0,,,,,,--- -LDIF:Value (Standard)=7,ff008000,ff008000,0,0,,,,,,--- -LDIF:Value (URL)=7,ff0000ff,ffffff00,0,0,,,,,,--- - -[Highlighting LESSCSS - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -LESSCSS:Alert=10,,,,,,,,,,--- -LESSCSS:At Rule=3,,,,,,,,,,--- -LESSCSS:Comment=8,,,,,,,,,,--- -LESSCSS:Error=13,,,,,,,,,,--- -LESSCSS:Important=1,,,,,,,,,,--- -LESSCSS:Media=3,,,1,,,,,,,--- -LESSCSS:Normal Text=0,,,,,,,,,,--- -LESSCSS:Property=1,,,,,,,,,,--- -LESSCSS:Region Marker=12,,,,,,,,,,--- -LESSCSS:Selector Attr=6,,,,,,,,,,--- -LESSCSS:Selector Class=5,,,,,,,,,,--- -LESSCSS:Selector Id=5,,,1,,,,,,,--- -LESSCSS:Selector Pseudo=3,,,,,,,,,,--- -LESSCSS:String=7,,,,,,,,,,--- -LESSCSS:Unknown Property=1,,,,1,,,,,,--- -LESSCSS:Value=2,,,,,,,,,,--- -LESSCSS:Variable=0,,,,,,,,,,--- - -[Highlighting LPC - Schema xoria256] -LPC:Alert=10,,,,,,,,,,--- -LPC:Binary=4,,,,,,,,,,--- -LPC:Char=6,,,,,,,,,,--- -LPC:Closure=9,,,,,,,,,,--- -LPC:Datatype=2,,,,,,,,,,--- -LPC:Default=0,,,,,,,,,,--- -LPC:Floats=5,,,,,,,,,,--- -LPC:Hexadecimal=4,,,,,,,,,,--- -LPC:Integer=3,,,,,,,,,,--- -LPC:Keywords=1,,,,,,,,,,--- -LPC:Modifier=2,,,,,,,,,,--- -LPC:Multi-Line comments=8,,,,,,,,,,--- -LPC:Octal=4,,,,,,,,,,--- -LPC:Preprocessor=9,,,,,,,,,,--- -LPC:Preprocessor-Strings=7,,,,,,,,,,--- -LPC:Region Marker=12,,,,,,,,,,--- -LPC:Single-Line comments=8,,,,,,,,,,--- -LPC:Strings=7,,,,,,,,,,--- - -[Highlighting LSL - Schema xoria256] -LSL:Alert=10,,,,,,,,,,--- -LSL:Brace=0,,,,,,,,,,--- -LSL:Comment=8,,,,,,,,,,--- -LSL:Constant=9,,,,,,,,,,--- -LSL:Data Type=2,,,,,,,,,,--- -LSL:Decimal=3,,,,,,,,,,--- -LSL:Event=9,,,,,,,,,,--- -LSL:Float=5,,,,,,,,,,--- -LSL:Function=11,,,,,,,,,,--- -LSL:Hex=4,,,,,,,,,,--- -LSL:Identifier=0,,,,,,,,,,--- -LSL:Keyword=1,,,,,,,,,,--- -LSL:Library Function=11,,,1,,,,,,,--- -LSL:Normal Text=0,,,,,,,,,,--- -LSL:String=7,,,,,,,,,,--- -LSL:Symbol=0,,,,,,,,,,--- - -[Highlighting LaTeX - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -LaTeX:Alert=10,,,,,,,,,,--- -LaTeX:Ampersand=0,ffffffaf,ffeeeeee,1,,,,,,,--- -LaTeX:Bullet=0,ffdfaf87,ffeeeeee,1,,,,,,,--- -LaTeX:Column Separator=0,ffffffaf,ffeeeeee,,,,,,,,--- -LaTeX:Comment=8,,,,,,,,,,--- -LaTeX:Environment=0,ffffffaf,ffeeeeee,0,0,,,,,,--- -LaTeX:Error=10,ffafdf87,ffeeeeee,1,,,,,,,--- -LaTeX:Keyword=0,ff87afdf,ffeeeeee,0,0,,,,,,--- -LaTeX:Keyword Mathmode=0,ff87afdf,ffeeeeee,0,0,,,,,,--- -LaTeX:Math=0,ffafdf87,ffeeeeee,0,0,,,,,,--- -LaTeX:Normal Text=0,,,,,,,,,,--- -LaTeX:Option Text=0,,,,,,,,,,--- -LaTeX:Region Marker=12,,,,,,,,,,--- -LaTeX:Structure=0,ffafafdf,ffeeeeee,0,0,,,,,,--- -LaTeX:Structure Keyword=0,ffafafdf,ffeeeeee,0,0,,,,,,--- -LaTeX:Structure Keyword Mathmode=0,ffafafdf,ffeeeeee,0,0,,,,,,--- -LaTeX:Structure Math=0,ffafafdf,ffeeeeee,0,0,,,,,,--- -LaTeX:Structure Text=0,ffffffaf,ffffffff,0,0,,,,,,--- -LaTeX:Verbatim=0,ffffffaf,ffeeeeee,0,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting Lex/Flex - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Lex/Flex:Alert=10,,,,,,,,,,--- -Lex/Flex:Backslash Code=7,,,1,,,,,,,--- -Lex/Flex:Comment=8,,,,,,,,,,--- -Lex/Flex:Content-Type Delimiter=4,,,1,,,,,,,--- -Lex/Flex:Definition=2,,,,,,,,,,--- -Lex/Flex:Directive=1,,,,,,,,,,--- -Lex/Flex:Normal Text=0,,,,,,,,,,--- -Lex/Flex:RegExpr=7,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting LilyPond - Schema xoria256] -Alerts:Alert Level 1=28,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=28,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=28,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -LilyPond:Articulation=12,ffee5000,,1,,,,,,,--- -LilyPond:Beam=16,,,1,,,,,,,--- -LilyPond:Check=17,,,,,,,,,,--- -LilyPond:Chord=16,,,1,,,,,,,--- -LilyPond:Command=2,,,1,,,,,,,--- -LilyPond:Comment=21,,,,,,,,,,--- -LilyPond:Context=16,,,1,,,,,,,--- -LilyPond:Deprecated Command=2,,,,,,,ffffcccc,,,--- -LilyPond:Deprecated Context=16,,,1,,,,ffffcccc,,,--- -LilyPond:Deprecated Keyword=1,,,,,,,ffffcccc,,,--- -LilyPond:Deprecated Markup=18,ff009817,,,,,,ffffcccc,,,--- -LilyPond:Deprecated Property=16,,,,,,,ffffcccc,,,--- -LilyPond:Duration=16,,,,,,,,,,--- -LilyPond:Dynamic=12,ffee5000,,1,,,,,,,--- -LilyPond:Engraver=16,,,,,,,,,,--- -LilyPond:Invalid=30,,,,,,,,,,--- -LilyPond:Keyword=1,,,,,,,,,,--- -LilyPond:Layout Object=16,,,,,,,,,,--- -LilyPond:Lyric Text=0,ff007010,,,,,,,,,--- -LilyPond:Lyricmode=1,ff007010,,,,,,,,,--- -LilyPond:Markup=18,ff009817,,,,,,,,,--- -LilyPond:Normal Text=0,,,,,,,,,,--- -LilyPond:Other Mode=1,ff0094e4,,,,,,,,,--- -LilyPond:Other Text=0,ff0094e4,,,,,,,,,--- -LilyPond:Pitch=0,,,,,,,,,,--- -LilyPond:Property=16,,,,,,,,,,--- -LilyPond:Quoted Text=12,,,,,,,,,,--- -LilyPond:Repeat=16,,,,1,,,,,,--- -LilyPond:Scheme=19,,,,,,,fffff6ff,,,--- -LilyPond:Scheme Comment=21,,,,,,,fffff6ff,,,--- -LilyPond:Scheme Keyword=19,,,1,,,,fffff6ff,,,--- -LilyPond:Scheme String=12,,,,,,,fffff6ff,,,--- -LilyPond:Scheme Subst=17,,,1,,,,fffff6ff,,,--- -LilyPond:Scheme Value=17,,,,,,,fffff6ff,,,--- -LilyPond:Slur=10,,,1,,,,,,,--- -LilyPond:User Command=2,,,,,,,,,,--- -LilyPond:Variable=16,,,,,,,,,,--- - -[Highlighting Literate Curry - Schema xoria256] -Curry:Braces=0,,,,,,,,,,--- -Curry:Char=6,,,,,,,,,,--- -Curry:Comment=8,,,,,,,,,,--- -Curry:Currydoc=8,ff008000,ffffffff,,,,,,,,--- -Curry:Decimal=3,,,,,,,,,,--- -Curry:Float=5,,,,,,,,,,--- -Curry:Function=0,,,,,,,,,,--- -Curry:Hex=4,,,,,,,,,,--- -Curry:Infix Application=9,,,,,,,,,,--- -Curry:Keyword=1,,,,,,,,,,--- -Curry:Normal=0,,,,,,,,,,--- -Curry:Octal=4,,,,,,,,,,--- -Curry:Operator=11,,,,,,,,,,--- -Curry:Pragma=9,,,,,,,,,,--- -Curry:Prelude Constructor=1,,,,,,,,,,--- -Curry:Prelude Function=11,,,,,,,,,,--- -Curry:Prelude Type=2,,,,,,,,,,--- -Curry:Signature=9,,,,,,,,,,--- -Curry:Special Symbol=9,,,,,,,,,,--- -Curry:String=7,,,,,,,,,,--- -Curry:String Escape=6,,,,,,,,,,--- -Curry:Syntax Error=13,,,,,,,,,,--- -Curry:Type, Constructor=2,,,,,,,,,,--- -Literate Curry:BirdTrack=9,,,,,,,,,,--- -Literate Curry:Comment=8,,,,,,,,,,--- -Literate Curry:Text=0,,,,,,,,,,--- - -[Highlighting Literate Haskell - Schema xoria256] -Hamlet:Assignment=29,,,,,,,,,,--- -Hamlet:Attribute=29,,,,,,,,,,--- -Hamlet:Class=12,ffaa0000,,,,,,,,,--- -Hamlet:Code=1,,,,,,,,,,--- -Hamlet:Element=1,,,,,,,,,,--- -Hamlet:Error=30,,,,,,,,,,--- -Hamlet:Logic=1,,,,,,,,,,--- -Hamlet:Normal Text=0,,,,,,,,,,--- -Hamlet:Value=12,ffaa0000,,,,,,,,,--- -Haskell:C2HS Directive=7,,,,,,,,,,--- -Haskell:Char=6,,,,,,,,,,--- -Haskell:Class Prelude=1,,,,,,,,,,--- -Haskell:Comment=8,,,,,,,,,,--- -Haskell:Data Prelude=1,,,,,,,,,,--- -Haskell:Decimal=3,,,,,,,,,,--- -Haskell:EnumFromTo=9,,,,,,,,,,--- -Haskell:Float=5,,,,,,,,,,--- -Haskell:Function=0,,,,,,,,,,--- -Haskell:Function Infix=9,,,,,,,,,,--- -Haskell:Function Prelude=11,,,,,,,,,,--- -Haskell:Hex=18,,,,,,,,,,--- -Haskell:Keyword=1,,,,,,,,,,--- -Haskell:Normal=0,,,,,,,,,,--- -Haskell:Octal=18,,,,,,,,,,--- -Haskell:Operator=11,,,,,,,,,,--- -Haskell:Pragma=9,,,,,,,,,,--- -Haskell:Signature=9,,,,,,,,,,--- -Haskell:Special=9,,,,,,,,,,--- -Haskell:String=7,,,,,,,,,,--- -Haskell:Type=2,,,,,,,,,,--- -Haskell:Type Prelude=2,,,,,,,,,,--- -Literate Haskell:BirdTrack=9,,,,,,,,,,--- -Literate Haskell:Comment=8,,,,,,,,,,--- -Literate Haskell:Text=0,,,,,,,,,,--- - -[Highlighting Logtalk - Schema xoria256] -Logtalk:Built-in=1,,,,,,,,,,--- -Logtalk:Comment=8,,,,,,,,,,--- -Logtalk:Directive=1,,,,,,,,,,--- -Logtalk:Normal=0,,,,,,,,,,--- -Logtalk:Number=3,,,,,,,,,,--- -Logtalk:Operator=2,,,,,,,,,,--- -Logtalk:String=7,,,,,,,,,,--- -Logtalk:Variable=9,,,,,,,,,,--- - -[Highlighting Lua - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- -Lua:Alerts=10,,,,,,,,,,--- -Lua:BFunc=11,,,,,,,,,,--- -Lua:Comment=8,,,,,,,,,,--- -Lua:Constant=1,,,,,,,,,,--- -Lua:Control=1,ffa1a100,ffffffff,0,0,,,,,,--- -Lua:Error=13,,,,,,,,,,--- -Lua:Keyword=1,,,,,,,,,,--- -Lua:Normal Text=0,,,,,,,,,,--- -Lua:Numbers=3,,,,,,,,,,--- -Lua:Strings=7,,,,,,,,,,--- -Lua:Symbols=9,,,,,,,,,,--- -Lua:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting M3U - Schema xoria256] -M3U:Comment=8,,,,,,,,,,--- -M3U:Descr=7,,,,,,,,,,--- -M3U:EXTINF=9,,,,,,,,,,--- -M3U:Lenght=3,,,,,,,,,,--- -M3U:M3USpec=1,,,,,,,,,,--- -M3U:Normal Text=0,,,,,,,,,,--- - -[Highlighting MAB-DB - Schema xoria256] -MAB-DB:Comment=8,ff999999,ffffffff,1,1,,,,,,--- -MAB-DB:Database Header=1,ffff3322,ffffffff,1,0,,,,,,--- -MAB-DB:Header Medium=1,ff339922,ffffffff,1,0,,,,,,--- -MAB-DB:Header Piece=1,ff993322,ffffffff,1,0,,,,,,--- -MAB-DB:Mab Comment Description=8,ff3333ff,ffffffff,1,1,,,,,,--- -MAB-DB:Mab Comment Type=8,ffbb3333,ffffffff,1,1,,,,,,--- -MAB-DB:Mab I Field=1,ff330066,ffffffff,1,0,,,,,,--- -MAB-DB:Mab M Field=1,ff003366,ffffffff,1,0,,,,,,--- -MAB-DB:Normal Text=0,ffff0022,ffffffff,1,0,,,,,,--- - -[Highlighting MEL - Schema xoria256] -MEL:Block comments=8,,,,,,,,,,--- -MEL:Data types=2,,,,,,,,,,--- -MEL:Expressions=9,,,,,,,,,,--- -MEL:Float values=5,,,,,,,,,,--- -MEL:Integer values=3,,,,,,,,,,--- -MEL:Keywords=1,,,,,,,,,,--- -MEL:Line comments=8,,,,,,,,,,--- -MEL:MEL commands=11,,,,,,,,,,--- -MEL:Normal Text=0,,,,,,,,,,--- -MEL:Operators=0,,,,,,,,,,--- -MEL:Strings=7,,,,,,,,,,--- -MEL:Variable names=4,,,,,,,,,,--- - -[Highlighting MIPS Assembler - Schema xoria256] -MIPS Assembler:Char=6,,,,,,,,,,--- -MIPS Assembler:Comment=8,,,,,,,,,,--- -MIPS Assembler:Decimal=3,,,,,,,,,,--- -MIPS Assembler:Float=5,,,,,,,,,,--- -MIPS Assembler:Floating Point Register=5,,,,,,,,,,--- -MIPS Assembler:Hardware Instruction=1,,,,,,,,,,--- -MIPS Assembler:Hex=4,,,,,,,,,,--- -MIPS Assembler:Label=9,,,,,,,,,,--- -MIPS Assembler:Main Register=2,,,,,,,,,,--- -MIPS Assembler:Normal Text=0,,,,,,,,,,--- -MIPS Assembler:Octal=4,,,,,,,,,,--- -MIPS Assembler:Other Register=2,ff0000ff,,,,,,,,,--- -MIPS Assembler:Pseudo Instruction=11,,,,,,,,,,--- -MIPS Assembler:Region Marker=12,,,,,,,,,,--- -MIPS Assembler:Section=2,,,,,,,,,,--- -MIPS Assembler:String=7,,,,,,,,,,--- -MIPS Assembler:Type=1,,,,,,,,,,--- - -[Highlighting MS-DOS Batch - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -MS-DOS Batch:Builtin=1,,,,,,,,,,--- -MS-DOS Batch:Command=1,,,,,,,,,,--- -MS-DOS Batch:Comment=8,,,,,,,,,,--- -MS-DOS Batch:Echoed Text=0,,,,,,,,,,--- -MS-DOS Batch:Error=13,,,,,,,,,,--- -MS-DOS Batch:Escape=6,,,,,,,,,,--- -MS-DOS Batch:Keyword=1,,,,,,,,,,--- -MS-DOS Batch:Label=9,,,,,,,,,,--- -MS-DOS Batch:Normal Text=0,,,,,,,,,,--- -MS-DOS Batch:Number=3,,,,,,,,,,--- -MS-DOS Batch:Option=0,,,,,,,,,,--- -MS-DOS Batch:Path=0,,,,,,,,,,--- -MS-DOS Batch:Redirection=1,,,,,,,,,,--- -MS-DOS Batch:String=7,,,,,,,,,,--- -MS-DOS Batch:Variable=9,,,,,,,,,,--- - -[Highlighting Makefile - Schema xoria256] -Alerts:Alert Level 1=28,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=28,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=28,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Makefile:Comment=8,,,,,,,,,,--- -Makefile:Error=13,,,,,,,,,,--- -Makefile:FuncParam=7,,,,,,,,,,--- -Makefile:Keyword=1,,,,,,,,,,--- -Makefile:Normal=0,,,,,,,,,,--- -Makefile:Operator=6,,,,,,,,,,--- -Makefile:Prereq=2,,,,,,,,,,--- -Makefile:Section=9,,,,,,,,,,--- -Makefile:Silent=11,,,,,,,,,,--- -Makefile:Special=5,,,,,,,,,,--- -Makefile:String=7,,,,,,,,,,--- -Makefile:Target=3,,,,,,,,,,--- -Makefile:Variable=2,,,,,,,,,,--- -Modelines:Comment=21,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=17,,,,,,,,,,--- -Modelines:Option OFF=29,,,,,,,,,,--- -Modelines:Option ON=29,,,,,,,,,,--- -Modelines:String=12,,,,,,,,,,--- -Modelines:Value=29,,,,,,,,,,--- -Modelines:Variable=2,,,,,,,,,,--- - -[Highlighting Mako - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Mako:Attribute=9,,,,,,,,,,--- -Mako:CDATA=4,,,1,,,,,,,--- -Mako:Comment=8,,,,,,,,,,--- -Mako:Doctype=2,,,1,,,,,,,--- -Mako:Element=1,,,,,,,,,,--- -Mako:EntityRef=3,,,,,,,,,,--- -Mako:Error=13,,,,,,,,,,--- -Mako:Flow Control Keyword=1,,,,,,,,,,--- -Mako:Mako=2,,,,,,,,,,--- -Mako:MakoKeyword=2,,,1,,,,,,,--- -Mako:MakoString=7,,,,,,,,,,--- -Mako:MakoVar=9,,,1,,,,,,,--- -Mako:Normal Text=0,,,,,,,,,,--- -Mako:PEntityRef=3,,,,,,,,,,--- -Mako:Processing Instruction=1,,,,,,,,,,--- -Mako:Value=7,ffaa0000,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=9,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=9,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ff0057ae,ff0057ae,,,,,,,,--- - -[Highlighting Markdown - Schema xoria256] -Markdown:Normal Text=0,ffd0d0d0,,,,,,,,,--- -Markdown:autolink=9,ffdfaf87,,,,,,,,,--- -Markdown:bl-emphasis=5,ffd0d0d0,,,1,,,,,,--- -Markdown:bl-strong=5,ffd0d0d0,,1,,,,,,,--- -Markdown:blockquote=2,ffd0d0d0,,,,,,,,,--- -Markdown:bq-emphasis=2,ffd0d0d0,,,1,,,,,,--- -Markdown:bq-strong=2,ffd0d0d0,,1,,,,,,,--- -Markdown:bullet=5,ffd0d0d0,,,,,,,,,--- -Markdown:code=4,ffd0d0d0,,,,,,,,,--- -Markdown:comment=8,ff808080,,,,,,,,,--- -Markdown:common=0,,,,,,,,,,--- -Markdown:emphasis=0,,,,1,,,,,,--- -Markdown:footnote=9,ffd0d0d0,,,0,,,,,,--- -Markdown:h1=11,ffdfafdf,,0,,,,,,,--- -Markdown:h2=11,ffdfafdf,,0,,,,,,,--- -Markdown:h3=11,ffdfafdf,,0,,,,,,,--- -Markdown:h4=11,ffdfafdf,,0,,,,,,,--- -Markdown:h5=11,ffdfafdf,,0,,,,,,,--- -Markdown:h6=11,ffdfafdf,,0,,,,,,,--- -Markdown:inlineimage=10,ffd0d0d0,,0,0,,,,,,--- -Markdown:inlinelink=9,ffdfaf87,,,,,,,,,--- -Markdown:linebreak=0,ffd0d0d0,,,,,,,,,--- -Markdown:mailtolink=9,ffdfaf87,,,,,,,,,--- -Markdown:meta=8,,,,,,,,,,--- -Markdown:nl-emphasis=5,ffd0d0d0,,,1,,,,,,--- -Markdown:nl-strong=5,ffd0d0d0,,1,,,,,,,--- -Markdown:numlist=5,ffd0d0d0,,,,,,,,,--- -Markdown:refimage=10,ffd0d0d0,,0,0,,,,,,--- -Markdown:reflink=9,ffdfaf87,,,,,,,,,--- -Markdown:reflinktarget=9,ffdfaf87,,0,0,,,,,,--- -Markdown:ruler=0,,,1,,,,,,,--- -Markdown:strikeout=0,ffd0d0d0,,,,1,,,,,--- -Markdown:strong=0,,,1,,,,,,,--- -Markdown:strongemphasis=0,,,1,1,,,,,,--- - -[Highlighting Mason - Schema xoria256] -Mason:Char=6,,,,,,,,,,--- -Mason:Comment=8,,,,,,,,,,--- -Mason:Data Type=2,,,,,,,,,,--- -Mason:Decimal=3,,,,,,,,,,--- -Mason:Float=5,,,,,,,,,,--- -Mason:HTML=7,,,,,,,,,,--- -Mason:Hex=4,,,,,,,,,,--- -Mason:Keyword=1,,,,,,,,,,--- -Mason:Mason Method=1,,,,,,,,,,--- -Mason:Mason Tag=1,,,,,,,,,,--- -Mason:Octal=4,,,,,,,,,,--- -Mason:Pattern=9,,,,,,,,,,--- -Mason:String=7,,,,,,,,,,--- -Mason:String Char=6,,,,,,,,,,--- -Mason:Symbol=0,,,,,,,,,,--- -Mason:normal=0,,,,,,,,,,--- - -[Highlighting Mathematica - Schema xoria256] -Mathematica:Assign=0,ff00a0e4,,,,,,,,,--- -Mathematica:Float=5,,,,,,,,,,--- -Mathematica:Int=3,,,,,,,,,,--- -Mathematica:Normal Text=0,,,,,,,,,,--- -Mathematica:Operator=0,ffff7b00,,,,,,,,,--- -Mathematica:Parameter=2,,,,1,,,,,,--- -Mathematica:Replace=0,ff85c200,,,,,,,,,--- -Mathematica:function=11,,,,,,,,,,--- - -[Highlighting Matlab - Schema xoria256] -Matlab:Comment=8,ff009900,,,,,,,,,--- -Matlab:Delimiter=0,,,,,,,,,,--- -Matlab:Incomplete String=6,ffa020f0,,,,,,,,,--- -Matlab:Keyword=0,ff0000ff,,,,,,,,,--- -Matlab:Normal Text=0,,,,,,,,,,--- -Matlab:Number=5,,,,,,,,,,--- -Matlab:Operator=0,,,,,,,,,,--- -Matlab:String=7,ffb20000,,,,,,,,,--- -Matlab:System=4,ffb28c00,,,,,,,,,--- -Matlab:Variable=0,,,,,,,,,,--- - -[Highlighting Maxima - Schema xoria256] -Maxima:Comment=0,ff666666,,,,,,,,,--- -Maxima:Float=5,ff660066,,,,,,,,,--- -Maxima:Function=11,ff006666,,,,,,,,,--- -Maxima:Integer=3,ff0000cc,,,,,,,,,--- -Maxima:Keyword=1,ff000000,,1,,,,,,,--- -Maxima:Normal Text=0,ff000000,,,,,,,,,--- -Maxima:Quote=0,ff0000cc,,1,,,,,,,--- -Maxima:Special=0,ffcc0000,,1,,,,,,,--- -Maxima:String=7,ffcc0000,,,,,,,,,--- -Maxima:Variable=0,ff333366,,,1,,,,,,--- - -[Highlighting MediaWiki - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -MediaWiki:Bold=0,,,1,,,,,,,--- -MediaWiki:BoldItalic=0,,,1,1,,,,,,--- -MediaWiki:BoldItalicUnderlined=0,,,1,1,,,,,,--- -MediaWiki:BoldUnderlined=0,,,1,,,,,,,--- -MediaWiki:Comment=8,,,,,,,,,,--- -MediaWiki:DefinitionListHeader=1,,,,,,,,,,--- -MediaWiki:Error=13,,,,,,,,,,--- -MediaWiki:HtmlAttribute=9,,,,,,,,,,--- -MediaWiki:HtmlEntity=3,,,,,,,,,,--- -MediaWiki:HtmlTag=1,,,,,,,,,,--- -MediaWiki:HtmlValue=7,ffaa0000,,,,,,,,,--- -MediaWiki:Italic=0,,,,1,,,,,,--- -MediaWiki:ItalicUnderlined=0,,,,1,,,,,,--- -MediaWiki:Link=9,,,,,,,,,,--- -MediaWiki:LinkBold=9,,,1,,,,,,,--- -MediaWiki:LinkBoldItalic=9,,,1,1,,,,,,--- -MediaWiki:LinkBoldItalicUnderlined=9,,,1,1,,,,,,--- -MediaWiki:LinkBoldUnderlined=9,,,1,,,,,,,--- -MediaWiki:LinkItalic=9,,,,1,,,,,,--- -MediaWiki:LinkItalicUnderlined=9,,,,1,,,,,,--- -MediaWiki:LinkUnderlined=9,,,,,,,,,,--- -MediaWiki:NoWiki=0,,,,,,,,,,--- -MediaWiki:Normal=0,,,,,,,,,,--- -MediaWiki:Parameter=0,,,1,,,,,,,--- -MediaWiki:Section=1,,,,,,,,,,--- -MediaWiki:TemplateName=9,,,1,,,,,,,--- -MediaWiki:URL=9,,,,,,,,,,--- -MediaWiki:Underlined=0,,,,,,,,,,--- -MediaWiki:Unformatted=0,,,,,,,,,,--- -MediaWiki:WikiTag=3,,,1,,,,,,,--- -MediaWiki:WikiTagBold=3,,,1,,,,,,,--- -MediaWiki:WikiTagBoldItalic=3,,,1,1,,,,,,--- -MediaWiki:WikiTagBoldItalicUnderlined=3,,,1,1,,,,,,--- -MediaWiki:WikiTagBoldUnderlined=3,,,1,,,,,,,--- -MediaWiki:WikiTagItalic=3,,,1,1,,,,,,--- -MediaWiki:WikiTagItalicUnderlined=3,,,1,1,,,,,,--- -MediaWiki:WikiTagUnderlined=3,,,1,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Metapost/Metafont - Schema xoria256] -Metapost/Metafont:Alert=10,,,,,,,,,,--- -Metapost/Metafont:BoolExp=1,ffaa00aa,ffffff00,0,1,,,,,,--- -Metapost/Metafont:Comment=8,,,,,,,,,,--- -Metapost/Metafont:Conditional=1,,,,,,,,,,--- -Metapost/Metafont:Decimal=3,,,,,,,,,,--- -Metapost/Metafont:Error=10,,,,,,,,,,--- -Metapost/Metafont:Float=5,,,,,,,,,,--- -Metapost/Metafont:Hex=4,,,,,,,,,,--- -Metapost/Metafont:Identifier=1,,,,,,,,,,--- -Metapost/Metafont:Keyword=0,ff800000,ff60ffff,0,0,,,,,,--- -Metapost/Metafont:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -Metapost/Metafont:Macro=1,ff770000,ff99ffff,0,0,,,,,,--- -Metapost/Metafont:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -Metapost/Metafont:Normal Text=0,,,,,,,,,,--- -Metapost/Metafont:NumExp=11,,,,,,,,,,--- -Metapost/Metafont:Octal=4,,,,,,,,,,--- -Metapost/Metafont:Operator=1,ff244cff,,0,,,,,,,--- -Metapost/Metafont:Special=1,ff008000,,0,,,,,,,--- -Metapost/Metafont:Statement=0,ff0000ff,ffffff00,0,0,,,,,,--- -Metapost/Metafont:String=7,,,,,,,,,,--- -Metapost/Metafont:TeX=0,,,,,,,,,,--- -Metapost/Metafont:Type=2,,,,,,,,,,--- -Metapost/Metafont:Variable=1,ff550022,,,,,,,,,--- - -[Highlighting Modelica - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Modelica:Class Type=1,,,,,,,,,,--- -Modelica:Comment=8,,,,,,,,,,--- -Modelica:Data Type=2,,,,,,,,,,--- -Modelica:Default Attribute=9,,,,,,,,,,--- -Modelica:Floating-Point Number=5,,,,,,,,,,--- -Modelica:Function=11,,,,,,,,,,--- -Modelica:Integer Number=3,,,,,,,,,,--- -Modelica:Keyword=1,,,,,,,,,,--- -Modelica:Normal Text=0,,,,,,,,,,--- -Modelica:String=7,,,,,,,,,,--- -Modelica:String Char=6,,,,,,,,,,--- -Modelica:Variable=0,,,,,,,,,,--- - -[Highlighting Modelines - Schema xoria256] -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- - -[Highlighting Modula-2 - Schema xoria256] -Modula-2:Comment=8,,,,,,,,,,--- -Modula-2:Directive=9,,,,,,,,,,--- -Modula-2:Keyword=1,,,,,,,,,,--- -Modula-2:Normal Text=0,,,,,,,,,,--- -Modula-2:Number=3,,,,,,,,,,--- -Modula-2:String=7,,,,,,,,,,--- -Modula-2:Type=2,,,,,,,,,,--- - -[Highlighting MonoBasic - Schema xoria256] -MonoBasic:Comment=8,ff008000,,,,,,,,,--- -MonoBasic:Keyword=1,ff000080,,0,,,,,,,--- -MonoBasic:Normal Text=0,,,,,,,,,,--- -MonoBasic:Preprocessor=9,ff008000,,,,,,,,,--- -MonoBasic:String=7,ff800000,,,,,,,,,--- -MonoBasic:Type=2,ff000080,,0,,,,,,,--- - -[Highlighting Motorola 68k (VASM/Devpac) - Schema xoria256] -Motorola 68k (VASM/Devpac):Address Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):BaseN=4,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Char=6,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Comment=8,,,,0,,,,,,--- -Motorola 68k (VASM/Devpac):Constant=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Control Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Data Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Directives=9,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):FPU Registers=2,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Float=5,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Instructions (CPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Instructions (FPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Label=11,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Local label=11,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Normal Text=0,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Number=3,,,,,,,,,,--- -Motorola 68k (VASM/Devpac):Operand sizes (CPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):Operand sizes (FPU)=1,,,1,,,,,,,--- -Motorola 68k (VASM/Devpac):String=7,,,,,,,,,,--- - -[Highlighting Motorola DSP56k - Schema xoria256] -Motorola DSP56k:Address Registers=2,,,,,,,,,,--- -Motorola DSP56k:BaseN=4,,,,,,,,,,--- -Motorola DSP56k:Char=6,,,,,,,,,,--- -Motorola DSP56k:Comment=8,,,,0,,,,,,--- -Motorola DSP56k:Constant=2,,,,,,,,,,--- -Motorola DSP56k:Control Registers=2,,,,,,,,,,--- -Motorola DSP56k:Data Registers=2,,,,,,,,,,--- -Motorola DSP56k:Directives=9,,,1,,,,,,,--- -Motorola DSP56k:Float=5,,,,,,,,,,--- -Motorola DSP56k:Instructions=1,,,1,,,,,,,--- -Motorola DSP56k:Label=11,,,,,,,,,,--- -Motorola DSP56k:Local label=11,,,,,,,,,,--- -Motorola DSP56k:Memory=9,,,1,,,,,,,--- -Motorola DSP56k:Modifier Registers=2,,,,,,,,,,--- -Motorola DSP56k:Normal Text=0,,,,,,,,,,--- -Motorola DSP56k:Number=3,,,,,,,,,,--- -Motorola DSP56k:Offset Registers=2,,,,,,,,,,--- -Motorola DSP56k:String=7,,,,,,,,,,--- - -[Highlighting Music Publisher - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Music Publisher:Barline=3,ffcc6622,,,,,,,,,--- -Music Publisher:Comment=8,,,,,,,,,,--- -Music Publisher:Context=1,,,,,,,,,,--- -Music Publisher:Error=13,ff000000,,,,,,,,,--- -Music Publisher:Location=1,ff00cc44,,1,,,,,,,--- -Music Publisher:Location Probably=1,ff00cc44,,0,,,,,,,--- -Music Publisher:Lyrics=4,,,1,,,,,,,--- -Music Publisher:Macro=9,ff1111ff,ff11ffff,,,,,,,,--- -Music Publisher:Newscore=3,ffcc6622,,1,,,,,,,--- -Music Publisher:Normal Text=0,,,,,,,,,,--- -Music Publisher:Note=0,,,,,,,,,,--- -Music Publisher:Note Attribute=0,ff0077bb,,,1,,,,,,--- -Music Publisher:Parameter=6,,,,,,,,,,--- -Music Publisher:Print Command=4,,,,,,,,,,--- -Music Publisher:Special Char=1,,,,,,,,,,--- -Music Publisher:String=7,,,,,,,,,,--- -Music Publisher:String Error=13,,,,,,,,,,--- -Music Publisher:String Lyrics=7,ff880000,,,,,,,,,--- -Music Publisher:String Special=7,,,1,,,,,,,--- -Music Publisher:Tuplet=0,ff003355,,,,,,,,,--- -Music Publisher:Unset Command=5,,,1,,,,,,,--- -Music Publisher:Value=5,,,,,,,,,,--- - -[Highlighting Nagios - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Nagios:Comment=8,,,,,,,,,,--- -Nagios:Definition=1,,,,,,,,,,--- -Nagios:Definition Block=12,,,,,,,,,,--- -Nagios:Float=5,,,,,,,,,,--- -Nagios:Int=3,,,,,,,,,,--- -Nagios:Invalid Text=13,,,,,,,,,,--- -Nagios:Macro=11,,,,,,,,,,--- -Nagios:Macro Definition=11,,,,,,,,,,--- -Nagios:Normal Text=0,,,,,,,,,,--- -Nagios:Object=2,,,,,,,,,,--- -Nagios:Object Directive=0,,,,,,,,,,--- -Nagios:Symbol=9,,,,,,,,,,--- -Nagios:Value=7,,,,,,,,,,--- -Nagios:Variable=0,,,,,,,,,,--- - -[Highlighting Nemerle - Schema xoria256] -Nemerle:Attribute=9,ff28712f,ff34923d,,,,,,,,--- -Nemerle:Comment=8,,,,,,,,,,--- -Nemerle:CompilationUnit=6,,,,,,,,,,--- -Nemerle:DataType=2,,,,,,,,,,--- -Nemerle:EscapeSequence=4,,,,,,,,,,--- -Nemerle:Keyword=1,,,,,,,,,,--- -Nemerle:Normal Text=0,,,,,,,,,,--- -Nemerle:Number=9,ff00009f,ff0000e9,,,,,,,,--- -Nemerle:Preprocessing=6,,,,,,,,,,--- -Nemerle:String=7,,,,,,,,,,--- -Nemerle:TypeDeclaration=9,ffeeb312,ff000000,1,,,,,,,--- - -[Highlighting None - Schema xoria256] -Normal Text=0,,,,,,,,,,--- - -[Highlighting OORS - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -OORS:Alert=10,,,,,,,,,,--- -OORS:Backslash Code=7,,,1,,,,,,,--- -OORS:Comment=8,,,,,,,,,,--- -OORS:Content-Type Delimiter=4,,,1,,,,,,,--- -OORS:Data Type=2,,,,,,,,,,--- -OORS:Definition=0,,,,,,,,,,--- -OORS:Directive=1,,,,,,,,,,--- -OORS:Normal Text=0,,,,,,,,,,--- -OORS:Rule=7,,,,,,,,,,--- -OORS:String=7,,,,,,,,,,--- -OORS:String Char=6,,,,,,,,,,--- - -[Highlighting OPAL - Schema xoria256] -OPAL:Comment=9,,,,,,,,,,--- -OPAL:Decimal=7,,,,,,,,,,--- -OPAL:Keyword=1,ff0000ff,,,,,,,,,--- -OPAL:Normal Text=0,,,,,,,,,,--- -OPAL:Sort=2,ff0000ff,,,,,,,,,--- -OPAL:String=7,,,,,,,,,,--- - -[Highlighting Objective Caml - Schema xoria256] -Objective Caml:Binary=4,,,,,,,,,,--- -Objective Caml:Camlp4 Quotation=7,,,,,,,,,,--- -Objective Caml:Character=6,,,,,,,,,,--- -Objective Caml:Comment=8,,,,,,,,,,--- -Objective Caml:Constructor=2,,,,,,,,,,--- -Objective Caml:Core Data Type=2,,,,,,,,,,--- -Objective Caml:Decimal=3,,,,,,,,,,--- -Objective Caml:Directive=9,,,,,,,,,,--- -Objective Caml:Escaped characters=6,,,,,,,,,,--- -Objective Caml:Float=5,,,,,,,,,,--- -Objective Caml:Hexadecimal=4,,,,,,,,,,--- -Objective Caml:Identifier=0,,,,,,,,,,--- -Objective Caml:Keyword=1,,,,,,,,,,--- -Objective Caml:Module=0,,,,,,,,,,--- -Objective Caml:Normal Text=0,,,,,,,,,,--- -Objective Caml:Octal=4,,,,,,,,,,--- -Objective Caml:Region Marker=1,,,,,,,,,,--- -Objective Caml:Revised Syntax Keyword=0,,,,,,,,,,--- -Objective Caml:String=7,,,,,,,,,,--- -Objective Caml:Symbol=0,,,,,,,,,,--- - -[Highlighting Objective-C - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Objective-C:Char=6,,,,,,,,,,--- -Objective-C:Comment=8,,,,,,,,,,--- -Objective-C:Data Type=2,,,,,,,,,,--- -Objective-C:Decimal=3,,,,,,,,,,--- -Objective-C:Float=5,,,,,,,,,,--- -Objective-C:Hex=4,,,,,,,,,,--- -Objective-C:Keyword=1,,,,,,,,,,--- -Objective-C:Normal Text=0,,,,,,,,,,--- -Objective-C:Octal=4,,,,,,,,,,--- -Objective-C:Prep. Lib=9,,,,,,,,,,--- -Objective-C:Preprocessor=9,,,,,,,,,,--- -Objective-C:String=7,,,,,,,,,,--- -Objective-C:String Char=6,,,,,,,,,,--- -Objective-C:Symbol=0,,,,,,,,,,--- - -[Highlighting Objective-C++ - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Objective-C++:Char=6,,,,,,,,,,--- -Objective-C++:Comment=8,,,,,,,,,,--- -Objective-C++:Data Type=2,,,,,,,,,,--- -Objective-C++:Decimal=3,,,,,,,,,,--- -Objective-C++:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -Objective-C++:Float=5,,,,,,,,,,--- -Objective-C++:Hex=4,,,,,,,,,,--- -Objective-C++:Keyword=1,,,,,,,,,,--- -Objective-C++:Normal Text=0,,,,,,,,,,--- -Objective-C++:Octal=4,,,,,,,,,,--- -Objective-C++:Prep. Lib=9,,,,,,,,,,--- -Objective-C++:Preprocessor=9,,,,,,,,,,--- -Objective-C++:Region Marker=12,,,,,,,,,,--- -Objective-C++:String=7,,,,,,,,,,--- -Objective-C++:String Char=6,,,,,,,,,,--- -Objective-C++:Symbol=0,,,,,,,,,,--- - -[Highlighting Octave - Schema xoria256] -Octave:Builtin=4,ffb28c00,,,,,,,,,--- -Octave:Commands=11,ffb28c00,,,,,,,,,--- -Octave:Comment=8,ff009900,,,,,,,,,--- -Octave:Delimiter=0,,,,,,,,,,--- -Octave:Forge=11,ff000099,ff009900,1,1,,,,,,--- -Octave:Functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- -Octave:Incomplete String=6,ffa020f0,,,,,,,,,--- -Octave:Keyword=0,ff0000ff,,,,,,,,,--- -Octave:Normal Text=0,,,,,,,,,,--- -Octave:Number=5,,,,,,,,,,--- -Octave:Operator=0,,,,,,,,,,--- -Octave:String=7,ffb20000,,,,,,,,,--- -Octave:String Char=6,,,,,,,,,,--- -Octave:Variable=0,,,,,,,,,,--- - -[Highlighting OpenCL - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -OpenCL:Alert=10,,,,,,,,,,--- -OpenCL:Char=6,,,,,,,,,,--- -OpenCL:Comment=8,,,,,,,,,,--- -OpenCL:Data Type=2,,,,,,,,,,--- -OpenCL:Decimal=3,,,,,,,,,,--- -OpenCL:Error=13,,,,,,,,,,--- -OpenCL:Float=5,,,,,,,,,,--- -OpenCL:Hex=4,,,,,,,,,,--- -OpenCL:Keyword=1,,,,,,,,,,--- -OpenCL:Normal Text=0,,,,,,,,,,--- -OpenCL:Octal=4,,,,,,,,,,--- -OpenCL:Prep. Lib=9,,,,,,,,,,--- -OpenCL:Preprocessor=9,,,,,,,,,,--- -OpenCL:Region Marker=12,,,,,,,,,,--- -OpenCL:String=7,,,,,,,,,,--- -OpenCL:String Char=6,,,,,,,,,,--- -OpenCL:Symbol=0,,,,,,,,,,--- - -[Highlighting PGN - Schema xoria256] -PGN:Commentc=8,,,1,,,,,,,--- -PGN:Commentp=8,,,,,,,,,,--- -PGN:Keyword=1,,,1,,,,,,,--- -PGN:Normal Text=0,,,,,,,,,,--- -PGN:Number=3,ffbb00bb,,,,,,,,,--- -PGN:Piece=0,ff0095ff,,1,0,,,,,,--- -PGN:String=7,,,0,,,,,,,--- -PGN:Symbol=9,ff00bb00,,,,,,,,,--- - -[Highlighting PHP (HTML) - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS/PHP:At Rule=3,,,,,,,,,,--- -CSS/PHP:Comment=8,ff808080,,,,,,,,,--- -CSS/PHP:Error=13,ffafdf87,ffeeeeee,,,,,,,,--- -CSS/PHP:Important=1,,,,,,,,,,--- -CSS/PHP:Media=3,ffdfaf87,ffeeeeee,0,,,,,,,--- -CSS/PHP:Normal Text=0,,,,,,,,,,--- -CSS/PHP:Property=1,,,,,,,,,,--- -CSS/PHP:Region Marker=12,,,,,,,,,,--- -CSS/PHP:Selector Attr=6,,,,,,,,,,--- -CSS/PHP:Selector Class=5,,,,,,,,,,--- -CSS/PHP:Selector Id=5,ffdfaf87,ffeeeeee,0,,,,,,,--- -CSS/PHP:Selector Pseudo=3,,,,,,,,,,--- -CSS/PHP:String=7,,,,,,,,,,--- -CSS/PHP:Unknown Property=1,ff87afdf,ffeeeeee,,0,,,,,,--- -CSS/PHP:Value=2,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,ff808080,,,,,,,,,--- -CSS:Error=13,ffafdf87,ffeeeeee,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,ffdfaf87,ffeeeeee,0,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,ffdfaf87,ffeeeeee,0,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,ff87afdf,ffeeeeee,,0,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ff87afdf,ffe85848,0,0,,,,,,--- -Doxygen:Code=8,ff808080,,,,,,,,,--- -Doxygen:Comment=8,ff808080,,,,,,,,,--- -Doxygen:Custom Tags=0,ff87afdf,,0,0,,,,,,--- -Doxygen:Description=7,ff808080,,0,,,,,,,--- -Doxygen:Dot Graph=8,ff808080,ffffffff,,0,,,,,,--- -Doxygen:Entities=9,ff808080,,0,0,,,,,,--- -Doxygen:Formulas=8,ff27ae60,ffffffff,,,,,,,,--- -Doxygen:HTML Comment=8,ff808080,,,,,,,,,--- -Doxygen:HTML Tag=1,ff808080,ff002b36,0,,,,,ff859900,,--- -Doxygen:Identifier=9,ff808080,ff002b36,0,,,,,ffcb4b16,,--- -Doxygen:Message Sequence Chart=8,ff27ae60,ffffffff,,,,,,,,--- -Doxygen:Normal Text=0,ff808080,,,,,,,,,--- -Doxygen:Note=1,ff87afdf,ff81ca2d,0,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ff87afdf,,0,0,,,,,,--- -Doxygen:Todo=1,ff87afdf,ffffffff,0,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,ff27ae60,,,,,,,,,--- -Doxygen:Warning=1,ff87afdf,ffca9219,0,0,,,,,,--- -Doxygen:Word=1,ff808080,,0,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,ffdc322f,ff002b36,,,,,,ffdc322f,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ff2aa198,ff002b36,,,,,,ff2aa198,,--- -JavaScript/PHP:Char=6,,,,,,,,,,--- -JavaScript/PHP:Comment=8,,,,,,,,,,--- -JavaScript/PHP:Decimal=3,,,,,,,,,,--- -JavaScript/PHP:Float=5,,,,,,,,,,--- -JavaScript/PHP:Function=11,,,,,,,,,,--- -JavaScript/PHP:Hex=4,,,,,,,,,,--- -JavaScript/PHP:JSON=2,,,,,,,,,,--- -JavaScript/PHP:Keyword=1,,,,,,,,,,--- -JavaScript/PHP:Normal Text=0,,,,,,,,,,--- -JavaScript/PHP:Object Member=11,,,,,,,,,,--- -JavaScript/PHP:Objects=9,,,,,,,,,,--- -JavaScript/PHP:Octal=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Character Class=4,,,,,,,,,,--- -JavaScript/PHP:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript/PHP:Region Marker=12,,,,,,,,,,--- -JavaScript/PHP:Regular Expression=9,,,,,,,,,,--- -JavaScript/PHP:Reserved=1,,,,1,,,,,,--- -JavaScript/PHP:String=7,,,,,,,,,,--- -JavaScript/PHP:Symbol=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP (HTML):Attribute=9,ffafdf87,ffeeeeee,,,,,,,,--- -PHP (HTML):CDATA=4,ff808080,ffeeeeee,0,,,,,,,--- -PHP (HTML):Comment=8,ff808080,,,,,,,,,--- -PHP (HTML):Doctype=2,ffafafdf,ffeeeeee,0,,,,,,,--- -PHP (HTML):Element=1,ff87afdf,ffeeeeee,,,,,,,,--- -PHP (HTML):EntityRef=3,ff87afdf,,,,,,,,,--- -PHP (HTML):Error=13,ffafdf87,ffeeeeee,,,,,,,,--- -PHP (HTML):Normal Text=0,ffd0d0d0,,,,,,,,,--- -PHP (HTML):Other Text=0,,,,,,,,,,--- -PHP (HTML):PEntityRef=3,ff87afdf,,,,,,,,,--- -PHP (HTML):Processing Instruction=1,ff87afdf,,,,,,,,,--- -PHP (HTML):Value=7,ffffffaf,ffeeeeee,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff87afdf,ffeeeeee,0,0,,,,,,--- -PHP/PHP:Classes=1,ff87afdf,,,,,,,,,--- -PHP/PHP:Comment=8,ff808080,,,,,,,,,--- -PHP/PHP:Constant=1,ffd0d0d0,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ff87afdf,ffeeeeee,0,0,,,,,,--- -PHP/PHP:Decimal=3,ffdfaf87,,,,,,,,,--- -PHP/PHP:Error=13,ffafdf87,ffeeeeee,,,,,,,,--- -PHP/PHP:Float=5,ffdfaf87,,,,,,,,,--- -PHP/PHP:Function=11,ffd0d0d0,,,,,,,,,--- -PHP/PHP:HTML Comment=8,ff808080,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff808080,ff002b36,0,,,,,ff859900,,--- -PHP/PHP:Hex=4,ffdfaf87,,0,,,,,,,--- -PHP/PHP:Identifier=9,ffafdf87,ffeeeeee,,,,,,,,--- -PHP/PHP:Keyword=1,ffafafdf,ffeeeeee,,,,,,,,--- -PHP/PHP:Library Constant=1,ffd0d0d0,,0,,,,,,,--- -PHP/PHP:Normal Text=0,ffd0d0d0,,,,,,,,,--- -PHP/PHP:Octal=4,ffdfaf87,,0,,,,,,,--- -PHP/PHP:Other=9,ffdf8787,ffeeeeee,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ffdfafdf,ffffffff,0,0,,,,,,--- -PHP/PHP:Special method=11,ff87afdf,,,,,,,,,--- -PHP/PHP:String=7,ffffffaf,,0,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ffdfafdf,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,ff87afdf,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting PHP/PHP - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -PHP/PHP:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -PHP/PHP:Classes=1,,,,,,,,,,--- -PHP/PHP:Comment=8,,,,,,,,,,--- -PHP/PHP:Constant=1,,,0,,,,,,,--- -PHP/PHP:Control Structures=1,ffa1a100,ffffffff,0,0,,,,,,--- -PHP/PHP:Decimal=3,,,,,,,,,,--- -PHP/PHP:Error=13,,,,,,,,,,--- -PHP/PHP:Float=5,,,,,,,,,,--- -PHP/PHP:Function=11,ffd0d0d0,,,,,,,,,--- -PHP/PHP:HTML Comment=8,,,,,,,,,,--- -PHP/PHP:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -PHP/PHP:Hex=4,,,,,,,,,,--- -PHP/PHP:Identifier=9,,,,,,,,,,--- -PHP/PHP:Keyword=1,,,,,,,,,,--- -PHP/PHP:Library Constant=1,,,1,,,,,,,--- -PHP/PHP:Normal Text=0,ffd0d0d0,,,,,,,,,--- -PHP/PHP:Octal=4,,,,,,,,,,--- -PHP/PHP:Other=9,,,,,,,,,,--- -PHP/PHP:PHP Text=0,,,,,,,,,,--- -PHP/PHP:Special Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- -PHP/PHP:Special method=11,,,,,,,,,,--- -PHP/PHP:String=7,,,,,,,,,,--- -PHP/PHP:Types=2,,,,,,,,,,--- -PHP/PHP:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting POV-Ray - Schema xoria256] -POV-Ray:Char=6,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Comment=8,ff008000,ff008000,0,0,,,,,,--- -POV-Ray:Constant=5,ff0000ff,ffffffff,0,0,,,,,,--- -POV-Ray:Declaration=1,ff000080,ff000080,1,0,,,,,,--- -POV-Ray:Declare Keyword=1,ff990099,ff990099,1,0,,,,,,--- -POV-Ray:Declare Macro=1,ffcc0000,ff990099,1,0,,,,,,--- -POV-Ray:Directives=9,ff3300ff,ff3300ff,1,0,,,,,,--- -POV-Ray:Filetype=2,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Float=5,ff0000ff,ffffffff,0,0,,,,,,--- -POV-Ray:Functions=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Keyword=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Macro=1,ff000080,ff000080,1,0,,,,,,--- -POV-Ray:Normal Text=0,ff000000,ffffffff,0,0,,,,,,--- -POV-Ray:Objects=1,ff800000,ffffffff,0,0,,,,,,--- -POV-Ray:Region Marker=12,,,,,,,,,,--- -POV-Ray:String=7,ffff0000,ffff0000,0,0,,,,,,--- -POV-Ray:String Char=6,ffff00ff,ffff00ff,0,0,,,,,,--- -POV-Ray:Symbol=0,ff660099,ff660099,0,0,,,,,,--- -POV-Ray:Texturing=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Transforms=1,ff000080,ffffffff,0,0,,,,,,--- -POV-Ray:Unofficial=1,ff0080d0,ffffffff,0,0,,,,,,--- - -[Highlighting Pango - Schema xoria256] -Pango:Color=5,,,,,,,,,,--- -Pango:Decimal=3,,,,,,,,,,--- -Pango:Element=1,,,,,,,,,,--- -Pango:Error=13,,,,,,,,,,--- -Pango:Key=9,,,,,,,,,,--- -Pango:Normal Text=0,,,,,,,,,,--- -Pango:String=7,,,,,,,,,,--- -Pango:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting Pascal - Schema xoria256] -Pascal:Alert=10,,,,,,,,,,--- -Pascal:Comment=8,,,,,,,,,,--- -Pascal:Directive=9,,,,,,,,,,--- -Pascal:Hex=4,,,,,,,,,,--- -Pascal:ISO/Delphi Extended=1,ff000080,,,,,,,,,--- -Pascal:Keyword=1,,,,,,,,,,--- -Pascal:Normal Text=0,,,,,,,,,,--- -Pascal:Number=3,,,,,,,,,,--- -Pascal:String=7,,,,,,,,,,--- -Pascal:Type=2,,,,,,,,,,--- - -[Highlighting Perl - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Perl:Bin=4,ffdfaf87,,,,,,,,,--- -Perl:Comment=8,ff808080,,,,,,,,,--- -Perl:Data=0,ffd0d0d0,,,,,,,,,--- -Perl:Data Type=2,ffdfafdf,,,,,,,,,--- -Perl:Decimal=3,ffdfaf87,,,,,,,,,--- -Perl:Float=5,ffdfaf87,,,,,,,,,--- -Perl:Function=11,ff87afdf,,,,,,,,,--- -Perl:Hex=4,ffdfaf87,,,,,,,,,--- -Perl:Keyword=1,ff87afdf,,,,,,,,,--- -Perl:Normal Text=0,,,,,,,,,,--- -Perl:Nothing=8,,,,,,,,,,--- -Perl:Octal=4,ffdfaf87,,,,,,,,,--- -Perl:Operator=1,ff87afdf,ffeeeeee,,,,,,,,--- -Perl:Pattern=9,ffffffaf,,,,,,,,,--- -Perl:Pattern Character Class=4,,,,,,,,,,--- -Perl:Pattern Internal Operator=6,ff87afdf,,,,,,,,,--- -Perl:Pod=8,,,,,,,,,,--- -Perl:Pragma=1,ff87afdf,,,,,,,,,--- -Perl:Special Variable=2,ffdfafdf,ffeeeeee,0,0,,,,,,--- -Perl:String=7,ffffffaf,ffeeeeee,0,,,,,,,--- -Perl:String (interpolated)=7,ffffffaf,,,,,,,,,--- -Perl:String Special Character=6,ffffffaf,,,,,,,,,--- - -[Highlighting PicAsm - Schema xoria256] -PicAsm:Alert=10,,,,,,,,,,--- -PicAsm:Based Numbers=4,,,,,,,,,,--- -PicAsm:Char=6,,,,,,,,,,--- -PicAsm:Comment=8,,,,,,,,,,--- -PicAsm:Directives=9,,,,,,,,,,--- -PicAsm:Error=13,,,,,,,,,,--- -PicAsm:GPASM-macros=0,ff000000,ff000000,1,1,,,,,,--- -PicAsm:InstructionAttr=0,ff000080,ff000080,0,1,,,,,,--- -PicAsm:Instructions=1,,,,,,,,,,--- -PicAsm:Normal Text=0,,,,,,,,,,--- -PicAsm:Prep. Lib=9,,,,,,,,,,--- -PicAsm:Preprocessor=9,,,,,,,,,,--- -PicAsm:String=7,,,,,,,,,,--- -PicAsm:Symbol=0,ffff0000,ff083194,0,0,,,,,,--- -PicAsm:Unbased Numbers=3,,,,,,,,,,--- - -[Highlighting Pig - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -Pig:Comment=8,,,,,,,,,,--- -Pig:Float=5,,,,,,,,,,--- -Pig:Function=2,,,1,,,,,,,--- -Pig:Grunt=9,ffba8200,ffffffff,1,0,,,,,,--- -Pig:Hex=4,,,,,,,,,,--- -Pig:Int=3,,,,,,,,,,--- -Pig:Keyword=1,,,,,,,,,,--- -Pig:Normal Text=0,,,,,,,,,,--- -Pig:Octal=4,,,,,,,,,,--- -Pig:Operator=0,,,1,,,,,,,--- -Pig:Parameter=9,ff25a000,ffffffff,,,,,,,,--- -Pig:Statement=9,,,1,,,,,,,--- -Pig:String=7,,,,,,,,,,--- -Pig:Type=2,,,,,,,,,,--- - -[Highlighting Pike - Schema xoria256] -Pike:Binary=4,,,,,,,,,,--- -Pike:Builtin Function=11,,,,,,,,,,--- -Pike:Char=6,,,,,,,,,,--- -Pike:Comment=8,,,,,,,,,,--- -Pike:Data Type=2,,,,,,,,,,--- -Pike:Decimal=3,,,,,,,,,,--- -Pike:Float=5,,,,,,,,,,--- -Pike:Hex=4,,,,,,,,,,--- -Pike:Keyword=1,,,,,,,,,,--- -Pike:Normal Text=0,,,,,,,,,,--- -Pike:Note=10,,,,,,,,,,--- -Pike:Octal=4,,,,,,,,,,--- -Pike:Preprocessor=9,,,,,,,,,,--- -Pike:Preprocessor Lib=7,,,,,,,,,,--- -Pike:String=7,,,,,,,,,,--- -Pike:String Char=6,,,,,,,,,,--- - -[Highlighting PostScript - Schema xoria256] -PostScript:Comment=8,,,,,,,,,,--- -PostScript:Data Type=2,,,,,,,,,,--- -PostScript:Decimal=3,,,,,,,,,,--- -PostScript:Float=5,,,,,,,,,,--- -PostScript:Header=9,,,,,,,,,,--- -PostScript:Keyword=1,,,,,,,,,,--- -PostScript:Normal Text=0,,,,,,,,,,--- -PostScript:String=7,,,,,,,,,,--- - -[Highlighting PostScript Printer Description - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -PostScript Printer Description:Colon=1,,,,,,,,,,--- -PostScript Printer Description:Comment=8,,,,,,,,,,--- -PostScript Printer Description:Keyword=1,,,,,,,,,,--- -PostScript Printer Description:Option=9,,,,,,,,,,--- -PostScript Printer Description:Value=7,,,,,,,,,,--- - -[Highlighting Prolog - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -Prolog:"double-quoted"=9,,,,,,,,,,--- -Prolog:% italic predicates: w/ side effects=8,,,,,,,,,,--- -Prolog:%BEGIN folding region=12,,,,,,,,,,--- -Prolog:'quo Ted'=7,,,,,,,,,,--- -Prolog:( ) \x5b \x5d=0,,,,,,,,,,--- -Prolog:/* !avoid leading * to have folding */=8,,,,,,,,,,--- -Prolog:0'a (!use background)=4,,,,,,,ff0c0c0c,ffffffff,,--- -Prolog:0b1001 0o007 0xF1=4,,,,,,,,,,--- -Prolog:1 2 3 42=3,,,,,,,,,,--- -Prolog:2.718281E-9=5,,,,,,,,,,--- -Prolog:Arithmetics=2,,,1,1,,,,,,--- -Prolog:Dynamic Clause Management=1,,,,1,,,,,,--- -Prolog:Float Arithmetics=5,,,1,1,,,,,,--- -Prolog:Guru Meditation=0,ffff0000,ff00ffff,1,0,,,,,,--- -Prolog:Guru Meditation Terms=0,ffff0000,ff00ffff,0,1,,,,,,--- -Prolog:ISO Bogus=10,,,1,1,,,,,,--- -Prolog:Integer Arithmetics=3,,,1,1,,,,,,--- -Prolog:Logic & Control=1,,,,,,,,,,--- -Prolog:Normal Text=0,,,,,,,,,,--- -Prolog:Prolog State=11,,,1,,,,,,,--- -Prolog:Stream I/O=11,,,,1,,,,,,--- -Prolog:Syntax Error=13,,,,,,,,,,--- -Prolog:Type Checking=2,,,,,,,,,,--- -Prolog:Warning (!use background)=10,,,,,,,fffc000c,ff03fff3,,--- -Prolog:_VARIABLE=2,,,0,,,,,,,--- -Prolog:`back-quoted`=7,,,,1,,,,,,--- -Prolog:escaped (!use background)=6,,,,,,,ff0c0c0c,ffffffff,,--- -Prolog:other built-in operator=11,,,,,,,,,,--- -Prolog:other built-in predicate=11,,,,,,,,,,--- -Prolog:{ DCG }=1,,,,,,,,,,--- - -[Highlighting Protobuf - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Protobuf:Alert=10,,,,,,,,,,--- -Protobuf:Char=6,,,,,,,,,,--- -Protobuf:Comment=8,,,,,,,,,,--- -Protobuf:Data Type=2,,,,,,,,,,--- -Protobuf:Decimal=3,,,,,,,,,,--- -Protobuf:Error=13,,,,,,,,,,--- -Protobuf:Float=5,,,,,,,,,,--- -Protobuf:Hex=4,,,,,,,,,,--- -Protobuf:Imports=9,,,,,,,,,,--- -Protobuf:Keyword=1,,,,,,,,,,--- -Protobuf:Normal Text=0,,,,,,,,,,--- -Protobuf:Octal=4,,,,,,,,,,--- -Protobuf:String=7,,,,,,,,,,--- -Protobuf:String Char=6,,,,,,,,,,--- -Protobuf:Symbol=0,,,,,,,,,,--- - -[Highlighting Puppet - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Puppet:Access Control=1,,,,,,,,,,--- -Puppet:Alert=10,,,,,,,,,,--- -Puppet:Attribute=0,,,,,,,,,,--- -Puppet:Attribute Definition=9,,,,,,,,,,--- -Puppet:Attribute Name=1,,,0,1,,,,,,--- -Puppet:AttributeOp=9,,,,,,,,,,--- -Puppet:Bin=4,,,,,,,,,,--- -Puppet:Blockcomment=8,,,,,,,,,,--- -Puppet:Class=9,,,,,,,,,,--- -Puppet:Class Variable=9,,,,,,,,,,--- -Puppet:Collector=9,,,,,,,,,,--- -Puppet:Command=7,,,,,,,,,,--- -Puppet:Comment=8,,,,,,,,,,--- -Puppet:Constant=2,,,,,,,,,,--- -Puppet:Constant Value=2,,,,,,,,,,--- -Puppet:Data=0,,,,,,,,,,--- -Puppet:Dec=3,,,,,,,,,,--- -Puppet:Definition=1,,,,,,,,,,--- -Puppet:Delimiter=0,,,,,,,,,,--- -Puppet:Error=13,,,,,,,,,,--- -Puppet:Escape=5,,,,,,,,,,--- -Puppet:Expression=9,,,,,,,,,,--- -Puppet:Float=5,,,,,,,,,,--- -Puppet:Function=11,,,,,,,,,,--- -Puppet:GDL input=9,,,,,,,,,,--- -Puppet:Here Document=9,,,,,,,,,,--- -Puppet:Hex=4,,,,,,,,,,--- -Puppet:Instance Variable=9,,,,,,,,,,--- -Puppet:Keyword=1,,,,,,,,,,--- -Puppet:List=2,,,,,,,,,,--- -Puppet:Member=0,,,,,,,,,,--- -Puppet:Metaparameters=0,,,,,,,,,,--- -Puppet:Node=2,,,,,,,,,,--- -Puppet:Normal Text=0,,,,,,,,,,--- -Puppet:Number=3,,,,,,,,,,--- -Puppet:Octal=4,,,,,,,,,,--- -Puppet:Operator=0,,,,,,,,,,--- -Puppet:Pseudo variable=3,,,,,,,,,,--- -Puppet:RDoc Value=9,,,,,,,,,,--- -Puppet:Raw String=7,,,,,,,,,,--- -Puppet:RegExp=9,,,,,,,,,,--- -Puppet:Region Marker=0,,,,,,,,,,--- -Puppet:Regular Expression=9,,,,,,,,,,--- -Puppet:Resource=2,,,,,,,,,,--- -Puppet:ResourceReference=9,,,,,,,,,,--- -Puppet:String=7,,,,,,,,,,--- -Puppet:Subclass=0,,,,,,,,,,--- -Puppet:Substitution=9,,,,,,,,,,--- -Puppet:Symbol=7,,,,,,,,,,--- -Puppet:Variable=2,,,,,,,,,,--- - -[Highlighting PureBasic - Schema xoria256] -PureBasic:Comment=8,,,,,,,,,,--- -PureBasic:Constant=2,,,,,,,,,,--- -PureBasic:Functions=11,,,,,,,,,,--- -PureBasic:Keyword=1,,,,,,,,,,--- -PureBasic:Normal Text=0,,,,,,,,,,--- -PureBasic:Number=3,,,,,,,,,,--- -PureBasic:Region Marker=12,,,,,,,,,,--- -PureBasic:String=7,,,,,,,,,,--- - -[Highlighting Python - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,ffdfaf87,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,ffffffaf,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,ffdfafdf,,,,,,,,,--- -Python:Builtin Function=2,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=8,,,,,,,,,,--- -Python:Complex=9,,,,,,,,,,--- -Python:Decorator=9,ffafdf87,ffeeeeee,,,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=9,ffdf8787,ffeeeeee,,,,,,,,--- -Python:Extensions=9,ffafdf87,ffeeeeee,,,,,,,,--- -Python:Float=5,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=4,,,,,,,,,,--- -Python:Int=3,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=4,,,,,,,,,,--- -Python:Operator=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -Python:Overloaders=9,ffafdf87,ffeeeeee,,,,,,,,--- -Python:Preprocessor=6,,,,,,,,,,--- -Python:Raw String=7,,,,,,,,,,--- -Python:Special Variable=9,,,,,,,,,,--- -Python:String=7,,,,,,,,,,--- -Python:String Char=6,,,,,,,,,,--- -Python:String Substitution=9,ffafdf87,ffeeeeee,,,,,,,,--- - -[Highlighting QML - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -QML:Elements=1,ff008000,ff00ffff,0,0,,,,,,--- -QML:Import=1,,,,,,,,,,--- -QML:ImportValue=7,,,,,,,,,,--- -QML:Keywords=1,,,,,,,,,,--- -QML:Normal Text=0,,,,,,,,,,--- -QML:Property Type=2,,,,,,,,,,--- -QML:Signal=1,ff0095ff,ffffffff,,,,,,,,--- - -[Highlighting QMake - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -QMake:Backslash Code=1,,,1,,,,,,,--- -QMake:Comment=8,,,,,,,,,,--- -QMake:Function=11,,,,,,,,,,--- -QMake:Keyword=1,,,,,,,,,,--- -QMake:Normal Text=0,,,,,,,,,,--- -QMake:Predefined Variable=2,,,1,,,,,,,--- -QMake:String=7,,,,,,,,,,--- -QMake:System=9,,,,,,,,,,--- -QMake:Variable=2,,,,,,,,,,--- - -[Highlighting Quake Script - Schema xoria256] -Quake Script:Action=0,ffffcc00,ff00ff00,1,1,,,,,,--- -Quake Script:Command=1,,,,,,,,,,--- -Quake Script:Comment=8,,,,,,,,,,--- -Quake Script:Float=5,,,,,,,,,,--- -Quake Script:Hex=4,,,,,,,,,,--- -Quake Script:Identifier=2,,,,,,,,,,--- -Quake Script:Int=5,,,,,,,,,,--- -Quake Script:Normal Text=0,,,,,,,,,,--- -Quake Script:String=0,ffff0000,ff00ff00,0,1,,,,,,--- -Quake Script:String Char=6,,,,,,,,,,--- -Quake Script:Symbol=9,,,,,,,,,,--- -Quake Script:Variable=0,ff0000ff,ff00ff00,1,1,,,,,,--- - -[Highlighting R Markdown - Schema xoria256] -Alerts:Alert Level 1=28,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=28,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=28,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Alerts_indent:Normal Text=0,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=21,,,,,,,,,,--- -Doxygen:Comment=21,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=12,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=29,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=21,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=29,,,,,,,,,,--- -Doxygen:Message Sequence Chart=21,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=25,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=16,,,,,,,,,,--- -Doxygen:Verbatim=21,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=29,,,,1,,,,,,--- -GCCExtensions:GNU Functions=29,,,,,,,,,,--- -GCCExtensions:GNU Macros=29,,,,,,,,,,--- -GCCExtensions:GNU Types=29,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -LaTeX:Alert=28,,,,,,,,,,--- -LaTeX:Ampersand=0,ff002793,,1,,,,,,,--- -LaTeX:Bullet=0,ffff00c4,,1,,,,,,,--- -LaTeX:Column Separator=0,ff002793,,,,,,,,,--- -LaTeX:Comment=21,,,,,,,,,,--- -LaTeX:Environment=0,ff0000d0,ffffff90,0,0,,,,,,--- -LaTeX:Error=28,,,,,,,,,,--- -LaTeX:Keyword=0,ff800000,ff60ffff,0,0,,,,,,--- -LaTeX:Keyword Mathmode=0,ff606000,ffffd0ff,0,0,,,,,,--- -LaTeX:Math=0,ff00a000,ffff40ff,0,0,,,,,,--- -LaTeX:Normal Text=0,,,,,,,,,,--- -LaTeX:Option Text=0,,,,,,,,,,--- -LaTeX:Region Marker=25,,,,,,,,,,--- -LaTeX:Structure=0,fff00000,ff80ffd0,0,0,,,,,,--- -LaTeX:Structure Keyword=0,ff800000,ff60ffff,1,0,,,,,,--- -LaTeX:Structure Keyword Mathmode=0,ff606000,ffffd0ff,1,0,,,,,,--- -LaTeX:Structure Math=0,ff00a000,ffff40ff,1,0,,,,,,--- -LaTeX:Structure Text=0,ff000000,ffffffff,1,0,,,,,,--- -LaTeX:Verbatim=0,ffa08000,ff80d0ff,0,0,,,,,,--- -Markdown:Normal Text=0,,,,,,,,,,--- -Markdown:autolink=29,,,,,,,,,,--- -Markdown:bl-emphasis=19,,,,1,,,,,,--- -Markdown:bl-strong=19,,,1,,,,,,,--- -Markdown:blockquote=16,,,,,,,,,,--- -Markdown:bq-emphasis=16,,,,1,,,,,,--- -Markdown:bq-strong=16,,,1,,,,,,,--- -Markdown:bullet=19,,,,,,,,,,--- -Markdown:code=18,,,,,,,,,,--- -Markdown:comment=21,,,,,,,,,,--- -Markdown:common=0,,,,,,,,,,--- -Markdown:emphasis=0,,,,1,,,,,,--- -Markdown:footnote=29,,,,1,,,,,,--- -Markdown:h1=2,,,1,,,,,,,--- -Markdown:h2=2,,,1,,,,,,,--- -Markdown:h3=2,,,1,,,,,,,--- -Markdown:h4=2,,,1,,,,,,,--- -Markdown:h5=2,,,1,,,,,,,--- -Markdown:h6=2,,,1,,,,,,,--- -Markdown:inlineimage=28,,,0,0,,,,,,--- -Markdown:inlinelink=29,,,,,,,,,,--- -Markdown:linebreak=0,ff999999,,,,,,,,,--- -Markdown:mailtolink=29,,,,,,,,,,--- -Markdown:meta=21,,,,,,,,,,--- -Markdown:nl-emphasis=19,,,,1,,,,,,--- -Markdown:nl-strong=19,,,1,,,,,,,--- -Markdown:numlist=19,,,,,,,,,,--- -Markdown:refimage=28,,,0,0,,,,,,--- -Markdown:reflink=29,,,,,,,,,,--- -Markdown:reflinktarget=29,,,0,0,,,,,,--- -Markdown:ruler=0,,,1,,,,,,,--- -Markdown:strikeout=0,,,,,1,,,,,--- -Markdown:strong=0,,,1,,,,,,,--- -Markdown:strongemphasis=0,,,1,1,,,,,,--- -Modelines:Comment=21,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=17,,,,,,,,,,--- -Modelines:Option OFF=29,,,,,,,,,,--- -Modelines:Option ON=29,,,,,,,,,,--- -Modelines:String=12,,,,,,,,,,--- -Modelines:Value=29,,,,,,,,,,--- -Modelines:Variable=2,,,,,,,,,,--- -Python:Builtin Function=16,,,,,,,,,,--- -Python:Command Keyword=1,,,,,,,,,,--- -Python:Comment=21,,,,,,,,,,--- -Python:Complex=29,,,,,,,,,,--- -Python:Decorator=29,ff8f6b32,ff8f6b32,,0,,,,,,--- -Python:Definition Keyword=1,,,,,,,,,,--- -Python:Exceptions=29,ff054d00,ff054d00,1,0,,,,,,--- -Python:Extensions=29,ff0095ff,ff0095ff,1,0,,,,,,--- -Python:Float=19,,,,,,,,,,--- -Python:Flow Control Keyword=1,,,,,,,,,,--- -Python:Hex=18,,,,,,,,,,--- -Python:Int=17,,,,,,,,,,--- -Python:Normal Text=0,,,,,,,,,,--- -Python:Octal=18,,,,,,,,,,--- -Python:Operator=0,,,1,,,,,,,--- -Python:Overloaders=29,ff000e52,ff000e52,1,0,,,,,,--- -Python:Preprocessor=10,,,,,,,,,,--- -Python:Raw String=12,,,,,,,,,,--- -Python:Special Variable=29,,,,,,,,,,--- -Python:String=12,,,,,,,,,,--- -Python:String Char=10,,,,,,,,,,--- -Python:String Substitution=29,ff0057ae,ff0057ae,,,,,,,,--- -R Markdown:MathMode=25,ff00a000,,,,,,,,,--- -R Markdown:Normal Text=0,,,,,,,,,,--- -R Markdown:Structure=25,,,,,,,,,,--- -R Script:Assign=0,ff336366,ffccc099,1,0,,,,,,--- -R Script:Comment=21,,,,,,,,,,--- -R Script:Control Structure=0,ff0000bf,ffbfbf00,,,,,,,,--- -R Script:Error=30,,,,,,,,,,--- -R Script:Float=19,,,,,,,,,,--- -R Script:Headline=0,ffb00000,ffb00000,1,0,,,,,,--- -R Script:Identifier=16,,,,,,,,,,--- -R Script:Int=17,,,,,,,,,,--- -R Script:Keyword=1,,,,,,,,,,--- -R Script:Normal Text=0,,,,,,,,,,--- -R Script:Operator=0,ff803f00,ff000077,0,0,,,,,,--- -R Script:Reserved Words=29,,,,,,,,,,--- -R Script:String=12,,,,,,,,,,--- -R Script:String Char=10,,,,,,,,,,--- -R Script:Symbol=0,,,,,,,,,,--- -YAML:Alias=16,,,,,,,,,,--- -YAML:Comment=21,,,,,,,,,,--- -YAML:Data Types=16,,,,,,,,,,--- -YAML:Directive=29,,,,,,,,,,--- -YAML:Document Header=29,,,,,,,,,,--- -YAML:End of Document=21,,,,,,,,,,--- -YAML:Error=30,,,,,,,,,,--- -YAML:Hash=0,,,,,,,,,,--- -YAML:Key=2,,,,,,,,,,--- -YAML:List=0,,,,,,,,,,--- -YAML:Normal Text=0,,,,,,,,,,--- -YAML:Operator=1,,,,,,,,,,--- -YAML:Reference=16,,,,,,,,,,--- -YAML:String=12,,,,,,,,,,--- - -[Highlighting R Script - Schema xoria256] -R Script:Assign=0,ff336366,ffccc099,1,0,,,,,,--- -R Script:Comment=8,,,,,,,,,,--- -R Script:Control Structure=0,ff0000bf,ffbfbf00,,,,,,,,--- -R Script:Error=13,,,,,,,,,,--- -R Script:Float=5,,,,,,,,,,--- -R Script:Headline=0,ffb00000,ffb00000,1,0,,,,,,--- -R Script:Identifier=2,,,,,,,,,,--- -R Script:Int=3,,,,,,,,,,--- -R Script:Keyword=1,,,,,,,,,,--- -R Script:Normal Text=0,,,,,,,,,,--- -R Script:Operator=0,ff803f00,ff000077,0,0,,,,,,--- -R Script:Reserved Words=9,,,,,,,,,,--- -R Script:String=7,,,,,,,,,,--- -R Script:String Char=6,,,,,,,,,,--- -R Script:Symbol=0,,,,,,,,,,--- - -[Highlighting RELAX NG - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -RELAX NG:Attribute=9,,,,,,,,,,--- -RELAX NG:Attribute Value=7,ff800000,ffffffff,0,0,,,,,,--- -RELAX NG:Comment=8,,,,,,,,,,--- -RELAX NG:Invalid=13,,,,,,,,,,--- -RELAX NG:Normal Text=0,,,,,,,,,,--- -RELAX NG:RELAX NG Tags=1,ff000080,ffffffff,1,0,,,,,,--- -RELAX NG:Tag=1,,,,,,,,,,--- - -[Highlighting REXX - Schema xoria256] -REXX:Alert=10,,,,,,,,,,--- -REXX:Built In=0,ff000090,,,,,,,,,--- -REXX:Comment=8,,,,,,,,,,--- -REXX:Function=11,,,,,,,,,,--- -REXX:Instructions=1,,,,,,,,,,--- -REXX:Normal Text=0,,,,,,,,,,--- -REXX:String=7,,,,,,,,,,--- -REXX:Symbol=0,,,,,,,,,,--- - -[Highlighting RPM Spec - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -RPM Spec:Comment=8,,,,,,,,,,--- -RPM Spec:Enumeration=9,,,,,,,,,,--- -RPM Spec:Error=13,,,,,,,,,,--- -RPM Spec:Escaped character=6,,,,,,,,,,--- -RPM Spec:Fallback for separator spaces=0,,,,,,,,,,--- -RPM Spec:Hint=13,,,,,,,,,,--- -RPM Spec:Integer=3,,,,,,,,,,--- -RPM Spec:Keyword=1,,,,,,,,,,--- -RPM Spec:Line break=1,,,,,,,,,,--- -RPM Spec:Macro call=11,,,,,,,,,,--- -RPM Spec:Section=12,,,,,,,,,,--- -RPM Spec:Shell commands=0,,,,,,,,,,--- -RPM Spec:String=7,,,,,,,,,,--- -RPM Spec:Tag=2,,,,,,,,,,--- -RPM Spec:Warning=13,,,,,,,,,,--- - -[Highlighting RSI IDL - Schema xoria256] -RSI IDL:Char=6,,,,,,,,,,--- -RSI IDL:Command=4,ff050505,ffffffff,1,,,,,,,--- -RSI IDL:Comment=8,ff2b7805,ff945ca4,,,,,,,,--- -RSI IDL:Data Type=2,,,,,,,,,,--- -RSI IDL:Decimal=3,ff000000,ffffffff,,,,,,,,--- -RSI IDL:Float=3,ff000000,ffffffff,,,,,,,,--- -RSI IDL:Hex=3,,,,,,,,,,--- -RSI IDL:IOCommand=2,ff050505,ffffffff,1,,,,,,,--- -RSI IDL:Keyword=1,ff1414e4,ffffd60b,1,,,,,,,--- -RSI IDL:Normal Text=0,,,,,,,,,,--- -RSI IDL:Octal=3,,,,,,,,,,--- -RSI IDL:String=7,ffff0000,ffff0000,,,,,,,,--- -RSI IDL:String Char=6,ffff0000,ffff0000,,,,,,,,--- -RSI IDL:bracketed=5,,,,,,,,,,--- - -[Highlighting RapidQ - Schema xoria256] -RapidQ:Comment=8,,,,,,,,,,--- -RapidQ:Decimal=3,,,,,,,,,,--- -RapidQ:Directive=9,,,,,,,,,,--- -RapidQ:Float=5,,,,,,,,,,--- -RapidQ:Keyword=1,,,,,,,,,,--- -RapidQ:Normal Text=0,,,,,,,,,,--- -RapidQ:Object=11,,,,,,,,,,--- -RapidQ:Propormeth=2,,,,,,,,,,--- -RapidQ:String=7,,,,,,,,,,--- - -[Highlighting RelaxNG-Compact - Schema xoria256] -RelaxNG-Compact:Comments=8,,,,,,,,,,--- -RelaxNG-Compact:Datatypes=2,,,,,,,,,,--- -RelaxNG-Compact:Definitions=11,,,,,,,,,,--- -RelaxNG-Compact:Keywords=1,,,,,,,,,,--- -RelaxNG-Compact:Node Names=9,,,,,,,,,,--- -RelaxNG-Compact:Normal Text=0,,,,,,,,,,--- -RelaxNG-Compact:String=7,,,,,,,,,,--- - -[Highlighting RenderMan RIB - Schema xoria256] -RenderMan RIB:Comment=8,,,,,,,,,,--- -RenderMan RIB:External Resource=1,,,,,,,,,,--- -RenderMan RIB:Float=5,,,,,,,,,,--- -RenderMan RIB:Geometric Primitive=1,,,,,,,,,,--- -RenderMan RIB:Graphics State=1,,,,,,,,,,--- -RenderMan RIB:Integer=3,,,,,,,,,,--- -RenderMan RIB:Motion=1,,,,,,,,,,--- -RenderMan RIB:Normal Text=0,,,,,,,,,,--- -RenderMan RIB:String=7,,,,,,,,,,--- - -[Highlighting Replicode - Schema xoria256] -Alerts:Alert Level 1=28,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=28,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=28,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Modelines:Comment=21,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=17,,,,,,,,,,--- -Modelines:Option OFF=29,,,,,,,,,,--- -Modelines:Option ON=29,,,,,,,,,,--- -Modelines:String=12,,,,,,,,,,--- -Modelines:Value=29,,,,,,,,,,--- -Modelines:Variable=2,,,,,,,,,,--- -Replicode:Bracket=29,,,,,,,,,,--- -Replicode:Builtin Class=2,,,1,,,,,,,--- -Replicode:Class Definition=29,,,,,,,,,,--- -Replicode:Class Name=2,,,,,,,,,,--- -Replicode:Comment=21,,,,,,,,,,--- -Replicode:Constant=1,,,1,,,,,,,--- -Replicode:EmptyList=29,ff0095ff,ff0095ff,1,0,,,,,,--- -Replicode:Entity=1,,,1,1,,,,,,--- -Replicode:Error=30,,,,,,,,,,--- -Replicode:Float=19,,,,,,,,,,--- -Replicode:Function=2,,,1,0,,,,,,--- -Replicode:Group=1,,,0,1,,,,,,--- -Replicode:Hex=18,,,,,,,,,,--- -Replicode:Identifier=2,,,,,,,,,,--- -Replicode:List=25,,,,,,,,,,--- -Replicode:ListBracket=29,ff0095ff,ff0095ff,0,0,,,,,,--- -Replicode:Member=1,,,0,,,,,,,--- -Replicode:MultiList=30,,,,,,,,,,--- -Replicode:Normal Text=0,,,,,,,,,,--- -Replicode:Number=17,,,,,,,,,,--- -Replicode:Operator=2,,,0,1,,,,,,--- -Replicode:Path=12,,,1,,,,,,,--- -Replicode:Preprocessor=0,,,1,,,,,,,--- -Replicode:String=12,,,,,,,,,,--- - -[Highlighting Restructured Text - Schema xoria256] -Restructured Text:Code=2,,,,,,,,,,--- -Restructured Text:Directive=3,,,,,,,,,,--- -Restructured Text:Emphasys=0,,,,1,,,,,,--- -Restructured Text:Error=13,,,,,,,,,,--- -Restructured Text:Keyword=1,,,,,,,,,,--- -Restructured Text:Link=7,,,,,,,,,,--- -Restructured Text:LinkUrl=7,,,1,,,,,,,--- -Restructured Text:Literal=2,,,,,,,,,,--- -Restructured Text:Normal Text=0,,,,,,,,,,--- -Restructured Text:OrderedList=3,,,,,,,,,,--- -Restructured Text:Strong=0,,,1,,,,,,,--- -Restructured Text:Title=1,,,1,,,,,,,--- -Restructured Text:UnorderedList=5,,,,,,,,,,--- - -[Highlighting Rich Text Format - Schema xoria256] -Rich Text Format:Braces=1,,,,,,,,,,--- -Rich Text Format:Character=10,,,,,,,,,,--- -Rich Text Format:Control words=2,,,,,,,,,,--- -Rich Text Format:Error=30,,,,,,,,,,--- -Rich Text Format:Numeric parameter=17,,,,,,,,,,--- -Rich Text Format:Text=12,,,,,,,,,,--- - -[Highlighting Roff - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Roff:Comment=8,,,,,,,,,,--- -Roff:Error=13,,,,,,,,,,--- -Roff:Escape=6,,,,,,,,,,--- -Roff:Font=9,,,,,,,,,,--- -Roff:Format Macros=1,,,,,,,,,,--- -Roff:GNU Macros=2,,,,,,,,,,--- -Roff:Glyph=9,,,,,,,,,,--- -Roff:Identifier=7,,,,,,,,,,--- -Roff:Layout Macros=1,,,,,,,,,,--- -Roff:Normal Text=0,,,,,,,,,,--- -Roff:Number=3,,,,,,,,,,--- -Roff:Other Macros=11,,,,,,,,,,--- -Roff:Register=9,,,,,,,,,,--- -Roff:String=7,,,,,,,,,,--- - -[Highlighting Ruby - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffe85848,,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffca9219,,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,ffd0d0d0,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Ruby:Access Control=1,ff87afdf,ffeeeeee,,,,,,,,--- -Ruby:Attribute Definition=9,ff87afdf,,,,,,,,,--- -Ruby:Bin=4,ffdfaf87,,,,,,,,,--- -Ruby:Blockcomment=8,ff808080,,,,,,,,,--- -Ruby:Char=6,ffffffaf,,,,,,,,,--- -Ruby:Class Variable=9,ffdfafdf,,,,,,,,,--- -Ruby:Command=7,ffffffaf,ffeeeeee,,,,,,,,--- -Ruby:Comment=8,ff808080,,,,,,,,,--- -Ruby:Constant=2,ffafafdf,,,,,,,,,--- -Ruby:Constant Value=2,ffafafdf,ffeeeeee,,,,,,,,--- -Ruby:Data=0,,,,,,,,,,--- -Ruby:Dec=3,ffdfaf87,,,,,,,,,--- -Ruby:Default globals=2,ffdfafdf,ffeeeeee,0,,,,,,,--- -Ruby:Definition=1,ffdfafdf,,,,,,,,,--- -Ruby:Delimiter=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -Ruby:Error=13,,,,,,,,,,--- -Ruby:Expression=9,,,,,,,,,,--- -Ruby:Float=5,ffdfaf87,,,,,,,,,--- -Ruby:GDL input=9,,,,,,,,,,--- -Ruby:Global Constant=2,ffafafdf,ffeeeeee,0,,,,,,,--- -Ruby:Global Variable=2,ffdfafdf,ffeeeeee,,,,,,,,--- -Ruby:Here Document=9,ffffffaf,,,,,,,,,--- -Ruby:Hex=4,ffdfaf87,,,,,,,,,--- -Ruby:Instance Variable=9,ffdfafdf,,,,,,,,,--- -Ruby:Kernel methods=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -Ruby:Keyword=1,ff87afdf,,,,,,,,,--- -Ruby:Member=0,,,,,,,,,,--- -Ruby:Message=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -Ruby:Module mixin methods=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -Ruby:Normal Text=0,ffd0d0d0,,,,,,,,,--- -Ruby:Octal=4,ffdfaf87,,,,,,,,,--- -Ruby:Operator=0,ffd0d0d0,ffeeeeee,,,,,,,,--- -Ruby:Pseudo variable=3,ffdfafdf,,,,,,,,,--- -Ruby:RDoc Value=9,ff808080,,,,,,,,,--- -Ruby:Raw String=7,ffffffaf,ffeeeeee,,,,,,,,--- -Ruby:Region Marker=0,ff808080,ffeeeeee,,,,,,,,--- -Ruby:Regular Expression=9,ffffffaf,ffeeeeee,,,,,,,,--- -Ruby:String=7,ffffffaf,,,,,,,,,--- -Ruby:Substitution=9,,,,,,,,,,--- -Ruby:Symbol=7,ffffffaf,ffeeeeee,,,,,,,,--- - -[Highlighting Ruby/Rails/RHTML - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Ruby/Rails/RHTML:Access Control=1,ff0000ff,,,,,,,,,--- -Ruby/Rails/RHTML:Alert=10,,,,,,,,,,--- -Ruby/Rails/RHTML:Attribute=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Attribute Definition=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Bin=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Blockcomment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:CDATA=4,,,1,,,,,,,--- -Ruby/Rails/RHTML:Char=6,,,,,,,,,,--- -Ruby/Rails/RHTML:Class Variable=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Command=7,ffaa3000,,,,,,,,,--- -Ruby/Rails/RHTML:Comment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:Constant=2,,,,,,,,,,--- -Ruby/Rails/RHTML:Constant Value=2,ffbb1188,,,,,,,,,--- -Ruby/Rails/RHTML:Data=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Dec=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Default globals=2,ffc00000,,1,,,,,,,--- -Ruby/Rails/RHTML:Definition=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Delimiter=6,,,,,,,,,,--- -Ruby/Rails/RHTML:Doctype=2,,,1,,,,,,,--- -Ruby/Rails/RHTML:Element=1,,,,,,,,,,--- -Ruby/Rails/RHTML:EntityRef=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Error=13,,,,,,,,,,--- -Ruby/Rails/RHTML:Expression=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Float=5,,,,,,,,,,--- -Ruby/Rails/RHTML:GDL input=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Global Constant=2,ffbb1188,,1,,,,,,,--- -Ruby/Rails/RHTML:Global Variable=2,ffc00000,,,,,,,,,--- -Ruby/Rails/RHTML:Hex=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Instance Variable=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Kernel methods=0,ff000080,ffffffff,,,,,,,,--- -Ruby/Rails/RHTML:Keyword=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Member=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Message=0,ff4000a7,,,,,,,,,--- -Ruby/Rails/RHTML:Normal Text=0,,,,,,,,,,--- -Ruby/Rails/RHTML:Octal=4,,,,,,,,,,--- -Ruby/Rails/RHTML:Operator=6,,,,,,,,,,--- -Ruby/Rails/RHTML:PEntityRef=3,,,,,,,,,,--- -Ruby/Rails/RHTML:Processing Instruction=1,,,,,,,,,,--- -Ruby/Rails/RHTML:Pseudo variable=3,,,,,,,,,,--- -Ruby/Rails/RHTML:RDoc Value=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Raw String=7,ffdd4a4a,ffdd4a4a,,,,,,,,--- -Ruby/Rails/RHTML:Region Marker=0,ff0000ff,,,,,,,,,--- -Ruby/Rails/RHTML:Regular Expression=9,ff4a5704,,,,,,,,,--- -Ruby/Rails/RHTML:Ruby Comment=8,,,,,,,,,,--- -Ruby/Rails/RHTML:Ruby Normal Text=0,,,,,,,,,,--- -Ruby/Rails/RHTML:String=7,,,,,,,,,,--- -Ruby/Rails/RHTML:Substitution=9,,,,,,,,,,--- -Ruby/Rails/RHTML:Symbol=7,ffd40000,,,,,,,,,--- -Ruby/Rails/RHTML:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting Rust - Schema xoria256] -Rust:Attribute=9,,,,,,,,,,--- -Rust:CConstant=0,ff116644,,,,,,,,,--- -Rust:CType=0,ff4e9a06,,,,,,,,,--- -Rust:CharEscape=6,ffff0000,,1,,,,,,,--- -Rust:Character=6,ffff0000,,,,,,,,,--- -Rust:Comment=8,ffaa5500,,,,,,,,,--- -Rust:Constant=1,ff116644,,,,,,,,,--- -Rust:Definition=0,ff0000ff,,,,,,,,,--- -Rust:Error=13,,,,,,,,,,--- -Rust:Keyword=1,ff770088,,1,,,,,,,--- -Rust:Lifetime=9,,,1,,,,,,,--- -Rust:Macro=9,,,,,,,,,,--- -Rust:Normal Text=0,,,,,,,,,,--- -Rust:Number=3,ff116644,,,,,,,,,--- -Rust:Scope=0,ff0055aa,,,,,,,,,--- -Rust:Self=1,ffff0000,,1,,,,,,,--- -Rust:String=7,ffff0000,,,,,,,,,--- -Rust:Trait=1,ff4e9a06,,1,,,,,,,--- -Rust:Type=1,ff4e9a06,,1,,,,,,,--- - -[Highlighting SCSS - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffe85848,,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffca9219,,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -SCSS:Alert=10,,,,,,,,,,--- -SCSS:At Rule=3,ffafdf87,,,,,,,,,--- -SCSS:Comment=8,ff808080,,,,,,,,,--- -SCSS:Error=13,,,,,,,,,,--- -SCSS:Important=1,,,,,,,,,,--- -SCSS:Media=3,ffafdf87,,0,,,,,,,--- -SCSS:Normal Text=0,,,,,,,,,,--- -SCSS:Property=1,ffafafdf,,,,,,,,,--- -SCSS:Region Marker=12,,,,,,,,,,--- -SCSS:Selector Attr=6,,,,,,,,,,--- -SCSS:Selector Class=5,,,,,,,,,,--- -SCSS:Selector Id=5,ffdfafdf,,0,,,,,,,--- -SCSS:Selector Pseudo=3,ffdfafdf,,,,,,,,,--- -SCSS:String=7,ffffffaf,,,,,,,,,--- -SCSS:Unknown Property=1,ffafafdf,,,0,,,,,,--- -SCSS:Value=2,ffdfaf87,,,,,,,,,--- -SCSS:Variable=0,,,,,,,,,,--- - -[Highlighting SGML - Schema xoria256] -SGML:Attribute Name=9,,,,,,,,,,--- -SGML:Attribute Value=2,,,,,,,,,,--- -SGML:Comment=8,,,,,,,,,,--- -SGML:Normal Text=0,,,,,,,,,,--- -SGML:Tag=1,,,,,,,,,,--- - -[Highlighting SML - Schema xoria256] -SML:Comment=8,,,,,,,,,,--- -SML:Data Type=2,,,,,,,,,,--- -SML:Decimal=3,,,,,,,,,,--- -SML:Float=5,,,,,,,,,,--- -SML:Keyword=1,,,,,,,,,,--- -SML:Normal Text=0,,,,,,,,,,--- -SML:Notice=7,,,,,,,,,,--- -SML:String=7,,,,,,,,,,--- -SML:String Char=6,,,,,,,,,,--- - -[Highlighting SQL (MySQL) - Schema xoria256] -SQL (MySQL):Comment=8,,,,,,,,,,--- -SQL (MySQL):Data Type=2,,,,,,,,,,--- -SQL (MySQL):Decimal=3,,,,,,,,,,--- -SQL (MySQL):Float=5,,,,,,,,,,--- -SQL (MySQL):Function=11,,,,,,,,,,--- -SQL (MySQL):Hex=4,,,,,,,,,,--- -SQL (MySQL):Keyword=1,,,,,,,,,,--- -SQL (MySQL):Name=7,ff008800,,,,,,,,,--- -SQL (MySQL):Normal Text=0,,,,,,,,,,--- -SQL (MySQL):Operator=0,,,,,,,,,,--- -SQL (MySQL):Preprocessor=9,,,,,,,,,,--- -SQL (MySQL):String=7,,,,,,,,,,--- -SQL (MySQL):String Char=6,,,,,,,,,,--- -SQL (MySQL):Symbol=6,,,,,,,,,,--- - -[Highlighting SQL (Oracle) - Schema xoria256] -SQL (Oracle):Comment=21,,,,,,,,,,--- -SQL (Oracle):Data Type=16,,,,,,,,,,--- -SQL (Oracle):Decimal=17,,,,,,,,,,--- -SQL (Oracle):Float=19,,,,,,,,,,--- -SQL (Oracle):Function=2,,,,,,,,,,--- -SQL (Oracle):Identifier=29,,,,,,,,,,--- -SQL (Oracle):Keyword=1,,,,,,,,,,--- -SQL (Oracle):Normal Text=0,,,,,,,,,,--- -SQL (Oracle):Operator=0,,,,,,,,,,--- -SQL (Oracle):Preprocessor=29,,,,,,,,,,--- -SQL (Oracle):String=12,,,,,,,,,,--- -SQL (Oracle):String Char=10,,,,,,,,,,--- -SQL (Oracle):Symbol=10,,,,,,,,,,--- - -[Highlighting SQL (PostgreSQL) - Schema xoria256] -SQL (PostgreSQL):Comment=8,,,,,,,,,,--- -SQL (PostgreSQL):Data Type=2,,,,,,,,,,--- -SQL (PostgreSQL):Decimal=3,,,,,,,,,,--- -SQL (PostgreSQL):Float=5,,,,,,,,,,--- -SQL (PostgreSQL):Function=11,,,,,,,,,,--- -SQL (PostgreSQL):Identifier=9,,,,,,,,,,--- -SQL (PostgreSQL):Keyword=1,,,,,,,,,,--- -SQL (PostgreSQL):Normal Text=0,,,,,,,,,,--- -SQL (PostgreSQL):Operator=0,,,,,,,,,,--- -SQL (PostgreSQL):Preprocessor=9,,,,,,,,,,--- -SQL (PostgreSQL):String=7,,,,,,,,,,--- -SQL (PostgreSQL):String Char=6,,,,,,,,,,--- -SQL (PostgreSQL):Symbol=6,,,,,,,,,,--- - -[Highlighting SQL - Schema xoria256] -SQL:Comment=8,,,,,,,,,,--- -SQL:Data Type=2,,,,,,,,,,--- -SQL:Decimal=3,,,,,,,,,,--- -SQL:External Variable=6,,,,,,,,,,--- -SQL:Float=5,,,,,,,,,,--- -SQL:Function=11,,,,,,,,,,--- -SQL:Hex=4,,,,,,,,,,--- -SQL:Identifier=9,,,,,,,,,,--- -SQL:Keyword=1,,,,,,,,,,--- -SQL:Normal Text=0,,,,,,,,,,--- -SQL:Operator=0,,,,,,,,,,--- -SQL:Preprocessor=9,,,,,,,,,,--- -SQL:String=7,,,,,,,,,,--- -SQL:String Char=6,,,,,,,,,,--- -SQL:Symbol=6,,,,,,,,,,--- - -[Highlighting Sather - Schema xoria256] -Sather:Char=6,,,,,,,,,,--- -Sather:Comment=8,,,,,,,,,,--- -Sather:Data Type=2,,,,,,,,,,--- -Sather:Decimal=3,,,,,,,,,,--- -Sather:Features=9,,,,,,,,,,--- -Sather:Float=5,,,,,,,,,,--- -Sather:Keyword=1,,,,,,,,,,--- -Sather:Normal Text=0,,,,,,,,,,--- -Sather:String=7,,,,,,,,,,--- - -[Highlighting Scala - Schema xoria256] -Alerts:Alert Level 1=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 2=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Alert Level 3=10,ffffffaf,ffeeeeee,0,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,ffdfaf87,ffeeeeee,0,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,ffafafdf,ffeeeeee,0,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffffffaf,ffeeeeee,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Javadoc:BlockTag=1,ff87afdf,ffeeeeee,0,0,,,,,,--- -Javadoc:InlineTag=1,ff87afdf,ffeeeeee,0,0,,,,,,--- -Javadoc:Javadoc=8,ff808080,ffeeeeee,,,,,,,,--- -Javadoc:JavadocFS=8,ff808080,ffeeeeee,0,0,,,,,,--- -Javadoc:JavadocParam=1,ff808080,ffeeeeee,0,0,,,,,,--- -Javadoc:Normal Text=0,ff808080,,,,,,,,,--- -Javadoc:SeeTag=1,ff87afdf,ffeeeeee,0,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Scala:Char=6,ffffffaf,,,,,,,,,--- -Scala:Comment=8,ff808080,,,,,,,,,--- -Scala:Data Type=2,ffafafdf,ffeeeeee,,,,,,,,--- -Scala:Decimal=3,ffdfaf87,,,,,,,,,--- -Scala:Float=5,ffdfaf87,,,,,,,,,--- -Scala:Function=11,ffd0d0d0,,,,,,,,,--- -Scala:Hex=4,ffdfaf87,,,,,,,,,--- -Scala:Imports=1,ffd0d0d0,ffeeeeee,0,0,,,,,,--- -Scala:Java15=0,ffd0d0d0,ffeeeeee,0,0,,,,,,--- -Scala:Keyword=1,ff87afdf,,,,,,,,,--- -Scala:Normal Text=0,ffd0d0d0,,,,,,,,,--- -Scala:Octal=4,ffdfaf87,,,,,,,,,--- -Scala:PrintfString=7,ffffffaf,,,,,,,,,--- -Scala:Scala2=0,ffd0d0d0,ffeeeeee,0,0,,,,,,--- -Scala:StaticImports=1,ffd0d0d0,ffeeeeee,0,0,,,,,,--- -Scala:String=7,ffffffaf,,,,,,,,,--- -Scala:String Char=6,ffffffaf,,,,,,,,,--- -Scala:Symbol=0,ffd0d0d0,,,,,,,,,--- - -[Highlighting Scheme - Schema xoria256] -Scheme:BaseN=4,,,,,,,,,,--- -Scheme:Brackets1=0,ffff0000,ff000000,1,0,,,,,,--- -Scheme:Brackets2=0,ffff8800,ff000000,1,0,,,,,,--- -Scheme:Brackets3=0,ff888800,ff000000,1,0,,,,,,--- -Scheme:Brackets4=0,ff008800,ff000000,1,0,,,,,,--- -Scheme:Brackets5=0,ff000088,ff000000,1,0,,,,,,--- -Scheme:Brackets6=0,ff880088,ff000000,1,0,,,,,,--- -Scheme:Char=6,,,,,,,,,,--- -Scheme:Comment=8,,,,,,,,,,--- -Scheme:Data=2,,,,,,,,,,--- -Scheme:Decimal=3,,,,,,,,,,--- -Scheme:Definition=1,ffd22811,,,,,,,,,--- -Scheme:Float=5,,,,,,,,,,--- -Scheme:Function=11,,,,,,,,,,--- -Scheme:Keyword=1,,,,,,,,,,--- -Scheme:Normal=0,,,,,,,,,,--- -Scheme:Operator=1,ffd22811,,,,,,,,,--- -Scheme:Region Marker=12,,,,,,,,,,--- -Scheme:String=7,,,,,,,,,,--- - -[Highlighting SiSU - Schema xoria256] -SiSU:Bold=0,ff800000,ff60ffff,1,0,,,,,,--- -SiSU:Break=0,ffff0000,ff60ffff,0,0,,,,,,--- -SiSU:Comment=8,,,,,,,,,,--- -SiSU:Endnote=0,ff086800,ff60ffff,0,0,,,,,,--- -SiSU:Group=12,,,,,,,,,,--- -SiSU:Header=0,ff1c869b,ff60ffff,0,0,,,,,,--- -SiSU:Heading=0,ffff0000,ff60ffff,1,0,,,,,,--- -SiSU:Indent=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Insert=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Italic=0,ff800000,ff60ffff,0,1,,,,,,--- -SiSU:Keyword=1,,,,,,,,,,--- -SiSU:Link=0,ff0000ff,ff60ffff,0,0,,,,,,--- -SiSU:Normal Text=0,,,,,,,,,,--- -SiSU:Strike=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:String=7,,,,,,,,,,--- -SiSU:Structure=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Subscript=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Superscript=0,fff00000,ff80ffd0,0,0,,,,,,--- -SiSU:Underscore=0,fff00000,ff80ffd0,0,0,,,,,,--- - -[Highlighting Sieve - Schema xoria256] -Sieve:Comment=8,,,,,,,,,,--- -Sieve:Decimal=3,,,,,,,,,,--- -Sieve:Function=11,,,,,,,,,,--- -Sieve:Keyword=1,,,,,,,,,,--- -Sieve:Normal Text=0,,,,,,,,,,--- -Sieve:String=7,,,,,,,,,,--- -Sieve:String Char=6,,,,,,,,,,--- -Sieve:Symbol=0,,,,,,,,,,--- -Sieve:Tagged Argument=9,,,,,,,,,,--- - -[Highlighting Spice - Schema xoria256] -Spice:Comment=8,,,,,,,,,,--- -Spice:Keyword=1,,,,,,,,,,--- -Spice:Normal Text=0,,,,,,,,,,--- -Spice:Number=3,,,,,,,,,,--- -Spice:String=7,,,,,,,,,,--- - -[Highlighting Stata - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Stata:Comment=8,,,,,,,,,,--- -Stata:Constants=2,,,,,,,,,,--- -Stata:Data Type=2,,,,,,,,,,--- -Stata:Functions=11,,,,,,,,,,--- -Stata:GlobalMacro=9,,,,,,,,,,--- -Stata:Graphics=4,,,,,,,,,,--- -Stata:Keyword=1,,,,,,,,,,--- -Stata:Macro=9,,,,,,,,,,--- -Stata:Mata=1,,,,,,,,,,--- -Stata:Normal Text=0,,,,,,,,,,--- -Stata:String=7,,,,,,,,,,--- -Stata:String Char=6,,,,,,,,,,--- -Stata:System Params=3,,,,,,,,,,--- - -[Highlighting SystemC - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -SystemC:Comment=8,,,,,,,,,,--- -SystemC:Data Type=2,,,,,,,,,,--- -SystemC:Extensions-Functions=1,ff000000,ffffffff,1,1,,,,,,--- -SystemC:Extensions-Keywords=1,,,,,,,,,,--- -SystemC:Extensions-Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -SystemC:Keyword=1,,,,,,,,,,--- -SystemC:Normal Text=0,,,,,,,,,,--- - -[Highlighting SystemVerilog - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -SystemVerilog:Assert Keyword=1,,,,,,,,,,--- -SystemVerilog:Binary=4,,,,,,,,,,--- -SystemVerilog:Block Keyword=1,,,,,,,,,,--- -SystemVerilog:Block Name=2,,,,,,,,,,--- -SystemVerilog:Case Keyword=1,,,,,,,,,,--- -SystemVerilog:Checker Keyword=1,,,,,,,,,,--- -SystemVerilog:Class Keyword=1,,,,,,,,,,--- -SystemVerilog:Comment=8,,,,,,,,,,--- -SystemVerilog:Config Keyword=1,,,,,,,,,,--- -SystemVerilog:Confitional Keyword=1,,,,,,,,,,--- -SystemVerilog:Constraint Keyword=1,,,,,,,,,,--- -SystemVerilog:Continuous Assign Keyword=1,,,,,,,,,,--- -SystemVerilog:Coverage Keyword=1,,,,,,,,,,--- -SystemVerilog:DPI Keyword=1,,,,,,,,,,--- -SystemVerilog:Data Type Keyword=2,,,,,,,,,,--- -SystemVerilog:Decimal=4,,,,,,,,,,--- -SystemVerilog:Delay=4,,,,,,,,,,--- -SystemVerilog:Deprecated Keyword=13,,,,,,,,,,--- -SystemVerilog:Drive/Charge Strength Keyword=4,,,,,,,,,,--- -SystemVerilog:Event Keyword=1,,,,,,,,,,--- -SystemVerilog:Float=5,,,,,,,,,,--- -SystemVerilog:Gate Instantiation Keyword=2,,,,,,,,,,--- -SystemVerilog:Generator Keyword=1,,,,,,,,,,--- -SystemVerilog:Hex=4,,,,,,,,,,--- -SystemVerilog:Integer=3,,,,,,,,,,--- -SystemVerilog:Interface Keyword=1,,,,,,,,,,--- -SystemVerilog:Keyword=1,,,,,,,,,,--- -SystemVerilog:Library Keyword=1,,,,,,,,,,--- -SystemVerilog:Loop Keyword=1,,,,,,,,,,--- -SystemVerilog:Method Keyword=1,,,,,,,,,,--- -SystemVerilog:Normal Text=0,,,,,,,,,,--- -SystemVerilog:Octal=4,,,,,,,,,,--- -SystemVerilog:PLI Task=2,,,,,,,,,,--- -SystemVerilog:Port Connection=2,,,,,,,,,,--- -SystemVerilog:Prep. Lib=5,,,,,,,,,,--- -SystemVerilog:Preprocessor=9,,,,,,,,,,--- -SystemVerilog:Preprocessor Keyword=9,,,,,,,,,,--- -SystemVerilog:Process Block Keyword=1,,,,,,,,,,--- -SystemVerilog:Specify Keyword=1,,,,,,,,,,--- -SystemVerilog:Standard Library=9,,,,,,,,,,--- -SystemVerilog:String=7,,,,,,,,,,--- -SystemVerilog:String Char=6,,,,,,,,,,--- -SystemVerilog:Symbol=0,,,,,,,,,,--- -SystemVerilog:System Task Keyword=2,,,,,,,,,,--- -SystemVerilog:Time Keyword=1,,,,,,,,,,--- -SystemVerilog:Type Keyword=1,,,,,,,,,,--- - -[Highlighting TADS 3 - Schema xoria256] -TADS 3:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -TADS 3:Comment=8,,,,,,,,,,--- -TADS 3:Decimal=3,,,,,,,,,,--- -TADS 3:Embedded Expression=0,ff000000,ffffffff,0,1,,,,,,--- -TADS 3:HTML Tag=1,ff0f0f8f,ffffffff,0,1,,,,,,--- -TADS 3:Hex=4,,,,,,,,,,--- -TADS 3:Keyword=1,,,,,,,,,,--- -TADS 3:Normal Text=0,,,,,,,,,,--- -TADS 3:Octal=4,,,,,,,,,,--- -TADS 3:Preprocessor=9,,,,,,,,,,--- -TADS 3:String=7,,,,,,,,,,--- -TADS 3:Symbol=0,,,,,,,,,,--- -TADS 3:ValString=7,,,,,,,,,,--- - -[Highlighting TI Basic - Schema xoria256] -TI Basic:Assignment=9,,,,,,,,,,--- -TI Basic:Keyword=1,,,,,,,,,,--- -TI Basic:Matrix=0,,,,,,,,,,--- -TI Basic:Normal Text=0,,,,,,,,,,--- -TI Basic:Special operators=0,,,,,,,,,,--- -TI Basic:String=7,,,,,,,,,,--- - -[Highlighting TT2 - Schema xoria256] -TT2:Backslash Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -TT2:Comment=8,,,,,,,,,,--- -TT2:Control Structures=1,ff0000dd,ffffffff,1,0,,,,,,--- -TT2:Decimal=3,,,,,,,,,,--- -TT2:Float=5,,,,,,,,,,--- -TT2:Function=1,ff0000ff,ff00ffff,0,0,,,,,,--- -TT2:HTML Comment=8,,,,,,,,,,--- -TT2:HTML Tag=1,ff0f0000,ffffffff,1,0,,,,,,--- -TT2:Hex=4,,,,,,,,,,--- -TT2:Identifier=9,,,,,,,,,,--- -TT2:Keyword=1,,,,,,,,,,--- -TT2:Normal Text=0,,,,,,,,,,--- -TT2:Octal=4,,,,,,,,,,--- -TT2:Operator=1,ff008000,,,,,,,,,--- -TT2:Other=9,,,,,,,,,,--- -TT2:String=7,ffff6c6c,ffff6c6c,0,0,,,,,,--- -TT2:TT2 Text=0,,,,,,,,,,--- -TT2:Types=2,,,,,,,,,,--- -TT2:Variable=1,ff5555ff,ffffffff,1,0,,,,,,--- - -[Highlighting Tcl/Tk - Schema xoria256] -Tcl/Tk:Char=6,,,,,,,,,,--- -Tcl/Tk:Comment=8,,,,,,,,,,--- -Tcl/Tk:Decimal=3,,,,,,,,,,--- -Tcl/Tk:Float=5,,,,,,,,,,--- -Tcl/Tk:Keyword=1,,,,,,,,,,--- -Tcl/Tk:Normal Text=0,,,,,,,,,,--- -Tcl/Tk:Parameter=9,,,,,,,,,,--- -Tcl/Tk:Region Marker=12,,,,,,,,,,--- -Tcl/Tk:String=7,,,,,,,,,,--- -Tcl/Tk:Variable=2,,,,,,,,,,--- - -[Highlighting Tcsh - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Tcsh:Backquote=1,,,,,,,,,,--- -Tcsh:Builtin=1,,,,,,,,,,--- -Tcsh:Command=1,,,,,,,,,,--- -Tcsh:Comment=8,,,,,,,,,,--- -Tcsh:Control=1,,,,,,,,,,--- -Tcsh:Escape=2,,,,,,,,,,--- -Tcsh:Expression=9,,,,,,,,,,--- -Tcsh:Function=11,,,,,,,,,,--- -Tcsh:Keyword=1,,,,,,,,,,--- -Tcsh:Label=9,,,,,,,,,,--- -Tcsh:Normal Text=0,,,,,,,,,,--- -Tcsh:Option=0,,,,,,,,,,--- -Tcsh:Path=0,,,,,,,,,,--- -Tcsh:Redirection=1,,,,,,,,,,--- -Tcsh:String DoubleQ=7,,,,,,,,,,--- -Tcsh:String Escape=2,,,,,,,,,,--- -Tcsh:String SingleQ=7,,,,,,,,,,--- -Tcsh:String Transl.=7,,,,,,,,,,--- -Tcsh:Variable=9,,,,,,,,,,--- - -[Highlighting Texinfo - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Texinfo:Command=11,,,,,,,,,,--- -Texinfo:Comment=8,,,,,,,,,,--- -Texinfo:Normal Text=0,,,,,,,,,,--- - -[Highlighting Textile - Schema xoria256] -Textile:Normal Text=0,,,,,,,,,,--- -Textile:blockattrs=8,,,,,,,,,,--- -Textile:comment=8,,,,,,,,,,--- -Textile:htmllink=2,,,,,,,,,,--- -Textile:image=5,,,,,,,,,,--- -Textile:imagefilename=1,,,,,,,,,,--- -Textile:itemlist=2,,,,,,,,,,--- -Textile:macro=8,,,1,,,,,,,--- -Textile:sectionblockattrs=8,,,1,,,,,,,--- -Textile:sectionheader=11,,,1,,,,,,,--- -Textile:sectiontitle=1,,,1,,,,,,,--- -Textile:strikeout=0,,,,,1,,,,,--- -Textile:strong=0,,,1,,,,,,,--- -Textile:textblock=8,,,,,,,,,,--- - -[Highlighting Troff Mandoc - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Roff:Comment=8,,,,,,,,,,--- -Roff:Error=13,,,,,,,,,,--- -Roff:Escape=6,,,,,,,,,,--- -Roff:Font=9,,,,,,,,,,--- -Roff:Format Macros=1,,,,,,,,,,--- -Roff:GNU Macros=2,,,,,,,,,,--- -Roff:Glyph=9,,,,,,,,,,--- -Roff:Identifier=7,,,,,,,,,,--- -Roff:Layout Macros=1,,,,,,,,,,--- -Roff:Normal Text=0,,,,,,,,,,--- -Roff:Number=3,,,,,,,,,,--- -Roff:Other Macros=11,,,,,,,,,,--- -Roff:Register=9,,,,,,,,,,--- -Roff:String=7,,,,,,,,,,--- -Troff Mandoc:Comment=8,,,,,,,,,,--- -Troff Mandoc:Formatting=1,,,,,,,,,,--- -Troff Mandoc:Headings=1,,,,,,,,,,--- -Troff Mandoc:Identifier=7,,,,,,,,,,--- -Troff Mandoc:Macros=11,,,,,,,,,,--- -Troff Mandoc:Normal Text=0,,,,,,,,,,--- -Troff Mandoc:Other Macros=11,,,,,,,,,,--- -Troff Mandoc:Paragraphs=2,,,,,,,,,,--- - -[Highlighting UnrealScript - Schema xoria256] -UnrealScript:Char=6,,,,,,,,,,--- -UnrealScript:Comment=8,,,,,,,,,,--- -UnrealScript:Data Type=2,,,,,,,,,,--- -UnrealScript:Decimal=3,,,,,,,,,,--- -UnrealScript:Float=5,,,,,,,,,,--- -UnrealScript:Hex=4,,,,,,,,,,--- -UnrealScript:Keyword=1,,,,,,,,,,--- -UnrealScript:Normal Text=0,,,,,,,,,,--- -UnrealScript:Octal=4,,,,,,,,,,--- -UnrealScript:Preprocessor=9,,,,,,,,,,--- -UnrealScript:Region Marker=12,,,,,,,,,,--- -UnrealScript:String=7,,,,,,,,,,--- -UnrealScript:String Char=6,,,,,,,,,,--- -UnrealScript:Symbol=0,,,,,,,,,,--- - -[Highlighting VHDL - Schema xoria256] -VHDL:Attribute=4,,,,,,,,,,--- -VHDL:Bit=6,,,,,,,,,,--- -VHDL:Comment=8,,,,,,,,,,--- -VHDL:Control=1,ff223388,,,,,,,,,--- -VHDL:Data Type=2,,,,,,,,,,--- -VHDL:Error=13,ffff0000,,1,,,,,,,--- -VHDL:Integer=3,,,,,,,,,,--- -VHDL:Keyword=1,,,,,,,,,,--- -VHDL:Name=1,ffbb6600,,1,,,,,,,--- -VHDL:Normal Text=0,,,,,,,,,,--- -VHDL:Operator=9,,,,,,,,,,--- -VHDL:Process=1,ff0099aa,,,,,,,,,--- -VHDL:Range=9,,,,,,,,,,--- -VHDL:Redirection=1,ff223388,,,,,,,,,--- -VHDL:Reference=2,,,,,,,,,,--- -VHDL:Region Marker=12,,,,,,,,,,--- -VHDL:Signal=9,,,,,,,,,,--- -VHDL:Vector=7,,,,,,,,,,--- - -[Highlighting VRML - Schema xoria256] -VRML:Comment=8,,,,,,,,,,--- -VRML:Data Type=2,,,,,,,,,,--- -VRML:Decimal=3,,,,,,,,,,--- -VRML:Float=5,,,,,,,,,,--- -VRML:Hex=4,,,,,,,,,,--- -VRML:Keyword=1,,,,,,,,,,--- -VRML:Node=0,ff000080,ffffffff,1,0,,,,,,--- -VRML:Normal Text=0,,,,,,,,,,--- -VRML:String=7,,,,,,,,,,--- -VRML:String Char=6,,,,,,,,,,--- - -[Highlighting Vala - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Vala:Char=6,,,,,,,,,,--- -Vala:Comment=8,,,,,,,,,,--- -Vala:Data Type=2,,,,,,,,,,--- -Vala:Decimal=3,,,,,,,,,,--- -Vala:Error=13,,,,,,,,,,--- -Vala:Escaped Code=1,ff0f0f8f,ffffffff,1,0,,,,,,--- -Vala:Extensions=1,ff0095ff,ffffffff,1,0,,,,,,--- -Vala:Float=5,,,,,,,,,,--- -Vala:Hex=4,,,,,,,,,,--- -Vala:Keyword=1,,,,,,,,,,--- -Vala:MultiLine String=7,,,,,,,,,,--- -Vala:Normal Text=0,,,,,,,,,,--- -Vala:Octal=4,,,,,,,,,,--- -Vala:Prep. Lib=9,,,,,,,,,,--- -Vala:Preprocessor=9,,,,,,,,,,--- -Vala:Region Marker=12,,,,,,,,,,--- -Vala:String=7,,,,,,,,,,--- -Vala:String Char=6,,,,,,,,,,--- -Vala:Symbol=0,,,,,,,,,,--- -Vala:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting Valgrind Suppression - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Valgrind Suppression:Comment=8,,,,,,,,,,--- -Valgrind Suppression:ErrorKind=9,,,,,,,,,,--- -Valgrind Suppression:FrameKind=11,,,,,,,,,,--- -Valgrind Suppression:Normal Text=0,,,,,,,,,,--- -Valgrind Suppression:RuleName=1,,,,,,,,,,--- - -[Highlighting Varnish Configuration Language - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C:Alert=10,,,,,,,,,,--- -C:Binary=4,,,,,,,,,,--- -C:Char=6,,,,,,,,,,--- -C:Comment=8,,,,,,,,,,--- -C:Data Type=2,,,,,,,,,,--- -C:Decimal=3,,,,,,,,,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,,,,,,,,,,--- -C:Hex=4,,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,,--- -C:Region Marker=12,,,,,,,,,,--- -C:String=7,,,,,,,,,,--- -C:String Char=6,,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Varnish Configuration Language:Action Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Backend Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Comment=8,,,,,,,,,,--- -Varnish Configuration Language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Condition Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Data Size=3,,,,,,,,,,--- -Varnish Configuration Language:Data Type=2,,,,,,,,,,--- -Varnish Configuration Language:Decimal=3,,,,,,,,,,--- -Varnish Configuration Language:Director Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Director Type=2,,,,,,,,,,--- -Varnish Configuration Language:Duration=3,,,,,,,,,,--- -Varnish Configuration Language:Float=5,,,,,,,,,,--- -Varnish Configuration Language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Configuration Language:Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Normal Text=0,,,,,,,,,,--- -Varnish Configuration Language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Probe Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Region Marker=0,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Function=11,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Sub=11,,,1,,,,,,,--- -Varnish Configuration Language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:String=7,,,0,0,,,,,,--- -Varnish Configuration Language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Configuration Language:VMod Identifier=2,ff0000ff,ff0000ff,,,,,,,,--- -Varnish Configuration Language:Well-known VMod=2,ff0000ff,ff0000ff,1,,,,,,,--- - -[Highlighting Varnish Test Case language - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Bash:Backquote=1,,,,,,,,,,--- -Bash:Builtin=1,ff880088,,,,,,,,,--- -Bash:Command=1,ffcc00cc,,,,,,,,,--- -Bash:Comment=8,,,,,,,,,,--- -Bash:Control=1,,,,,,,,,,--- -Bash:Error=13,,,,,,,,,,--- -Bash:Escape=2,,,,,,,,,,--- -Bash:Expression=9,,,,,,,,,,--- -Bash:Function=11,,,,,,,,,,--- -Bash:Keyword=1,,,,,,,,,,--- -Bash:Normal Text=0,,,,,,,,,,--- -Bash:Option=0,,,,,,,,,,--- -Bash:OtherCommand=1,ff330033,,,,,,,,,--- -Bash:Path=0,,,,,,,,,,--- -Bash:Redirection=1,ff223388,,,,,,,,,--- -Bash:String DoubleQ=7,,,,,,,,,,--- -Bash:String Escape=2,,,,,,,,,,--- -Bash:String SingleQ=7,,,,,,,,,,--- -Bash:String Transl.=7,,,,,,,,,,--- -Bash:Variable=9,,,,,,,,,,--- -C:Alert=10,,,,,,,,,,--- -C:Binary=4,,,,,,,,,,--- -C:Char=6,,,,,,,,,,--- -C:Comment=8,,,,,,,,,,--- -C:Data Type=2,,,,,,,,,,--- -C:Decimal=3,,,,,,,,,,--- -C:Error=13,,,,,,,,,,--- -C:Float=5,,,,,,,,,,--- -C:Hex=4,,,,,,,,,,--- -C:Keyword=1,,,,,,,,,,--- -C:Normal Text=0,,,,,,,,,,--- -C:Octal=4,,,,,,,,,,--- -C:Prep. Lib=9,,,,,,,,,,--- -C:Preprocessor=9,,,,,,,,,,--- -C:Region Marker=12,,,,,,,,,,--- -C:String=7,,,,,,,,,,--- -C:String Char=6,,,,,,,,,,--- -C:Symbol=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Varnish Configuration Language:Action Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Backend Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Comment=8,,,,,,,,,,--- -Varnish Configuration Language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Condition Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Data Size=3,,,,,,,,,,--- -Varnish Configuration Language:Data Type=2,,,,,,,,,,--- -Varnish Configuration Language:Decimal=3,,,,,,,,,,--- -Varnish Configuration Language:Director Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Director Type=2,,,,,,,,,,--- -Varnish Configuration Language:Duration=3,,,,,,,,,,--- -Varnish Configuration Language:Float=5,,,,,,,,,,--- -Varnish Configuration Language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Configuration Language:Keyword=1,,,,,,,,,,--- -Varnish Configuration Language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Normal Text=0,,,,,,,,,,--- -Varnish Configuration Language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Configuration Language:Probe Property=2,ff0000ff,ff0000ff,1,0,,,,,,--- -Varnish Configuration Language:Region Marker=0,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Function=11,,,,,,,,,,--- -Varnish Configuration Language:Standard VCL Sub=11,,,1,,,,,,,--- -Varnish Configuration Language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Configuration Language:String=7,,,0,0,,,,,,--- -Varnish Configuration Language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Configuration Language:VMod Identifier=2,ff0000ff,ff0000ff,,,,,,,,--- -Varnish Configuration Language:Well-known VMod=2,ff0000ff,ff0000ff,1,,,,,,,--- -Varnish Test Case language:Action Keyword=1,,,,,,,,,,--- -Varnish Test Case language:Arithmetic Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Client Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Comment=8,,,,,,,,,,--- -Varnish Test Case language:Comparison Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Decimal=3,,,,,,,,,,--- -Varnish Test Case language:Float=5,,,,,,,,,,--- -Varnish Test Case language:HTTP Header=2,ff0d62ff,ff0d62ff,0,0,,,,,,--- -Varnish Test Case language:HTTP Property=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Test Case language:HTTP WebDAV method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP X- Header=2,ff0d62ff,ff0d62ff,0,1,,,,,,--- -Varnish Test Case language:HTTP announce=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP custom method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:HTTP method=2,ff562579,ff562579,1,,,,,,,--- -Varnish Test Case language:Keyword=1,,,,,,,,,,--- -Varnish Test Case language:Logical Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Normal Text=0,,,,,,,,,,--- -Varnish Test Case language:Operator=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Region Marker=0,,,,,,,,,,--- -Varnish Test Case language:RxResp Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Sema Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Server Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:Storage=2,ff0000ff,ff0000ff,0,0,,,,,,--- -Varnish Test Case language:String=7,,,0,0,,,,,,--- -Varnish Test Case language:TCP Property=2,ff0000ff,ff0000ff,0,1,,,,,,--- -Varnish Test Case language:TxReq Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:TxResp Keyword=1,ff008000,,0,,,,,,,--- -Varnish Test Case language:Varnish Identifier=2,ff0d62ff,ff0d62ff,0,,,,,,,--- -Varnish Test Case language:VarnishStat metric=2,ff0000ff,ff0000ff,0,0,,,,,,--- - -[Highlighting Velocity - Schema xoria256] -Velocity:Comment=8,,,,,,,,,,--- -Velocity:Keyword=1,,,,,,,,,,--- -Velocity:Normal Text=0,,,,,,,,,,--- -Velocity:Other=9,,,,,,,,,,--- -Velocity:Properties=0,ff8ac6ff,ffffffff,0,1,,,,,,--- -Velocity:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- - -[Highlighting Vera - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -Vera:Char=6,,,,,,,,,,--- -Vera:Comment=8,,,,,,,,,,--- -Vera:Data Type=2,,,,,,,,,,--- -Vera:Decimal=3,,,,,,,,,,--- -Vera:Error=13,,,,,,,,,,--- -Vera:Float=5,,,,,,,,,,--- -Vera:Hex=4,,,,,,,,,,--- -Vera:Keyword=1,,,,,,,,,,--- -Vera:Methods=1,,,,,,,,,,--- -Vera:Normal Text=0,,,,,,,,,,--- -Vera:Octal=4,,,,,,,,,,--- -Vera:Prep. Lib=9,,,,,,,,,,--- -Vera:Preprocessor=9,,,,,,,,,,--- -Vera:Q Values=1,,,,,,,,,,--- -Vera:String=7,,,,,,,,,,--- -Vera:String Char=6,,,,,,,,,,--- -Vera:Symbol=0,,,,,,,,,,--- - -[Highlighting Verilog - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Verilog:Alert=10,,,,,,,,,,--- -Verilog:Binary=4,,,,,,,,,,--- -Verilog:Block name=2,,,,,,,,,,--- -Verilog:Case label=3,,,,,,,,,,--- -Verilog:Comment=8,,,,,,,,,,--- -Verilog:Data Type=2,,,,,,,,,,--- -Verilog:Decimal=4,,,,,,,,,,--- -Verilog:Delay=4,,,,,,,,,,--- -Verilog:Drive/charge strength=4,,,,,,,,,,--- -Verilog:Float=5,,,,,,,,,,--- -Verilog:Gate instantiation=2,,,,,,,,,,--- -Verilog:Hex=4,,,,,,,,,,--- -Verilog:Integer=3,,,,,,,,,,--- -Verilog:Keyword=1,,,,,,,,,,--- -Verilog:Normal Text=0,,,,,,,,,,--- -Verilog:Octal=4,,,,,,,,,,--- -Verilog:Port map=2,,,,,,,,,,--- -Verilog:Prep. Lib=5,,,,,,,,,,--- -Verilog:Preprocessor=9,,,,,,,,,,--- -Verilog:String=7,,,,,,,,,,--- -Verilog:String Char=6,,,,,,,,,,--- -Verilog:Symbol=0,,,,,,,,,,--- -Verilog:System Task=2,,,,,,,,,,--- - -[Highlighting WINE Config - Schema xoria256] -WINE Config:Comment=8,,,,,,,,,,--- -WINE Config:Key=2,,,,,,,,,,--- -WINE Config:Normal Text=0,,,,,,,,,,--- -WINE Config:RegistryBeginEnd=0,ff00aaaa,ffffffff,1,0,,,,,,--- -WINE Config:Section=1,,,,,,,,,,--- -WINE Config:Value=0,ff0000ff,ffffffff,1,0,,,,,,--- -WINE Config:ValueFilesystem1=0,ff00aa00,ffffffff,1,0,,,,,,--- -WINE Config:ValueFilesystem2=0,ffff0000,ffffffff,1,0,,,,,,--- - -[Highlighting Wesnoth Markup Language - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -DoxygenLua:Comment=8,,,,,,,,,,--- -DoxygenLua:Description=7,,,,,,,,,,--- -DoxygenLua:HTML Comment=8,,,,,,,,,,--- -DoxygenLua:HTML Tag=1,,,,,,,,,,--- -DoxygenLua:Identifier=9,,,,,,,,,,--- -DoxygenLua:Normal Text=0,,,,,,,,,,--- -DoxygenLua:Region=12,,,,,,,,,,--- -DoxygenLua:Tags=1,ffca60ca,ffffffff,1,0,,,,,,--- -DoxygenLua:Types=2,,,,,,,,,,--- -DoxygenLua:Word=1,ff0095ff,ffffffff,1,0,,,,,,--- -Lua:Alerts=10,,,,,,,,,,--- -Lua:BFunc=11,,,,,,,,,,--- -Lua:Comment=8,,,,,,,,,,--- -Lua:Constant=1,,,,,,,,,,--- -Lua:Control=1,ffa1a100,ffffffff,0,0,,,,,,--- -Lua:Error=13,,,,,,,,,,--- -Lua:Keyword=1,,,,,,,,,,--- -Lua:Normal Text=0,,,,,,,,,,--- -Lua:Numbers=3,,,,,,,,,,--- -Lua:Strings=7,,,,,,,,,,--- -Lua:Symbols=9,,,,,,,,,,--- -Lua:Variable=1,ff5555ff,ffffffff,0,0,,,,,,--- -Pango:Color=5,,,,,,,,,,--- -Pango:Decimal=3,,,,,,,,,,--- -Pango:Element=1,,,,,,,,,,--- -Pango:Error=13,,,,,,,,,,--- -Pango:Key=9,,,,,,,,,,--- -Pango:Normal Text=0,,,,,,,,,,--- -Pango:String=7,,,,,,,,,,--- -Pango:Value=7,ffaa0000,,,,,,,,,--- -Wesnoth Markup Language:Comment=8,,,,,,,,,,--- -Wesnoth Markup Language:Error=13,,,,,,,,,,--- -Wesnoth Markup Language:Macro String=6,,,,,,,,,,--- -Wesnoth Markup Language:Macro/Include=11,,,,,,,,,,--- -Wesnoth Markup Language:Maintenance script statement=10,,,,,,,,,,--- -Wesnoth Markup Language:Normal Text=7,,,,,,,,,,--- -Wesnoth Markup Language:Normal WML Text=0,,,,,,,,,,--- -Wesnoth Markup Language:Preprocessor=9,,,,,,,,,,--- -Wesnoth Markup Language:String=7,,,,,,,,,,--- -Wesnoth Markup Language:Variable Subscript=4,,,,,,,,,,--- -Wesnoth Markup Language:Variable Substitution=3,,,,,,,,,,--- -Wesnoth Markup Language:WML Attribute=2,,,,,,,,,,--- -Wesnoth Markup Language:WML Node=1,,,,,,,,,,--- - -[Highlighting XML (Debug) - Schema xoria256] -XML (Debug):Attribute=2,,,,,,,,,,--- -XML (Debug):Comment=8,,,,,,,,,,--- -XML (Debug):Doctype Declaration=1,,,,,,,,,,--- -XML (Debug):Entity=6,,,,,,,,,,--- -XML (Debug):Error=13,,,,,,,,,,--- -XML (Debug):Normal Tag=1,,,,,,,,,,--- -XML (Debug):Normal Text=0,,,,,,,,,,--- -XML (Debug):PI content=9,,,,,,,,,,--- -XML (Debug):Processing Instruction=1,,,,,,,,,,--- -XML (Debug):Stylesheet=1,,,,,,,,,,--- -XML (Debug):Value=7,,,,,,,,,,--- - -[Highlighting XML - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -XML:Attribute=9,,,,,,,,,,--- -XML:CDATA=4,,,1,,,,,,,--- -XML:Comment=8,,,,,,,,,,--- -XML:Doctype=2,,,1,,,,,,,--- -XML:Element=1,,,,,,,,,,--- -XML:EntityRef=3,,,,,,,,,,--- -XML:Error=13,,,,,,,,,,--- -XML:Normal Text=0,,,,,,,,,,--- -XML:Other Text=0,,,,,,,,,,--- -XML:PEntityRef=3,,,,,,,,,,--- -XML:Processing Instruction=1,,,,,,,,,,--- -XML:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting XUL - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -XUL:Attribute=9,,,,,,,,,,--- -XUL:CDATA=4,,,1,,,,,,,--- -XUL:Char=6,,,,,,,,,,--- -XUL:Comment=8,,,,,,,,,,--- -XUL:Data Type=2,,,,,,,,,,--- -XUL:Decimal=3,,,,,,,,,,--- -XUL:Doctype=2,,,1,,,,,,,--- -XUL:Element=1,,,,,,,,,,--- -XUL:EntityRef=3,,,,,,,,,,--- -XUL:Error=13,,,,,,,,,,--- -XUL:Events=1,fff766d5,ff00ffff,0,0,,,,,,--- -XUL:Float=5,,,,,,,,,,--- -XUL:Function=11,,,,,,,,,,--- -XUL:Keyword=1,,,,,,,,,,--- -XUL:Math=1,ffdba716,ff00ffff,0,0,,,,,,--- -XUL:Normal Text=0,,,,,,,,,,--- -XUL:Objects=1,ff008000,ff00ffff,0,0,,,,,,--- -XUL:PEntityRef=3,,,,,,,,,,--- -XUL:Pattern Character Class=4,,,,,,,,,,--- -XUL:Pattern Internal Operator=5,,,,,,,,,,--- -XUL:Processing Instruction=1,,,,,,,,,,--- -XUL:Region Marker=12,,,,,,,,,,--- -XUL:Regular Expression=9,,,,,,,,,,--- -XUL:String=7,,,,,,,,,,--- -XUL:String Char=6,,,,,,,,,,--- -XUL:Symbol=0,,,,,,,,,,--- -XUL:Value=7,ffaa0000,,,,,,,,,--- - -[Highlighting YAML - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -YAML:Alias=2,,,,,,,,,,--- -YAML:Comment=8,,,,,,,,,,--- -YAML:Data Types=2,,,,,,,,,,--- -YAML:Directive=9,,,,,,,,,,--- -YAML:Document Header=9,,,,,,,,,,--- -YAML:End of Document=8,,,,,,,,,,--- -YAML:Error=13,,,,,,,,,,--- -YAML:Hash=0,,,,,,,,,,--- -YAML:Key=11,,,,,,,,,,--- -YAML:List=0,,,,,,,,,,--- -YAML:Normal Text=0,,,,,,,,,,--- -YAML:Operator=1,,,,,,,,,,--- -YAML:Reference=2,,,,,,,,,,--- -YAML:String=7,,,,,,,,,,--- - -[Highlighting Yacc/Bison - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -Yacc/Bison:Alert=10,,,,,,,,,,--- -Yacc/Bison:Backslash Code=7,,,1,,,,,,,--- -Yacc/Bison:Comment=8,,,,,,,,,,--- -Yacc/Bison:Content-Type Delimiter=4,,,1,,,,,,,--- -Yacc/Bison:Data Type=2,,,,,,,,,,--- -Yacc/Bison:Definition=0,,,,,,,,,,--- -Yacc/Bison:Directive=1,,,,,,,,,,--- -Yacc/Bison:Normal Text=0,,,,,,,,,,--- -Yacc/Bison:Rule=7,,,,,,,,,,--- -Yacc/Bison:String=7,,,,,,,,,,--- -Yacc/Bison:String Char=6,,,,,,,,,,--- - -[Highlighting Zonnon - Schema xoria256] -Zonnon:Comment=8,,,,,,,,,,--- -Zonnon:Keyword=1,,,,,,,,,,--- -Zonnon:Modifier=9,,,,,,,,,,--- -Zonnon:Normal Text=0,,,,,,,,,,--- -Zonnon:Number=3,,,,,,,,,,--- -Zonnon:Predefine=1,,,,1,,,,,,--- -Zonnon:String=7,,,,,,,,,,--- -Zonnon:Type=2,,,,,,,,,,--- - -[Highlighting Zsh - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -Zsh:Backquote=1,,,,,,,,,,--- -Zsh:Builtin=1,ff880088,,,,,,,,,--- -Zsh:Command=1,ffcc00cc,,,,,,,,,--- -Zsh:Comment=8,,,,,,,,,,--- -Zsh:Control=1,,,,,,,,,,--- -Zsh:Error=13,,,,,,,,,,--- -Zsh:Escape=2,,,,,,,,,,--- -Zsh:Expression=9,,,,,,,,,,--- -Zsh:Function=11,,,,,,,,,,--- -Zsh:Keyword=1,,,,,,,,,,--- -Zsh:Normal Text=0,,,,,,,,,,--- -Zsh:Option=0,,,,,,,,,,--- -Zsh:Path=0,,,,,,,,,,--- -Zsh:Redirection=1,ff223388,,,,,,,,,--- -Zsh:String DoubleQ=7,,,,,,,,,,--- -Zsh:String Escape=2,,,,,,,,,,--- -Zsh:String SingleQ=7,,,,,,,,,,--- -Zsh:String Transl.=7,,,,,,,,,,--- -Zsh:Variable=9,,,,,,,,,,--- - -[Highlighting dot - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -dot:Attribute=2,,,,,,,,,,--- -dot:Comment=8,,,,,,,,,,--- -dot:Error=13,,,,,,,,,,--- -dot:Identifier=11,,,,,,,,,,--- -dot:Keyword=1,,,,,,,,,,--- -dot:Normal Text=0,,,,,,,,,,--- -dot:Number=3,,,,,,,,,,--- -dot:String=7,,,,,,,,,,--- -dot:String Char=6,,,,,,,,,,--- -dot:Symbol=9,,,,,,,,,,--- - -[Highlighting ferite - Schema xoria256] -ferite:Alert=10,,,,,,,,,,--- -ferite:Char=6,,,,,,,,,,--- -ferite:Comment=8,,,,,,,,,,--- -ferite:Data Type=2,,,,,,,,,,--- -ferite:Decimal=3,,,,,,,,,,--- -ferite:Float=5,,,,,,,,,,--- -ferite:Hex=4,,,,,,,,,,--- -ferite:Keyword=1,,,,,,,,,,--- -ferite:Normal Text=0,,,,,,,,,,--- -ferite:Octal=4,,,,,,,,,,--- -ferite:Prep. Lib=9,,,,,,,,,,--- -ferite:Preprocessor=9,,,,,,,,,,--- -ferite:String=7,,,,,,,,,,--- -ferite:String Char=6,,,,,,,,,,--- -ferite:Symbol=0,,,,,,,,,,--- - -[Highlighting fstab - Schema xoria256] -fstab:Comment=8,,,,,,,,,,--- -fstab:Device=1,,,,,,,,,,--- -fstab:Dump=3,,,,,,,,,,--- -fstab:Error=13,,,,,,,,,,--- -fstab:Mount Point=2,,,,,,,,,,--- -fstab:Normal=0,,,,,,,,,,--- -fstab:Options=1,,,,,,,,,,--- -fstab:Pass=3,,,,,,,,,,--- -fstab:Type=11,,,,,,,,,,--- -fstab:Valid FileSystem=2,,,,1,,,,,,--- - -[Highlighting k - Schema xoria256] -k:Comment=8,,,,,,,,,,--- -k:CommentToEOF=8,,,,,,,,,,--- -k:DotQfunctions=1,,,,,,,,,,--- -k:Dothfunctions=1,,,,,,,,,,--- -k:Dotofunctions=1,,,,,,,,,,--- -k:Dotqfunctions=1,,,,,,,,,,--- -k:Dotzfunctions=1,,,,,,,,,,--- -k:FlowControl=1,,,,,,,,,,--- -k:MultiLineComment=8,,,,,,,,,,--- -k:Normal Text=0,,,,,,,,,,--- -k:String=7,,,,,,,,,,--- -k:Todos=8,,,,,,,,,,--- -k:kBool=4,,,,,,,,,,--- -k:kByte=4,,,,,,,,,,--- -k:kDateTime=9,,,,,,,,,,--- -k:kGuid=4,,,,,,,,,,--- -k:kHSym=9,,,,,,,,,,--- -k:kIdentifier=0,,,,,,,,,,--- -k:kKeyword=1,,,,,,,,,,--- -k:kNumber=3,,,,,,,,,,--- -k:kSeparators=0,,,,,,,,,,--- -k:kSymbol=9,,,,,,,,,,--- -k:kSystemCommand=9,,,,,,,,,,--- - -[Highlighting mergetag text - Schema xoria256] -mergetag text:Binary=4,,,,,,,,,,--- -mergetag text:Brackets=1,,,,,,,,,,--- -mergetag text:Char=6,,,,,,,,,,--- -mergetag text:Comment=8,,,,,,,,,,--- -mergetag text:Comment Brackets=8,ff404040,,,0,,,,,,--- -mergetag text:Error=13,,,,,,,,,,--- -mergetag text:EscapeSequence=7,ff00aa88,ffff0000,,,,,,,,--- -mergetag text:Float=5,,,,,,,,,,--- -mergetag text:Hex=4,,,,,,,,,,--- -mergetag text:ID=9,,,,,,,,,,--- -mergetag text:Integer=3,,,,,,,,,,--- -mergetag text:Normal Text=0,,,,,,,,,,--- -mergetag text:Octal=4,,,,,,,,,,--- -mergetag text:String=7,,,,,,,,,,--- -mergetag text:Tag Character=1,ff008040,,,,,,,,,--- -mergetag text:Type=2,,,,,,,,,,--- - -[Highlighting nesC - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -nesC:Char=6,,,,,,,,,,--- -nesC:Comment=8,,,,,,,,,,--- -nesC:Data Type=2,,,,,,,,,,--- -nesC:Decimal=3,,,,,,,,,,--- -nesC:Float=5,,,,,,,,,,--- -nesC:Function=1,ff000080,ffffffff,0,0,,,,,,--- -nesC:Hex=4,,,,,,,,,,--- -nesC:Keyword=1,,,,,,,,,,--- -nesC:Normal Text=0,,,,,,,,,,--- -nesC:Octal=4,,,,,,,,,,--- -nesC:Prep. Lib=9,,,,,,,,,,--- -nesC:Preprocessor=9,,,,,,,,,,--- -nesC:String=7,,,,,,,,,,--- -nesC:String Char=6,,,,,,,,,,--- -nesC:Symbol=0,,,,,,,,,,--- - -[Highlighting noweb - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Qt4 Classes=29,,,,,,,,,,--- -C++:Qt4 Functions=2,,,,,,,,,,--- -C++:Qt4 Macros=1,ff0095ff,ffffffff,1,0,,,,,,--- -C++:Qt4 Types=16,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -CSS:At Rule=3,,,,,,,,,,--- -CSS:Comment=8,,,,,,,,,,--- -CSS:Error=13,,,,,,,,,,--- -CSS:Important=1,,,,,,,,,,--- -CSS:Media=3,,,1,,,,,,,--- -CSS:Normal Text=0,,,,,,,,,,--- -CSS:Property=1,,,,,,,,,,--- -CSS:Region Marker=12,,,,,,,,,,--- -CSS:Selector Attr=6,,,,,,,,,,--- -CSS:Selector Class=5,,,,,,,,,,--- -CSS:Selector Id=5,,,1,,,,,,,--- -CSS:Selector Pseudo=3,,,,,,,,,,--- -CSS:String=7,,,,,,,,,,--- -CSS:Unknown Property=1,,,,1,,,,,,--- -CSS:Value=2,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -GCCExtensions:String=12,,,,,,,,,,--- -HTML:Attribute=9,,,,,,,,,,--- -HTML:CDATA=4,,,1,,,,,,,--- -HTML:Comment=8,,,,,,,,,,--- -HTML:Doctype=2,,,1,,,,,,,--- -HTML:Element=1,,,,,,,,,,--- -HTML:EntityRef=3,,,,,,,,,,--- -HTML:Error=13,,,,,,,,,,--- -HTML:Normal Text=0,,,,,,,,,,--- -HTML:Other Text=0,,,,,,,,,,--- -HTML:PEntityRef=3,,,,,,,,,,--- -HTML:Processing Instruction=1,,,,,,,,,,--- -HTML:Value=7,ffaa0000,,,,,,,,,--- -ISO C++:Attribute=1,,,0,1,,,,,,--- -ISO C++:Binary=18,,,,,,,,,,--- -ISO C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -ISO C++:CONSTS/MACROS=0,,,,,,,,,,--- -ISO C++:Char=10,,,,,,,,,,--- -ISO C++:Comment=21,,,,,,,,,,--- -ISO C++:Data Members (m_*)=0,,,,,,,,,,--- -ISO C++:Data Type=16,,,,,,,,,,--- -ISO C++:Decimal=17,,,,,,,,,,--- -ISO C++:Error=30,,,,,,,,,,--- -ISO C++:Float=19,,,,,,,,,,--- -ISO C++:Globals (g_*)=0,,,,,,,,,,--- -ISO C++:Hex=18,,,,,,,,,,--- -ISO C++:Internals=0,ff808080,ff808080,,,,,,,,--- -ISO C++:Keyword=1,,,,,,,,,,--- -ISO C++:Normal Text=0,,,,,,,,,,--- -ISO C++:Octal=18,,,,,,,,,,--- -ISO C++:Prep. Lib=29,,,,,,,,,,--- -ISO C++:Preprocessor=29,,,,,,,,,,--- -ISO C++:Region Marker=25,,,,,,,,,,--- -ISO C++:Separator Symbol=0,,,,,,,,,,--- -ISO C++:Standard Attribute=1,,,0,1,,,,,,--- -ISO C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -ISO C++:Standard Macros=29,,,,,,,,,,--- -ISO C++:Statics (s_*)=0,,,,,,,,,,--- -ISO C++:String=12,,,,,,,,,,--- -ISO C++:String Char=10,,,,,,,,,,--- -ISO C++:Symbol=0,,,,,,,,,,--- -ISO C++:Type Modifiers=16,,,,,,,,,,--- -ISO C++:Types (*_t/*_type)=0,,,,,,,,,,--- -JavaScript:Char=6,,,,,,,,,,--- -JavaScript:Comment=8,,,,,,,,,,--- -JavaScript:Decimal=3,,,,,,,,,,--- -JavaScript:Float=5,,,,,,,,,,--- -JavaScript:Function=11,,,,,,,,,,--- -JavaScript:Hex=4,,,,,,,,,,--- -JavaScript:JSON=2,,,,,,,,,,--- -JavaScript:Keyword=1,,,,,,,,,,--- -JavaScript:Normal Text=0,,,,,,,,,,--- -JavaScript:Object Member=11,,,,,,,,,,--- -JavaScript:Objects=9,,,,,,,,,,--- -JavaScript:Octal=4,,,,,,,,,,--- -JavaScript:Pattern Character Class=4,,,,,,,,,,--- -JavaScript:Pattern Internal Operator=5,,,,,,,,,,--- -JavaScript:Region Marker=12,,,,,,,,,,--- -JavaScript:Regular Expression=9,,,,,,,,,,--- -JavaScript:Reserved=1,,,,1,,,,,,--- -JavaScript:String=7,,,,,,,,,,--- -JavaScript:Symbol=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -noweb:Code=0,,,,,,,,,,--- -noweb:Prose=0,,,,,,,,,,--- -noweb:Punctuation=12,,,1,,,,,,,--- -noweb:SectionName=12,,,,1,,,,,,--- - -[Highlighting progress - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -progress:Alert=10,,,,,,,,,,--- -progress:Attributes=2,,,,,,,,,,--- -progress:Comment=8,,,,,,,,,,--- -progress:Data_Type=2,,,,,,,,,,--- -progress:Decimal=3,,,,,,,,,,--- -progress:Function=11,,,,,,,,,,--- -progress:Handles=3,,,,,,,,,,--- -progress:Identifier=9,,,,,,,,,,--- -progress:Integer=4,,,,,,,,,,--- -progress:Methods=9,,,,,,,,,,--- -progress:Normal Text=0,,,,,,,,,,--- -progress:Operators=3,,,,,,,,,,--- -progress:Phrases=1,,,,,,,,,,--- -progress:Preprocvar=6,,,,,,,,,,--- -progress:Properties=9,,,,,,,,,,--- -progress:Region Marker=12,,,,,,,,,,--- -progress:Statements=1,,,,,,,,,,--- -progress:String=7,,,,,,,,,,--- -progress:String Char=6,,,,,,,,,,--- -progress:Symbol=6,,,,,,,,,,--- -progress:Widgets=1,,,,,,,,,,--- - -[Highlighting q - Schema xoria256] -k:Comment=8,,,,,,,,,,--- -k:CommentToEOF=8,,,,,,,,,,--- -k:DotQfunctions=1,,,,,,,,,,--- -k:Dothfunctions=1,,,,,,,,,,--- -k:Dotofunctions=1,,,,,,,,,,--- -k:Dotqfunctions=1,,,,,,,,,,--- -k:Dotzfunctions=1,,,,,,,,,,--- -k:FlowControl=1,,,,,,,,,,--- -k:MultiLineComment=8,,,,,,,,,,--- -k:Normal Text=0,,,,,,,,,,--- -k:String=7,,,,,,,,,,--- -k:Todos=8,,,,,,,,,,--- -k:kBool=4,,,,,,,,,,--- -k:kByte=4,,,,,,,,,,--- -k:kDateTime=9,,,,,,,,,,--- -k:kGuid=4,,,,,,,,,,--- -k:kHSym=9,,,,,,,,,,--- -k:kIdentifier=0,,,,,,,,,,--- -k:kKeyword=1,,,,,,,,,,--- -k:kNumber=3,,,,,,,,,,--- -k:kSeparators=0,,,,,,,,,,--- -k:kSymbol=9,,,,,,,,,,--- -k:kSystemCommand=9,,,,,,,,,,--- -q:DotQfunctions=1,,,,,,,,,,--- -q:Normal Text=0,,,,,,,,,,--- -q:qKeyword=1,,,,,,,,,,--- - -[Highlighting reStructuredText - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -C++:Attribute=1,,,0,1,,,,,,--- -C++:Binary=4,,,,,,,,,,--- -C++:Boost Stuff=0,ff23a45b,ff23a45b,,,,,,,,--- -C++:CONSTS/MACROS=0,,,,,,,,,,--- -C++:Char=6,,,,,,,,,,--- -C++:Comment=8,,,,,,,,,,--- -C++:Data Members (m_*)=0,,,,,,,,,,--- -C++:Data Type=2,,,,,,,,,,--- -C++:Decimal=3,,,,,,,,,,--- -C++:Error=13,,,,,,,,,,--- -C++:Float=5,,,,,,,,,,--- -C++:Globals (g_*)=0,,,,,,,,,,--- -C++:Hex=4,,,,,,,,,,--- -C++:Internals=0,ff808080,ff808080,,,,,,,,--- -C++:Keyword=1,,,,,,,,,,--- -C++:Normal Text=0,,,,,,,,,,--- -C++:Octal=4,,,,,,,,,,--- -C++:Prep. Lib=9,,,,,,,,,,--- -C++:Preprocessor=9,,,,,,,,,,--- -C++:Region Marker=12,,,,,,,,,,--- -C++:Separator Symbol=0,,,,,,,,,,--- -C++:Standard Attribute=1,,,0,1,,,,,,--- -C++:Standard Classes=0,ff59ff00,ff59ff00,,,,,,,,--- -C++:Standard Macros=9,,,,,,,,,,--- -C++:Statics (s_*)=0,,,,,,,,,,--- -C++:String=7,,,,,,,,,,--- -C++:String Char=6,,,,,,,,,,--- -C++:Symbol=0,,,,,,,,,,--- -C++:Type Modifiers=2,,,,,,,,,,--- -C++:Types (*_t/*_type)=0,,,,,,,,,,--- -CMake:Builtin CMake Variable=3,ffc09050,ffc09050,,,,,,,,--- -CMake:CMake Variable=3,,,,,,,,,,--- -CMake:Commands=1,,,,,,,,,,--- -CMake:Comment=8,,,,,,,,,,--- -CMake:Environment Variable=5,,,,,,,,,,--- -CMake:Escapes=6,,,,,,,,,,--- -CMake:Generator Expression=9,ffb86050,ffb86050,,,,,,,,--- -CMake:Generator Expression Keyword=1,ffb84040,ffb84040,,,,,,,,--- -CMake:Macros=11,,,,,,,,,,--- -CMake:Normal Text=0,,,,,,,,,,--- -CMake:Properties=9,,,,,,,,,,--- -CMake:Region Marker=12,,,,,,,,,,--- -CMake:Special Args=9,,,,,,,,,,--- -CMake:Strings=7,,,,,,,,,,--- -CMake:Third-Party Commands=11,,,,,,,,,,--- -Doxygen:Attention=1,ffe85848,ffe85848,1,0,,,,,,--- -Doxygen:Code=8,,,,,,,,,,--- -Doxygen:Comment=8,,,,,,,,,,--- -Doxygen:Custom Tags=0,ff458c61,,1,0,,,,,,--- -Doxygen:Description=7,ffff0000,,,,,,,,,--- -Doxygen:Dot Graph=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Entities=9,ff4086c0,,1,1,,,,,,--- -Doxygen:Formulas=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:HTML Comment=8,,,,,,,,,,--- -Doxygen:HTML Tag=1,ff000000,,1,0,,,,,,--- -Doxygen:Identifier=9,,,,,,,,,,--- -Doxygen:Message Sequence Chart=8,ff00a000,ffffffff,,1,,,,,,--- -Doxygen:Normal Text=0,,,,,,,,,,--- -Doxygen:Note=1,ff81ca2d,ff81ca2d,1,0,,,,,,--- -Doxygen:Region=12,,,,,,,,,,--- -Doxygen:Tags=1,ffca60ca,,1,0,,,,,,--- -Doxygen:Todo=1,ffca60ca,ffffffff,1,0,,,,,,--- -Doxygen:Types=2,,,,,,,,,,--- -Doxygen:Verbatim=8,,,,,,,,,,--- -Doxygen:Warning=1,ffca9219,ffca9219,1,0,,,,,,--- -Doxygen:Word=1,ff0095ff,,1,0,,,,,,--- -GCCExtensions:GNU Extensions=9,,,,1,,,,,,--- -GCCExtensions:GNU Functions=9,,,,,,,,,,--- -GCCExtensions:GNU Macros=9,,,,,,,,,,--- -GCCExtensions:GNU Types=9,,,,,,,,,,--- -GCCExtensions:Normal Text=0,,,,,,,,,,--- -Modelines:Comment=8,,,,,,,,,,--- -Modelines:Keyword=1,,,,,,,,,,--- -Modelines:Number=3,,,,,,,,,,--- -Modelines:Option OFF=9,,,,,,,,,,--- -Modelines:Option ON=9,,,,,,,,,,--- -Modelines:String=7,,,,,,,,,,--- -Modelines:Value=9,,,,,,,,,,--- -Modelines:Variable=11,,,,,,,,,,--- -reStructuredText:Bold=0,,,1,,,,,,,--- -reStructuredText:CMakeCode=2,,,,,,,,,,--- -reStructuredText:Citation=2,,,,,,,,,,--- -reStructuredText:Code=2,,,,,,,,,,--- -reStructuredText:Comment=21,,,,,,,,,,--- -reStructuredText:CppCode=2,,,,,,,,,,--- -reStructuredText:Directive=2,,,,,,,,,,--- -reStructuredText:Field=11,,,,,,,,,,--- -reStructuredText:FieldBold=2,,,1,,,,,,,--- -reStructuredText:FieldItalic=2,,,,1,,,,,,--- -reStructuredText:Footnote=2,,,,,,,,,,--- -reStructuredText:FootnoteReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkRefOrInterpretedText=9,,,,,,,,,,--- -reStructuredText:HyperlinkReference=9,,,,,,,,,,--- -reStructuredText:HyperlinkTarget=2,,,,,,,,,,--- -reStructuredText:InlineInternalTarget=11,,,,,,,,,,--- -reStructuredText:InlineLiteral=2,,,,,,,,,,--- -reStructuredText:InterpretedText=17,,,,,,,,,,--- -reStructuredText:Italic=0,,,,1,,,,,,--- -reStructuredText:Monospaced=0,ff006600,,,,,,,,,--- -reStructuredText:Normal=0,,,,,,,,,,--- -reStructuredText:Role=0,,,1,,,,,,,--- -reStructuredText:SubstitutionDefinition=2,,,,,,,,,,--- -reStructuredText:SubstitutionReference=11,,,,,,,,,,--- - -[Highlighting scilab - Schema xoria256] -scilab:Comment=8,,,,,,,,,,--- -scilab:Constants-keyword=0,ff008080,ff00ffff,1,0,,,,,,--- -scilab:Control-keywords=0,ff800000,ffff0000,1,0,,,,,,--- -scilab:Decimal=3,,,,,,,,,,--- -scilab:Float=5,,,,,,,,,,--- -scilab:Function-keywords=11,ff008000,ffffff00,1,0,,,,,,--- -scilab:Normal Text=0,,,,,,,,,,--- -scilab:String=7,,,,,,,,,,--- -scilab:Structure-keywords=0,ff000080,ffffff00,1,0,,,,,,--- -scilab:Warning-keywords=0,ffff0000,ffff0000,1,0,,,,,,--- -scilab:functions=11,ff0000ff,ff00ff00,1,1,,,,,,--- - -[Highlighting sed - Schema xoria256] -sed:Brace=0,,,,,,,,,,--- -sed:Char List=7,,,,,,,,,,--- -sed:Char List Escape=6,,,,,,,,,,--- -sed:Command=1,,,,,,,,,,--- -sed:Comment=8,,,,,,,,,,--- -sed:Error=13,,,,,,,,,,--- -sed:Exit Code=3,,,,,,,,,,--- -sed:Filename=4,,,,,,,,,,--- -sed:Flag=2,,,,,,,,,,--- -sed:Label=11,,,,,,,,,,--- -sed:Last Line=9,ff880088,,1,,,,,,,--- -sed:Line Continue=9,ff000000,,1,,,,,,,--- -sed:Line Number=3,,,,,,,,,,--- -sed:Literal Escape=9,ff00aa00,,,1,,,,,,--- -sed:Literal Text=9,ff008800,,,1,,,,,,--- -sed:Negation=9,ff880088,,1,,,,,,,--- -sed:Normal=0,,,,,,,,,,--- -sed:Regex=7,,,,,,,,,,--- -sed:Regex Escape=6,,,,,,,,,,--- -sed:Repl Escape=6,,,,,,,,,,--- -sed:Repl Number=3,,,,,,,,,,--- -sed:Replacement=7,,,,,,,,,,--- -sed:Separator=7,ff0000ff,,,,,,,,,--- -sed:Step=3,,,,,,,,,,--- -sed:Wrap Length=3,,,,,,,,,,--- - -[Highlighting txt2tags - Schema xoria256] -txt2tags:Bar=0,ffc0c0c0,,,,,,,,,--- -txt2tags:Bold=0,ff445675,,1,,,,,,,--- -txt2tags:BoldItalic=0,,,1,1,,,,,,--- -txt2tags:Comment=0,ff666666,,,1,,,,,,--- -txt2tags:Date=0,ffff0000,,,1,,,,,,--- -txt2tags:DefList=0,ffe300ee,,,,,,,,,--- -txt2tags:Italic=0,ff653a39,,,1,,,,,,--- -txt2tags:Link=0,ff0930de,,,,,,,,,--- -txt2tags:List=0,ffe300ee,,,,,,,,,--- -txt2tags:Monospaced=0,ff006600,,,,,,,,,--- -txt2tags:Normal=0,,,,,,,,,,--- -txt2tags:NumList=0,ffe300ee,,,,,,,,,--- -txt2tags:Quote=0,ffa52a2a,,,,,,,,,--- -txt2tags:Strikeout=0,ff644a9b,,,,1,,,,,--- -txt2tags:Tabel=0,ffff0000,,,,,,,,,--- -txt2tags:Title=0,ff990000,,,,,,,,,--- -txt2tags:Underline=0,ff386742,,,,,,,,,--- -txt2tags:Verbatim Area=0,ff006600,,,,,,,,,--- -txt2tags:Verbatim Line=0,ff006600,,,,,,,,,--- - -[Highlighting vCard, vCalendar, iCalendar - Schema xoria256] -vCard, vCalendar, iCalendar:Assignment=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Attribute=7,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Delimiter=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Parameter key=11,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Parameter value=9,,,,,,,,,,--- -vCard, vCalendar, iCalendar:Property=1,,,,,,,,,,--- -vCard, vCalendar, iCalendar:vCard=12,,,,,,,,,,--- - -[Highlighting x.org Configuration - Schema xoria256] -Alerts:Alert Level 1=10,ffe85848,ffe85848,,,,,ff451e1a,,,--- -Alerts:Alert Level 2=10,ffca9219,ffca9219,,,,,ff451e1a,,,--- -Alerts:Alert Level 3=10,ff81ca2d,ff81ca2d,,,,,,,,--- -Alerts:Normal Text=0,,,,,,,,,,--- -Alerts:Region Marker=25,,,,,,,,,,--- -x.org Configuration:Alert=13,,,,,,,,,,--- -x.org Configuration:Comment=8,,,,,,,,,,--- -x.org Configuration:Float=5,,,,,,,,,,--- -x.org Configuration:Int=3,,,,,,,,,,--- -x.org Configuration:Keyword=1,,,,,,,,,,--- -x.org Configuration:Normal Text=0,,,,,,,,,,--- -x.org Configuration:Section=11,,,,,,,,,,--- -x.org Configuration:Section Name=7,,,,,,,,,,--- -x.org Configuration:Value=2,,,,,,,,,,--- -x.org Configuration:Value2=9,,,,,,,,,,--- - -[Highlighting xHarbour - Schema xoria256] -xHarbour:Comment=8,,,,,,,,,,--- -xHarbour:Function=11,,,,,,,,,,--- -xHarbour:Keyword=1,,,,,,,,,,--- -xHarbour:Normal Text=0,,,,,,,,,,--- -xHarbour:Number=3,ff5050c0,ff000000,0,0,,,,,,--- -xHarbour:Operator=4,ffa01060,ff400040,0,0,,,,,,--- -xHarbour:Preprocessor=9,,,,,,,,,,--- -xHarbour:String=7,,,,,,,,,,--- - -[Highlighting xslt - Schema xoria256] -xslt:Alert=10,,,,,,,,,,--- -xslt:Attribute=9,,,,,,,,,,--- -xslt:Attribute Value=7,ff800000,ffffffff,0,0,,,,,,--- -xslt:CDATA=4,,,1,,,,,,,--- -xslt:Comment=8,,,,,,,,,,--- -xslt:Doctype=2,,,1,,,,,,,--- -xslt:Entity Reference=3,,,,,,,,,,--- -xslt:Invalid=13,,,,,,,,,,--- -xslt:Normal Text=0,,,,,,,,,,--- -xslt:PEntity Reference=3,,,,,,,,,,--- -xslt:Processing Instruction=1,,,,,,,,,,--- -xslt:Tag=1,,,,,,,,,,--- -xslt:Variable=0,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath=9,ff008080,ffffffff,0,0,,,,,,--- -xslt:XPath 2.0/ XSLT 2.0 Function=1,ff008080,ffffffff,1,0,,,,,,--- -xslt:XPath Attribute=0,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath Axis=1,ff008080,ffffffff,0,1,,,,,,--- -xslt:XPath String=7,ff800000,ffffffff,0,0,,,,,,--- -xslt:XPath/ XSLT Function=1,ff008080,ffffffff,1,0,,,,,,--- -xslt:XSLT 2.0 Tag=1,ff000080,ffffffff,1,0,,,,,,--- -xslt:XSLT Tag=1,ff000080,ffffffff,1,0,,,,,,--- - -[Highlighting yacas - Schema xoria256] -yacas:Char=6,,,,,,,,,,--- -yacas:Comment=8,,,,,,,,,,--- -yacas:Decimal=3,,,,,,,,,,--- -yacas:Float=5,,,,,,,,,,--- -yacas:Highlight=10,,,,,,,,,,--- -yacas:Keyword=1,,,,,,,,,,--- -yacas:Normal Text=0,,,,,,,,,,--- -yacas:Parens=0,,,,,,,,,,--- -yacas:String=7,,,,,,,,,,--- -yacas:Symbol=9,,,,,,,,,,--- - -[KateSchema] -Font=Monospace,9,-1,5,50,0,0,0,0,0 -full schema=true -highlightings=Puppet,QML,q,PHP/PHP,PHP (HTML),Pike,Pig,sed,Scheme,Tcl/Tk,Sieve,R Script,Quake Script,Ruby,REXX,ActionScript 2.0,ABAP,Agda,Ada,UnrealScript,Tcsh,Zsh,Velocity,C++,C#,CGiS,Cg,ANSI C89,ANS-Forth94,C,Boo,Curry,Crack,E Language,D,Clojure,Clipper,Component-Pascal,Common Lisp,GLSL,GCCExtensions,Go,GNU M4,Fortran,Eiffel,FSharp,FreeBASIC,ISO C++,Inform,Julia,Java,Haxe,Haskell,ILERPG,IDL,Logtalk,Literate Haskell,Modelica,LPC,KDev-PG[-Qt] Grammar,KBasic,Literate Curry,Lex/Flex,Objective Caml,noweb,Objective-C++,Objective-C,MonoBasic,Modula-2,nesC,Nemerle,Protobuf,Prolog,RapidQ,PureBasic,OPAL,OORS,Pascal,OpenCL,TADS 3,Stata,xHarbour,Vala,Sather,RSI IDL,SML,Scala,Zonnon,Yacc/Bison,Intel x86 (NASM),Intel x86 (FASM),Motorola 68k (VASM/Devpac),MIPS Assembler,Asm6502,None,GNU Assembler,AVR Assembler,Cisco,Asterisk,Git Ignore,fstab,PicAsm,Motorola DSP56k,Apache Configuration,.desktop,Varnish Configuration Language,Nagios,WINE Config,Varnish Test Case language,INI Files,Gitolite,mergetag text,Kconfig,SQL,progress,SQL (Oracle),SQL (MySQL),4GL,x.org Configuration,LDIF,4GL-PER,Vera,SystemVerilog,VHDL,Verilog,AHDL,SQL (PostgreSQL),SystemC,Spice,ConTeXt,ColdFusion,Django HTML Template,CSS,ASP,ASN.1,CleanCSS,BibTeX,GNU Gettext,GlossTex,Hamlet,Haml,DoxygenLua,Doxygen,FTL,DTD,LaTeX,JSP,MAB-DB,LESSCSS,Javadoc,HTML,JSON,Jira,PostScript,Pango,R Markdown,PostScript Printer Description,Markdown,Mako,Metapost/Metafont,MediaWiki,Ruby/Rails/RHTML,Roff,SGML,SCSS,RelaxNG-Compact,RELAX NG,Rich Text Format,reStructuredText,txt2tags,TT2,VRML,vCard\\, vCalendar\\, iCalendar,Texinfo,SiSU,Troff Mandoc,Textile,YAML,XUL,Alerts,ABC,XML,Wesnoth Markup Language,xslt,XML (Debug),Debian Changelog,CUE Sheet,Diff,Debian Control,ChangeLog,Alerts_indent,CSS/PHP,CMake,Hunspell Dictionary File,Hunspell Affix File,Hunspell Thesaurus Index File,Hunspell Thesaurus File,Email,Dockerfile,Git Rebase,GDB Backtrace,Modelines,Makefile,PGN,Music Publisher,JavaScript/PHP,Jam,M3U,LilyPond,Ansys,Valgrind Suppression,dot,B-Method,QMake,POV-Ray,RPM Spec,RenderMan RIB,Octave,Maxima,scilab,Replicode,GDL,GAP,Matlab,Mathematica,AWK,AutoHotKey,Chicken,Bash,yacas,TI Basic,AMPLE,4DOS BatchToMemory,GNU Linker Script,ferite,J,Gnuplot,CubeScript,CoffeeScript,Euphoria,Erlang,MEL,Mason,Perl,MS-DOS Batch,k,JavaScript,Lua,LSL,Python -schema=xoria256 diff --git a/kte/global.kateconfig b/kte/global.kateconfig deleted file mode 100644 index ea6db45..0000000 --- a/kte/global.kateconfig +++ /dev/null @@ -1,14 +0,0 @@ - -// Tabs 4-spaces wide: C, C++, Bison, PHP and Go. -kate-mimetype(text/x-c++hdr;text/x-chdr;text/x-c++src;text/x-csrc): indent-width 4; replace-tabs false; tab-indents true; tab-width 4; -kate-wildcard(*.y;*.yy): indent-width 4; replace-tabs false; tab-indents true; tab-width 4; -kate-mimetype(text/x-php4-src;text/x-php3-src;text/vnd.wap.wml;application/x-php): indent-width 4; replace-tabs false; tab-indents true; tab-width 4; -kate-wildcard(*.go): indent-width 4; replace-tabs false; tab-indents true; tab-width 4; - -// 2 spaces, no tabs: Ruby & JS. -kate-mimetype(application/x-ruby): indent-width 2; replace-tabs true; tab-indents true; tab-width 2; -kate-mimetype(text/x-javascript;application/x-javascript): indent-width 2; replace-tabs true; tab-indents true; tab-width 2; - -// Any other language is set undefined. The style will be picked according to -// the defaults as given in the settings dialog (Editing -> Indentation). - diff --git a/kte/kde.kateconfig b/kte/kde.kateconfig deleted file mode 100644 index 94fbe5e..0000000 --- a/kte/kde.kateconfig +++ /dev/null @@ -1,6 +0,0 @@ - -// Override the global config so C, C++ and Bison files match the KDE Coding -// conventions -kate-mimetype(text/x-c++hdr;text/x-chdr;text/x-c++src;text/x-csrc): indent-width 4; replace-tabs true; tab-indents true; tab-width 4; -kate-wildcard(*.y;*.yy): indent-width 4; replace-tabs true; tab-indents true; tab-width 4; - diff --git a/mbsyncrc b/mbsyncrc deleted file mode 100644 index b80c0a1..0000000 --- a/mbsyncrc +++ /dev/null @@ -1,119 +0,0 @@ -# My credentials are encrypted with my GPG keys symmetrically. The login is done -# through SSL and the certificate file is located where openSUSE puts it. This -# configuration requires mbsync 1.3 (or current git master). I'm doing this -# because: -# 1. I need to increase the timeout for imap.novell.com -# 2. I need the improvements for subdirectories handling - -## -# GMail - -IMAPAccount gmail -Host imap.gmail.com -User mikisabate@gmail.com -PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.mbsyncpassgmail.gpg" -SSLType IMAPS -AuthMechs Login -CertificateFile /etc/ssl/ca-bundle.pem - -# Use the account specified above as the remote storage. -IMAPStore gmail-remote -Account gmail - -# Let's use ~/.mail as the prefix for the local storage. -MaildirStore gmail-local -Path ~/.mail/gmail/ -Inbox ~/.mail/gmail/inbox -SubFolders Verbatim - -# We could have one only channel, and filter them through the Patterns -# directive. I prefer having multiple channels and then group them. - -Channel gmail-inbox -Master :gmail-remote: -Slave :gmail-local: -Patterns "INBOX" -Create Both -Expunge Both -Sync All -SyncState * - -Channel gmail-all -Master :gmail-remote:"[Gmail]/Tot el correu" -Slave :gmail-local:"All" -Create Both -Expunge Both -Sync All -SyncState * - -Channel gmail-sent -Master :gmail-remote:"[Gmail]/Enviats" -Slave :gmail-local:"Sent" -Create Both -Expunge Both -Sync All -SyncState * - -# And finally group everything here. - -Group gmail -Channel gmail-inbox -Channel gmail-all -Channel gmail-sent - -## -# suse.de - -IMAPAccount susede -Host imap.suse.de -User msabate -PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.mbsyncpasssusede.gpg" -SSLType IMAPS -AuthMechs Login -CertificateFile /etc/ssl/ca-bundle.pem - -IMAPStore susede-remote -Account susede - -MaildirStore susede-local -Path ~/.mail/susede/ -Inbox ~/.mail/susede/inbox -SubFolders Verbatim - -Channel susede -Master :susede-remote: -Slave :susede-local: -Patterns * -Create Both -Sync All -Expunge Both -SyncState * - -## -# suse.com - -IMAPAccount susecom -Host gwmail.emea.novell.com -User msabate -PassCmd "gpg2 -q --for-your-eyes-only --no-tty -d ~/.mbsyncpasssusecom.gpg" -SSLType IMAPS -AuthMechs Login -CertificateFile /etc/ssl/ca-bundle.pem -Timeout 0 - -IMAPStore susecom-remote -Account susecom - -MaildirStore susecom-local -Path ~/.mail/susecom/ -Inbox ~/.mail/susecom/inbox -SubFolders Verbatim - -Channel susecom -Master :susecom-remote: -Slave :susecom-local: -Patterns * !Calendar -Create Both -Sync All -Expunge Both -SyncState * diff --git a/org/README.org b/org/README.org deleted file mode 100644 index b3cc271..0000000 --- a/org/README.org +++ /dev/null @@ -1,22 +0,0 @@ -* org - -Helper files that are included in some way or another into my =org= file. - -* License - -#+BEGIN_SRC text -Copyright (C) 2019 Miquel Sabaté Solà <mikisabate@gmail.com> - -This program is free software: you can redistribute it and/or modify -it under the terms of the GNU General Public License as published by -the Free Software Foundation, either version 3 of the License, or -(at your option) any later version. - -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -You should have received a copy of the GNU General Public License -along with this program. If not, see <http://www.gnu.org/licenses/>. -#+END_SRC diff --git a/org/article-full.org b/org/article-full.org deleted file mode 100644 index 839e1d8..0000000 --- a/org/article-full.org +++ /dev/null @@ -1,20 +0,0 @@ -#+AUTHOR: Miquel Sabaté Solà -#+DESCRIPTION: -#+KEYWORDS: -#+LANGUAGE: ca - -#+OPTIONS: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline -#+OPTIONS: author:t c:nil creator:nil d:(not LOGBOOK) date:t title:t e:t -#+OPTIONS: email:nil f:t inline:t num:t p:nil pri:nil stat:t tags:nil -#+OPTIONS: tasks:t tex:t timestamp:t toc:t todo:t |:t - -#+LaTeX_CLASS_OPTIONS: [catalan,a4paper,12pt] -#+LATEX_HEADER: \usepackage{babel} -#+LATEX_HEADER: \usepackage[a4paper, portrait, margin=1in]{geometry} -#+LATEX_HEADER: \renewcommand{\baselinestretch}{1.5} -#+LATEX_HEADER: \usepackage{newtxtext,newtxmath} - -#+LATEX_HEADER: \usepackage{xcolor} -#+LATEX_HEADER: \hypersetup{colorlinks=false, pdfborderstyle={/S/U/W 1}, urlbordercolor=gray, pdfborder=0 0 1} - -#+SELECT_TAGS: export diff --git a/org/article.org b/org/article.org deleted file mode 100644 index 463ec2f..0000000 --- a/org/article.org +++ /dev/null @@ -1,20 +0,0 @@ -#+AUTHOR: Miquel Sabaté Solà -#+DESCRIPTION: -#+KEYWORDS: -#+LANGUAGE: ca - -#+OPTIONS: ':nil *:t -:t ::t <:t H:3 \n:nil ^:t arch:headline -#+OPTIONS: author:nil c:nil creator:nil d:(not LOGBOOK) date:nil title:nil e:t -#+OPTIONS: email:nil f:t inline:t num:t p:nil pri:nil stat:t tags:nil -#+OPTIONS: tasks:t tex:t timestamp:t toc:nil todo:t |:t - -#+LaTeX_CLASS_OPTIONS: [a4paper, 12pt] -#+LATEX_HEADER: \usepackage[a4paper, portrait, margin=1in]{geometry} -#+LATEX_HEADER: \renewcommand{\baselinestretch}{1.5} -#+LATEX_HEADER: \usepackage{newtxtext,newtxmath} -#+LATEX_HEADER: \usepackage[catalan]{babel} - -#+LATEX_HEADER: \usepackage{xcolor} -#+LATEX_HEADER: \hypersetup{colorlinks=false, pdfborderstyle={/S/U/W 1}, urlbordercolor=gray, pdfborder=0 0 1} - -#+SELECT_TAGS: export diff --git a/psqlrc b/psqlrc deleted file mode 100644 index ff0e7ba..0000000 --- a/psqlrc +++ /dev/null @@ -1,20 +0,0 @@ - -\set QUIET ON - --- Show null values to NULL so we can distinguish them from empty strings. -\pset null NULL - --- Set expanded display on (why isn't this the default behaviour ?) -\x auto - --- Show how long a query took to be executed. -\timing - --- Because everybody loves unicode. -\encoding unicode - --- Set a beautiful prompt :P -\set PROMPT1 '%n@%/ > ' -\set PROMPT2 '' - -\set QUIET OFF diff --git a/rails.gitignore b/rails.gitignore deleted file mode 100644 index 4a32be0..0000000 --- a/rails.gitignore +++ /dev/null @@ -1,16 +0,0 @@ -.bundle -*.gem -pkg -db/*.sqlite3 -log/* -tmp/* -tmp/**/* -doc/app -doc/api -*.sassc -.sass-cache/ -vendor/bundle -config/*.yml -Gemfile.lock -.rvmrc -.rake_tasks diff --git a/rake_completion b/rake_completion deleted file mode 100755 index a142dc7..0000000 --- a/rake_completion +++ /dev/null @@ -1,69 +0,0 @@ -#!/usr/bin/env ruby - -# to install, add the following line to your .bash_profile or .bashrc -# complete -C path/to/rake_completion -o default rake - -# Rake completion will return matching rake tasks given typed text. This way -# you can auto-complete tasks as you are typing them by hitting [tab] or [tab][tab] -# This also caches the rake tasks for optimium speed -class RakeCompletion - CACHE_FILE_NAME = '.rake_tasks' - - def initialize(command) - @command = command - end - - def matches - exit 0 if rakefile.nil? - matching_tasks.map do |task| - task.sub(typed_before_colon, '') - end - end - - private - - def typed - @command[/\s(.+?)$/, 1] || '' - end - - def typed_before_colon - typed[/.+\:/] || '' - end - - def matching_tasks - all_tasks.select do |task| - task[0, typed.length] == typed - end - end - - def all_tasks - cache_current? ? tasks_from_cache : generate_tasks - end - - def cache_current? - File.exist?(cache_file) && File.mtime(cache_file) >= File.mtime(rakefile) - end - - def rakefile - ['rakefile', 'Rakefile', 'rakefile.rb', 'Rakefile.rb'].detect do |file| - File.file? File.join(Dir.pwd, file) - end - end - - def cache_file - File.join(Dir.pwd, CACHE_FILE_NAME) - end - - def tasks_from_cache - IO.read(cache_file).split - end - - def generate_tasks - tasks = `rake --tasks`.split("\n")[1..-1].collect {|line| line.split[1]} - File.open(cache_file, 'w') { |f| f.write tasks.join("\n") } - tasks - end -end - -puts RakeCompletion.new(ENV["COMP_LINE"]).matches -exit 0 diff --git a/rvmrc b/rvmrc deleted file mode 100644 index 72035cc..0000000 --- a/rvmrc +++ /dev/null @@ -1 +0,0 @@ -rvm_autoupdate_flag=2 diff --git a/tmux.conf b/tmux.conf deleted file mode 100644 index 70e483b..0000000 --- a/tmux.conf +++ /dev/null @@ -1,123 +0,0 @@ -# tmux configuration based on: https://github.com/0xAX/my-dotfiles - -# -# Keybindings -# -set -g prefix C-x -bind C-x send-prefix -unbind C-x - -unbind C-b -unbind C-a -unbind % -unbind , -unbind . -unbind n -unbind p -unbind [ -unbind '"' -unbind l -unbind & -unbind "'" -unbind w - -# -# vi -# - -# vi status keys -set-window-option -g mode-keys vi -set-option -g status-keys vi - -# copy & paste like vim -unbind [ -bind Escape copy-mode -unbind p -bind p paste-buffer -bind-key -t vi-copy 'v' begin-selection -bind-key -t vi-copy 'y' copy-selection - - -# move tmux copy buffer into x clipboard -bind-key C-y save-buffer /tmp/tmux-buffer \; run-shell "cat /tmp/tmux-buffer | xclip" - -# -# manage windows -# -bind-key n new-window -bind-key k kill-window -bind-key 2 split-window -h -bind-key 3 split-window - -bind -n C-Right next-window -bind -n C-Left previous-window - -# -# manage panes -# -bind-key x kill-pane - -bind -n S-Up select-pane -U -bind -n S-Down select-pane -D -bind -n S-Left select-pane -L -bind -n S-Right select-pane -R - -bind -n M-S-Up resize-pane -U -bind -n M-S-Down resize-pane -D -bind -n M-S-Left resize-pane -L -bind -n M-S-Right resize-pane -R - -# -# window title -# -set-window-option -g automatic-rename on -set-option -g set-titles on -set-option -g set-titles-string '#S:#I.#P #W' # window number,program name,active (or not) - -# -# misc -# -set -g history-limit 1500 -set -g default-terminal "screen-256color" -set -g bell-action none - -setw -g monitor-activity on -set -g base-index 1 -setw -g pane-base-index 1 - -# -# ui: shamelessly taken from: https://github.com/magarcia/dotfiles -# -set -g status-bg "colour0" -set -g message-command-fg "colour15" -set -g status-justify "left" -set -g status-left-length "100" -set -g status "on" -set -g pane-active-border-fg "colour10" -set -g message-bg "colour8" -set -g status-right-length "100" -set -g status-right-attr "none" -set -g message-fg "colour15" -set -g message-command-bg "colour8" -set -g status-attr "none" -set -g pane-border-fg "colour8" -set -g status-left-attr "none" -setw -g window-status-fg "colour7" -setw -g window-status-attr "none" -setw -g window-status-activity-bg "colour0" -setw -g window-status-activity-attr "none" -setw -g window-status-activity-fg "colour10" -setw -g window-status-separator "" -setw -g window-status-bg "colour0" -set -g status-left "#[fg=colour234,bg=colour10] #S #[fg=colour10,bg=colour0,nobold,nounderscore,noitalics]▓▒░" -set -g status-right "#[fg=colour7,bg=colour0,nobold,nounderscore,noitalics]░▒▓#[fg=colour234,bg=colour7] %Y-%m-%d | %H:%M #[fg=colour7,bg=colour7,nobold,nounderscore,noitalics]░▒▓#[fg=colour234,bg=colour7] #h " -setw -g window-status-format "#[fg=colour7,bg=colour0] #I |#[fg=colour7,bg=colour0] #W " -setw -g window-status-current-format "#[fg=colour0,bg=colour8,nobold,nounderscore,noitalics]▓▒░#[fg=colour15,bg=colour8] #I |#[fg=colour15,bg=colour8] #W #[fg=colour8,bg=colour0,nobold,nounderscore,noitalics]▓▒░" - -# coping inside tmux -bind c copy-mode -bind p paste-buffer -# copy from system to tmux -bind C-p run "tmux set-buffer \"$(xclip -o)\"; tmux paste-buffer" -# copy from tmux to system -bind C-v run-shell "tmux show-buffer | xclip -sel clip -i > /dev/null" diff --git a/valgrindrc b/valgrindrc deleted file mode 100644 index 63d9609..0000000 --- a/valgrindrc +++ /dev/null @@ -1,12 +0,0 @@ ---memcheck:leak-check=full ---memcheck:show-reachable=yes ---memcheck:track-origins=yes ---memcheck:smc-check=all ---memcheck:log-file=/tmp/memcheck.txt ---callgrind:dump-instr=yes ---callgrind:compress-strings=no ---callgrind:compress-pos=no ---massif:time-unit=B ---massif:max-snapshots=128 ---massif:stacks=yes ---massif:peak-inaccuracy=0.5 diff --git a/vim/autocmd.vim b/vim/autocmd.vim deleted file mode 100644 index cbba932..0000000 --- a/vim/autocmd.vim +++ /dev/null @@ -1,22 +0,0 @@ -" Indentation rules for different languages. - -" Some rules regarding indentation on different languages. -autocmd FileType sh setlocal shiftwidth=4 tabstop=4 -autocmd FileType perl setlocal shiftwidth=4 tabstop=4 -autocmd FileType c setlocal noexpandtab shiftwidth=4 tabstop=4 -autocmd FileType yacc setlocal shiftwidth=4 tabstop=4 -autocmd FileType go setlocal noexpandtab shiftwidth=4 tabstop=4 -autocmd FileType ruby setlocal shiftwidth=2 tabstop=2 -autocmd FileType cpp setlocal noexpandtab shiftwidth=4 tabstop=4 -autocmd FileType php setlocal noexpandtab shiftwidth=4 tabstop=4 -autocmd FileType javascript setlocal shiftwidth=2 tabstop=2 - -" Clean up trailing whitespaces on save. -autocmd BufWritePre * :%s/\s\+$//e -au BufRead,BufNewFile Vagrantfile set filetype=ruby - -" If there is a .lvimrc, source it. Note that this works best by calling vim on -" the root of your project. -if filereadable(".lvimrc") - so .lvimrc -endif diff --git a/vim/bundle/Vundle.vim b/vim/bundle/Vundle.vim deleted file mode 160000 index 0b28e33..0000000 --- a/vim/bundle/Vundle.vim +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 0b28e334e65b6628b0a61c412fcb45204a2f2bab diff --git a/vim/bundles.vim b/vim/bundles.vim deleted file mode 100644 index bdf0f4b..0000000 --- a/vim/bundles.vim +++ /dev/null @@ -1,38 +0,0 @@ -" Vundle setup -set rtp+=~/.vim/bundle/Vundle.vim -call vundle#begin() - -Plugin 'gmarik/Vundle.vim' - -" My list of plugins. -Plugin 'tpope/vim-surround.git' -Plugin 'kien/ctrlp.vim.git' -Plugin 'derekwyatt/vim-scala.git' -Plugin 'fatih/vim-go' -Plugin 'Glench/Vim-Jinja2-Syntax' -Plugin 'saltstack/salt-vim' -Plugin 'b4b4r07/vim-hcl' -Plugin 'fatih/vim-hclfmt' - -call vundle#end() - -"" -" Some small adjustments for the installed plugins. - -" vim-surround.vim: <leader>s is used to surround a word. -map <leader>s ysiw - -" Let CtrlP's window to be taller than its default configuration. -let g:ctrlp_match_window = 'max:40' - -" Hi-yo Silver! -let g:ctrlp_user_command = 'ag %s -l --nocolor --hidden -g ""' - -" Tell vim-go to use goimports on save. -let g:go_fmt_command = "goimports" - -" Execute go-lint on save. -if isdirectory($GOPATH."/src/github.com/golang/lint/misc/vim") - set rtp+=$GOPATH/src/github.com/golang/lint/misc/vim - autocmd BufWritePost,FileWritePost *.go execute 'Lint' | cwindow -endif diff --git a/vim/colors/xoria256.vim b/vim/colors/xoria256.vim deleted file mode 100644 index 7d1010b..0000000 --- a/vim/colors/xoria256.vim +++ /dev/null @@ -1,142 +0,0 @@ -" Vim color file -" -" Name: xoria256.vim -" Version: 1.5 -" Maintainer: Dmitriy Y. Zotikov (xio) <xio@ungrund.org> -" -" Should work in recent 256 color terminals. 88-color terms like urxvt are -" NOT supported. -" -" Don't forget to install 'ncurses-term' and set TERM to xterm-256color or -" similar value. -" -" Color numbers (0-255) see: -" http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html -" -" For a specific filetype highlighting rules issue :syntax list when a file of -" that type is opened. - -" Initialization {{{ -if &t_Co != 256 && ! has("gui_running") - echomsg "" - echomsg "err: please use GUI or a 256-color terminal (so that t_Co=256 could be set)" - echomsg "" - finish -endif - -set background=dark - -hi clear - -if exists("syntax_on") - syntax reset -endif - -let colors_name = "xoria256" -"}}} -" Colours {{{1 -"" General {{{2 -hi Normal ctermfg=252 guifg=#d0d0d0 ctermbg=234 guibg=#1c1c1c cterm=none gui=none -hi Cursor ctermbg=214 guibg=#ffaf00 -hi CursorColumn ctermbg=238 guibg=#444444 -hi CursorLine ctermbg=237 guibg=#3a3a3a cterm=none gui=none -hi Error ctermfg=15 guifg=#ffffff ctermbg=1 guibg=#800000 -hi ErrorMsg ctermfg=15 guifg=#ffffff ctermbg=1 guibg=#800000 -hi FoldColumn ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212 -hi Folded ctermfg=255 guifg=#eeeeee ctermbg=60 guibg=#5f5f87 -hi IncSearch ctermfg=0 guifg=#000000 ctermbg=223 guibg=#ffdfaf cterm=none gui=none -hi LineNr ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212 -hi MatchParen ctermfg=188 guifg=#dfdfdf ctermbg=68 guibg=#5f87df cterm=bold gui=bold -" TODO -" hi MoreMsg -hi NonText ctermfg=247 guifg=#9e9e9e ctermbg=233 guibg=#121212 cterm=bold gui=bold -hi Pmenu ctermfg=0 guifg=#000000 ctermbg=250 guibg=#bcbcbc -hi PmenuSel ctermfg=255 guifg=#eeeeee ctermbg=243 guibg=#767676 -hi PmenuSbar ctermbg=252 guibg=#d0d0d0 -hi PmenuThumb ctermfg=243 guifg=#767676 -hi Search ctermfg=0 guifg=#000000 ctermbg=149 guibg=#afdf5f -hi SignColumn ctermfg=248 guifg=#a8a8a8 -hi SpecialKey ctermfg=77 guifg=#5fdf5f -hi SpellBad ctermfg=160 guifg=fg ctermbg=bg cterm=underline guisp=#df0000 -hi SpellCap ctermfg=189 guifg=#dfdfff ctermbg=bg guibg=bg cterm=underline gui=underline -hi SpellRare ctermfg=168 guifg=#df5f87 ctermbg=bg guibg=bg cterm=underline gui=underline -hi SpellLocal ctermfg=98 guifg=#875fdf ctermbg=bg guibg=bg cterm=underline gui=underline -hi StatusLine ctermfg=15 guifg=#ffffff ctermbg=239 guibg=#4e4e4e cterm=bold gui=bold -hi StatusLineNC ctermfg=249 guifg=#b2b2b2 ctermbg=237 guibg=#3a3a3a cterm=none gui=none -hi TabLine ctermfg=fg guifg=fg ctermbg=242 guibg=#666666 cterm=none gui=none -hi TabLineFill ctermfg=fg guifg=fg ctermbg=237 guibg=#3a3a3a cterm=none gui=none -" FIXME -hi Title ctermfg=225 guifg=#ffdfff -hi Todo ctermfg=0 guifg=#000000 ctermbg=184 guibg=#dfdf00 -hi Underlined ctermfg=39 guifg=#00afff cterm=underline gui=underline -hi VertSplit ctermfg=237 guifg=#3a3a3a ctermbg=237 guibg=#3a3a3a cterm=none gui=none -" hi VIsualNOS ctermfg=24 guifg=#005f87 ctermbg=153 guibg=#afdfff cterm=none gui=none -" hi Visual ctermfg=24 guifg=#005f87 ctermbg=153 guibg=#afdfff -hi Visual ctermfg=255 guifg=#eeeeee ctermbg=96 guibg=#875f87 -" hi Visual ctermfg=255 guifg=#eeeeee ctermbg=24 guibg=#005f87 -hi VisualNOS ctermfg=255 guifg=#eeeeee ctermbg=60 guibg=#5f5f87 -hi WildMenu ctermfg=0 guifg=#000000 ctermbg=150 guibg=#afdf87 cterm=bold gui=bold - -"" Syntax highlighting {{{2 -hi Comment ctermfg=244 guifg=#808080 -hi Constant ctermfg=229 guifg=#ffffaf -hi Identifier ctermfg=182 guifg=#dfafdf cterm=none -hi Ignore ctermfg=238 guifg=#444444 -hi Number ctermfg=180 guifg=#dfaf87 -hi PreProc ctermfg=150 guifg=#afdf87 -hi Special ctermfg=174 guifg=#df8787 -hi Statement ctermfg=110 guifg=#87afdf cterm=none gui=none -hi Type ctermfg=146 guifg=#afafdf cterm=none gui=none - -"" Special {{{2 -""" .diff {{{3 -hi diffAdded ctermfg=150 guifg=#afdf87 -hi diffRemoved ctermfg=174 guifg=#df8787 -""" vimdiff {{{3 -hi diffAdd ctermfg=bg guifg=bg ctermbg=151 guibg=#afdfaf -"hi diffDelete ctermfg=bg guifg=bg ctermbg=186 guibg=#dfdf87 cterm=none gui=none -hi diffDelete ctermfg=bg guifg=bg ctermbg=246 guibg=#949494 cterm=none gui=none -hi diffChange ctermfg=bg guifg=bg ctermbg=181 guibg=#dfafaf -hi diffText ctermfg=bg guifg=bg ctermbg=174 guibg=#df8787 cterm=none gui=none -""" HTML {{{3 -" hi htmlTag ctermfg=146 guifg=#afafdf -" hi htmlEndTag ctermfg=146 guifg=#afafdf -hi htmlTag ctermfg=244 -hi htmlEndTag ctermfg=244 -hi htmlArg ctermfg=182 guifg=#dfafdf -hi htmlValue ctermfg=187 guifg=#dfdfaf -hi htmlTitle ctermfg=254 ctermbg=95 -" hi htmlArg ctermfg=146 -" hi htmlTagName ctermfg=146 -" hi htmlString ctermfg=187 -""" django {{{3 -hi djangoVarBlock ctermfg=180 -hi djangoTagBlock ctermfg=150 -hi djangoStatement ctermfg=146 -hi djangoFilter ctermfg=174 -""" python {{{3 -hi pythonExceptions ctermfg=174 -""" NERDTree {{{3 -hi Directory ctermfg=110 guifg=#87afdf -hi treeCWD ctermfg=180 guifg=#dfaf87 -hi treeClosable ctermfg=174 guifg=#df8787 -hi treeOpenable ctermfg=150 guifg=#afdf87 -hi treePart ctermfg=244 guifg=#808080 -hi treeDirSlash ctermfg=244 guifg=#808080 -hi treeLink ctermfg=182 guifg=#dfafdf - -""" VimDebug {{{3 -" FIXME -" you may want to set SignColumn highlight in your .vimrc -" :help sign -" :help SignColumn - -" hi currentLine term=reverse cterm=reverse gui=reverse -" hi breakPoint term=NONE cterm=NONE gui=NONE -" hi empty term=NONE cterm=NONE gui=NONE - -" sign define currentLine linehl=currentLine -" sign define breakPoint linehl=breakPoint text=>> -" sign define both linehl=currentLine text=>> -" sign define empty linehl=empty - diff --git a/vimrc b/vimrc deleted file mode 100644 index 18c6b4e..0000000 --- a/vimrc +++ /dev/null @@ -1,171 +0,0 @@ -"" -" Basics - -filetype on -syntax on -set encoding=utf-8 - -"" -" Global stuff - -" Show matched result. -set showmatch - -" Don't show the current command in the lower right corner. -set showcmd - -" Show numbers. -set number -set relativenumber - -" Don't show the mode, since this will be shown by the status line. -set noshowmode - -" Make sure that unsaved buffers that are to be put in the background are -" allowed to go in there (ie. the "must save first" error doesn't come up) -set hidden - -" Allow backspacing over everything in insert mode -set backspace=indent,eol,start - -" Don't wrap lines -set nowrap - -" I don't like the backup and the swapfile thingies. -set nobackup -set noswapfile - -" Use always the clipboard. -" NOTE: this only works if you have vim with clipboard support. You can check -" this by calling vim --version and see if you have +clipboard. -set clipboard=unnamed - -" Paste toggle -set pastetoggle=<f2> - -"" -" Colorscheme - -set background=dark -colorscheme xoria256 - -"" -" Setup the cursor for Konsole. -" NOTE: change this if you're not using Konsole or a program that makes use -" of the Konsole part. See -" http://vim.wikia.com/wiki/Change_cursor_shape_in_different_modes - -let &t_SI = "\<Esc>]50;CursorShape=1\x7" -let &t_EI = "\<Esc>]50;CursorShape=0\x7" - -"" -" Status line - -" Returns the mode we are currently. -function! Mode() - redraw - let l:mode = mode() - - if mode ==# "n" | return "NORMAL" - elseif mode ==# "i" | return "INSERT" - elseif mode ==# "R" | return "REPLACE" - elseif mode ==# "v" | return "VISUAL" - elseif mode ==# "V" | return "VISUAL-LINE" - elseif mode ==# "s" | return "SELECT" - elseif mode ==# "" | return "VISUAL-BLOCK" - else | return l:mode - endif -endfunc - -" My own status line. -set stl=\ %{Mode()}\ \|\ %f\ %m\ %r\ %=\ Line:\ %l\ Column:\ %v\ Buf:#%n - -" Always show the status line. -set laststatus=2 - -"" -" Searching stuff. - -" Ignore the case on search by default. -set ignorecase - -" Case sensitive if we start the search by an uppercase letter. -set smartcase - -" Find as you type search. -set incsearch - -"" -" Tabs, Indentation - -set textwidth=79 -set tabstop=2 -set shiftwidth=2 -set cindent -set autoindent -set smarttab -set expandtab -set backspace=indent,eol,start - -"" -" Plugins. - -filetype off -filetype indent plugin off - -" All the plugins are listed in my bundles file, that will be installed -" inside the ~/.vim directory. -source ~/.vim/bundles.vim - -" Enable plugins again. -filetype indent plugin on - -"" -" Everything regarding filetypes: indentation rules, gofmt & friends. - -source ~/.vim/autocmd.vim - -"" -" Re-mappings - -let g:mapleader = "," - -" Make window navigation easier. -nnoremap <C-j> <C-w>j -nnoremap <C-k> <C-w>k -nnoremap <C-h> <C-w>h -nnoremap <C-l> <C-w>l -nnoremap <leader>c :close<CR> -nnoremap <leader>v :vs<CR> -nnoremap <leader>V :vs<CR><C-w><C-l> - -" <C-s> in normal/insert mode: switch to normal mode and write to disk. -inoremap <C-s> <ESC>:w<CR> -nnoremap <C-s> :w<CR> - -" <C-q> is the same as @q (I use q to store macros). -nnoremap <C-q> @q - -" Pressing ^ in order to move to the first non-blank character is inconvenient. -nnoremap <leader>, ^ - -" The default behavior for <C-z> is simply useless: why would I want to stop -" the current `vim` process ? (especially shitty if you miss useful commands -" like <C-x> ...). -" -" Before I was remapping this to <nop>, but since switching to Emacs, I've -" started to use <C-z> as escape there in order to not overlap with an -" extremely used prefix. For consistency's sake, I'm also applying this to Vim. -nnoremap <C-z> <ESC> -inoremap <C-z> <ESC> - -" Do nothing for the <S-K> command. I never use it and it appears when I -" misstype <S-J>. -nnoremap K <nop> - -" Do nothing for <c-o>. I don't use this feature and it confuses me whenever I -" misstype <c-p> (CtrlP plugin). -nnoremap <c-o> <nop> - -" Set paste temporarily to just paste what we have on the registry. -nnoremap <leader>p :set paste<cr>p:set nopaste<cr> diff --git a/xinitrc b/xinitrc deleted file mode 100644 index 0f8722f..0000000 --- a/xinitrc +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/bash -# -# Sample .xinitrc for SuSE Linux -# This script is called from 'startx' when you start an X session -# - -# -# In case everything goes wrong, we at least fall back to a plain xterm -# -failsafe="xterm -ls -T Failsafe -geometry 80x24-0-0" -trap "exec $failsafe" EXIT SIGHUP SIGINT SIGPIPE SIGTERM SIGIO - -# -# Some bash (1 and 2) settings to avoid trouble on a -# failed program call. -# -set +e > /dev/null 2>&1 -set +u > /dev/null 2>&1 -set +o posix > /dev/null 2>&1 -if type shopt > /dev/null 2>&1 ; then - shopt -s execfail -else - no_exit_on_failed_exec=1 -fi - -# -# Source common code shared between the -# X session and X init scripts -# -. /etc/X11/xinit/xinitrc.common - -# -# Special for twm -# -case "$WINDOWMANAGER" in - *twm) xsetroot -solid darkslateblue -esac - -# -# Uncomment next lines to activate asking for ssh passphrase -# -# if test -S "$SSH_AUTH_SOCK" -a -x "$SSH_ASKPASS"; then -# ssh-add < /dev/null -# fi - -# -# Add your own lines here... -# - -# day planer deamon -# pland & - -# -# finally start the window manager -# -unset WINDOW_MANAGER STARTUP -exec $WINDOWMANAGER ${1+"$@"} - -# call failsafe -exit 0 -- cgit v1.2.3