diff --git a/.gitmodules b/.gitmodules index a477fb7e11..6c69620090 100644 --- a/.gitmodules +++ b/.gitmodules @@ -43,3 +43,6 @@ [submodule "submodules/wxsf-code"] path = submodules/wxsf-code url = https://github.com/eranif/wxsf-code.git +[submodule "submodules/lexilla"] + path = submodules/lexilla + url = https://github.com/eranif/lexilla.git diff --git a/CMakeLists.txt b/CMakeLists.txt index dc24cf96b9..ebb06b718d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -879,6 +879,9 @@ endif() # add the dtl module include path before we include Plugin folder include_directories(submodules/dtl) +# Extran lexers required by CodeLite +add_subdirectory(submodules/lexilla) + add_subdirectory(submodules) include_directories(submodules/cJSON) @@ -1191,4 +1194,3 @@ endif() unset(WITH_CHATAI CACHE) unset(DEBUG_BUILD CACHE) unset(BUILD_TESTING CACHE) - diff --git a/Plugin/CMakeLists.txt b/Plugin/CMakeLists.txt index 7d35a80a57..9c66e4436f 100644 --- a/Plugin/CMakeLists.txt +++ b/Plugin/CMakeLists.txt @@ -90,6 +90,7 @@ target_link_libraries( ${wxWidgets_LIBRARIES} ${LIBYAML_CPP} -L"${CL_LIBPATH}" + lexers_extra libcodelite) if(USE_PCH) diff --git a/Plugin/ThemeImporters/ThemeImporterErrorlist.cpp b/Plugin/ThemeImporters/ThemeImporterErrorlist.cpp index f15c91af0f..ec24cf1032 100644 --- a/Plugin/ThemeImporters/ThemeImporterErrorlist.cpp +++ b/Plugin/ThemeImporters/ThemeImporterErrorlist.cpp @@ -1,77 +1,83 @@ #include "ThemeImporterErrorlist.hpp" +#include "ExtraLexers.h" #include "clColours.h" #include "drawingutils.h" ThemeImporterErrorlist::ThemeImporterErrorlist() { SetFileExtensions("*.log"); - m_langName = "errorlist"; + m_langName = "terminal"; } ThemeImporterErrorlist::~ThemeImporterErrorlist() {} + LexerConf::Ptr_t ThemeImporterErrorlist::Import(const wxFileName& theme_file) { - LexerConf::Ptr_t lexer = InitializeImport(theme_file, m_langName, wxSTC_LEX_ERRORLIST); + LexerConf::Ptr_t lexer = InitializeImport(theme_file, m_langName, wxSTC_LEX_TERMINAL); bool is_dark = DrawingUtils::IsDark(m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_DEFAULT, "Default", m_editor); - AddProperty(lexer, wxSTC_ERR_PYTHON, "Python error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_GCC, "GCC like error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_MS, "MSVC error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_CMD, "CMD error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_BORLAND, "Borland error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_PERL, "Perl error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_NET, ".NET error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_LUA, "LUA error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_CTAG, "CTags line", clColours::Cyan(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_DIFF_CHANGED, "Diff line changed", clColours::Yellow(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_DIFF_ADDITION, "Diff line added", clColours::Green(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_DIFF_DELETION, "Diff line deleted", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_DIFF_MESSAGE, "Diff line message", clColours::Cyan(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_PHP, "PHP error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ELF, "Essential Lahey Fortran error message", clColours::Red(is_dark), + AddProperty(lexer, wxSTC_TERMINAL_DEFAULT, "Default", m_editor); + AddProperty(lexer, wxSTC_TERMINAL_PYTHON, "Python error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_GCC, "GCC like error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_GCC_WARNING, "GCC like warning message", clColours::Yellow(is_dark), + m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_GCC_NOTE, "GCC like note message", clColours::Cyan(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_MS, "MSVC error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_CMD, "CMD error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_BORLAND, "Borland error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_PERL, "Perl error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_NET, ".NET error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_LUA, "LUA error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_CTAG, "CTags line", clColours::Cyan(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_DIFF_CHANGED, "Diff line changed", clColours::Yellow(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_IFC, "Intel Fortran Compiler error/warning message", clColours::Red(is_dark), + AddProperty(lexer, wxSTC_TERMINAL_DIFF_ADDITION, "Diff line added", clColours::Green(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_DIFF_DELETION, "Diff line deleted", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_DIFF_MESSAGE, "Diff line message", clColours::Cyan(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_PHP, "PHP error message", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ELF, "Essential Lahey Fortran error message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_IFORT, "Intel Fortran Compiler v8.0 error/warning message", clColours::Red(is_dark), + AddProperty(lexer, wxSTC_TERMINAL_IFC, "Intel Fortran Compiler error/warning message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ABSF, "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + AddProperty(lexer, wxSTC_TERMINAL_IFORT, "Intel Fortran Compiler v8.0 error/warning message", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_TIDY, "HTML tidy style", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_JAVA_STACK, "Java stack", clColours::Cyan(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_VALUE, "Value", m_editor); - AddProperty(lexer, wxSTC_ERR_GCC_INCLUDED_FROM, "GCC 'included from'", clColours::Grey(is_dark), + AddProperty(lexer, wxSTC_TERMINAL_ABSF, "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_TIDY, "HTML tidy style", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_JAVA_STACK, "Java stack", clColours::Cyan(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_VALUE, "Value", m_editor); + AddProperty(lexer, wxSTC_TERMINAL_GCC_INCLUDED_FROM, "GCC 'included from'", clColours::Grey(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ESCSEQ, "ANSI escape sequence", m_editor); - AddProperty(lexer, wxSTC_ERR_ESCSEQ_UNKNOWN, "ANSI escape sequence unknown", clColours::Red(is_dark), + AddProperty(lexer, wxSTC_TERMINAL_ESCSEQ, "ANSI escape sequence", m_editor); + AddProperty(lexer, wxSTC_TERMINAL_ESCSEQ_UNKNOWN, "ANSI escape sequence unknown", clColours::Red(is_dark), m_editor.bg_colour); -#if wxCHECK_VERSION(3, 3, 0) - AddProperty(lexer, wxSTC_ERR_GCC_EXCERPT, "GCC code excerpt and pointer to issue", clColours::Cyan(is_dark), + AddProperty(lexer, wxSTC_TERMINAL_GCC_EXCERPT, "GCC code excerpt and pointer to issue", clColours::Cyan(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_BASH, "Bash diagnostic line", clColours::Red(is_dark), m_editor.bg_colour); -#endif + AddProperty(lexer, wxSTC_TERMINAL_BASH, "Bash diagnostic line", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_BLACK, "ANSI escape black", clColours::Black(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_RED, "ANSI escape red", clColours::Red(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_GREEN, "ANSI escape green", clColours::Green(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_BROWN, "ANSI escape brown", clColours::Yellow(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_BLUE, "ANSI escape blue", clColours::Blue(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_MAGENTA, "ANSI escape magenta", clColours::Magenta(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_CYAN, "ANSI escape cyan", clColours::Cyan(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_GRAY, "ANSI escape grey", clColours::Grey(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_YELLOW, "ANSI escape yellow", clColours::Yellow(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_DARK_GRAY, "ANSI escape dark grey", clColours::Grey(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_BRIGHT_RED, "ANSI escape bright red", clColours::Red(is_dark, true), + AddProperty(lexer, wxSTC_TERMINAL_ES_BLACK, "ANSI escape black", clColours::Black(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_RED, "ANSI escape red", clColours::Red(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_GREEN, "ANSI escape green", clColours::Green(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_BROWN, "ANSI escape brown", clColours::Yellow(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_BLUE, "ANSI escape blue", clColours::Blue(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_MAGENTA, "ANSI escape magenta", clColours::Magenta(is_dark), + m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_CYAN, "ANSI escape cyan", clColours::Cyan(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_GRAY, "ANSI escape grey", clColours::Grey(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_YELLOW, "ANSI escape yellow", clColours::Yellow(is_dark), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_DARK_GRAY, "ANSI escape dark grey", clColours::Grey(is_dark), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_BRIGHT_GREEN, "ANSI escape bright green", clColours::Green(is_dark, true), + AddProperty(lexer, wxSTC_TERMINAL_ES_BRIGHT_RED, "ANSI escape bright red", clColours::Red(is_dark, true), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_BRIGHT_BLUE, "ANSI escape bright blue", clColours::Blue(is_dark, true), + AddProperty(lexer, wxSTC_TERMINAL_ES_BRIGHT_GREEN, "ANSI escape bright green", clColours::Green(is_dark, true), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_BRIGHT_MAGENTA, "ANSI escape bright magenta", clColours::Magenta(is_dark, true), + AddProperty(lexer, wxSTC_TERMINAL_ES_BRIGHT_BLUE, "ANSI escape bright blue", clColours::Blue(is_dark, true), m_editor.bg_colour); - AddProperty(lexer, wxSTC_ERR_ES_BRIGHT_CYAN, "ANSI escape bright cyan", clColours::Cyan(is_dark, true), + AddProperty(lexer, wxSTC_TERMINAL_ES_BRIGHT_MAGENTA, "ANSI escape bright magenta", + clColours::Magenta(is_dark, true), m_editor.bg_colour); + AddProperty(lexer, wxSTC_TERMINAL_ES_BRIGHT_CYAN, "ANSI escape bright cyan", clColours::Cyan(is_dark, true), m_editor.bg_colour); FinalizeImport(lexer); return lexer; diff --git a/Plugin/lexer_configuration.cpp b/Plugin/lexer_configuration.cpp index 4781ef9d0a..bd76bf97b6 100644 --- a/Plugin/lexer_configuration.cpp +++ b/Plugin/lexer_configuration.cpp @@ -24,6 +24,7 @@ ////////////////////////////////////////////////////////////////////////////// #include "lexer_configuration.h" +#include "ExtraLexers.h" #include "FontUtils.hpp" #include "clSystemSettings.h" #include "cl_config.h" @@ -92,7 +93,19 @@ wxColour to_wx_colour(const wxString& colour_as_string) { return wxColour(colour void LexerConf::Apply(wxStyledTextCtrl* ctrl, bool applyKeywords) { - ctrl->SetLexer(GetLexerId()); + // Apply the lexer + switch (GetLexerId()) { + case wxSTC_LEX_TERMINAL: { + // Allocate custom lexer + auto plexer = CreateExtraLexerTerminal(); + ctrl->SetILexer(plexer); + } break; + default: + // Standard lexers + ctrl->SetLexer(GetLexerId()); + break; + } + ctrl->StyleClearAll(); ctrl->FoldDisplayTextSetStyle(wxSTC_FOLDDISPLAYTEXT_BOXED); ctrl->SetIdleStyling(wxSTC_IDLESTYLING_TOVISIBLE); @@ -133,13 +146,13 @@ void LexerConf::Apply(wxStyledTextCtrl* ctrl, bool applyKeywords) ctrl->SetProperty("lexer.css.scss.language", "1"); } - if (GetLexerId() == wxSTC_LEX_ERRORLIST) { - ctrl->SetProperty("lexer.errorlist.escape.sequences", "1"); - ctrl->SetProperty("lexer.errorlist.value.separate", "1"); + if (GetLexerId() == wxSTC_LEX_TERMINAL) { + ctrl->SetProperty("lexer.terminal.escape.sequences", "1"); + ctrl->SetProperty("lexer.terminal.value.separate", "1"); // Hide escape sequence styles - ctrl->StyleSetVisible(wxSTC_ERR_ESCSEQ, false); - ctrl->StyleSetVisible(wxSTC_ERR_ESCSEQ_UNKNOWN, false); + ctrl->StyleSetVisible(wxSTC_TERMINAL_ESCSEQ, false); + ctrl->StyleSetVisible(wxSTC_TERMINAL_ESCSEQ_UNKNOWN, false); } // Find the default style diff --git a/Plugin/wxTerminalCtrl/wxTerminalOutputCtrl.cpp b/Plugin/wxTerminalCtrl/wxTerminalOutputCtrl.cpp index 24af2a7321..06de5cc77f 100644 --- a/Plugin/wxTerminalCtrl/wxTerminalOutputCtrl.cpp +++ b/Plugin/wxTerminalCtrl/wxTerminalOutputCtrl.cpp @@ -93,7 +93,7 @@ void wxTerminalOutputCtrl::Initialise(const wxFont& font, const wxColour& bg_col m_ctrl->SetEditable(false); m_ctrl->SetWordChars(R"#(\:~abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789_$/.-)#"); m_ctrl->IndicatorSetStyle(INDICATOR_HYPERLINK, wxSTC_INDIC_PLAIN); - auto lexer = ColoursAndFontsManager::Get().GetLexer("errorlist"); + auto lexer = ColoursAndFontsManager::Get().GetLexer("terminal"); if (lexer) { lexer->Apply(m_ctrl); m_ctrl->IndicatorSetForeground(INDICATOR_HYPERLINK, clColours::Blue(lexer->IsDark())); @@ -225,7 +225,7 @@ void wxTerminalOutputCtrl::OnThemeChanged(clCommandEvent& event) void wxTerminalOutputCtrl::ApplyTheme() { - auto lexer = ColoursAndFontsManager::Get().GetLexer("errorlist"); + auto lexer = ColoursAndFontsManager::Get().GetLexer("terminal"); if (lexer) { lexer->Apply(m_ctrl); } diff --git a/Runtime/lexers/lexers.json b/Runtime/lexers/lexers.json index 13b1dfcf7c..59cb26cb2b 100644 --- a/Runtime/lexers/lexers.json +++ b/Runtime/lexers/lexers.json @@ -1,26 +1,26 @@ [{ - "Name": "go", + "Name": "terminal", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -33,154 +33,346 @@ "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#E9BF57", "BgColour": "#282C34", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#23ACDD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#23ACDD", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#E9BF57", "BgColour": "#282C34", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#73CA50", "BgColour": "#282C34", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 13, + "Name": "Diff line message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 14, + "Name": "PHP error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 15, - "Name": "Doc snigle line comment", + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 17, - "Name": "Doc keyword", + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 18, - "Name": "Doc keyword error", + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 19, + "Name": "HTML tidy style", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 20, + "Name": "Java stack", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#56AFD7", + "Colour": "#C0C0C0", "BgColour": "#282C34", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 26, + "Name": "Bash diagnostic line", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 40, + "Name": "ANSI escape black", + "Flags": 0, + "FontDesc": "", + "Colour": "#0E1415", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 41, + "Name": "ANSI escape red", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 42, + "Name": "ANSI escape green", + "Flags": 0, + "FontDesc": "", + "Colour": "#73CA50", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 43, + "Name": "ANSI escape brown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 44, + "Name": "ANSI escape blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#4A88E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 45, + "Name": "ANSI escape magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#915CAF", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 46, + "Name": "ANSI escape cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 47, + "Name": "ANSI escape grey", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 51, + "Name": "ANSI escape yellow", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 48, + "Name": "ANSI escape dark grey", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 49, + "Name": "ANSI escape bright red", + "Flags": 0, + "FontDesc": "", + "Colour": "#E46D66", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 50, + "Name": "ANSI escape bright green", + "Flags": 0, + "FontDesc": "", + "Colour": "#81CF61", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", "BgColour": "#282C34", "Size": -1 }, { @@ -257,28 +449,28 @@ "Size": -1 }] }, { - "Name": "go", + "Name": "terminal", "Theme": "Atom One Light", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -291,156 +483,348 @@ "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#CB9000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#CB9000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#448C27", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, + "Name": "Diff line message", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "PHP error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 15, - "Name": "Doc snigle line comment", + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Doc keyword", + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 18, - "Name": "Doc keyword error", + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#4078F2", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 21, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 22, + "Name": "GCC 'included from'", + "Flags": 0, + "FontDesc": "", + "Colour": "#808080", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 26, + "Name": "Bash diagnostic line", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 40, + "Name": "ANSI escape black", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 41, + "Name": "ANSI escape red", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 42, + "Name": "ANSI escape green", + "Flags": 0, + "FontDesc": "", + "Colour": "#448C27", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 43, + "Name": "ANSI escape brown", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 44, + "Name": "ANSI escape blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#325CC0", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 45, + "Name": "ANSI escape magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#7A3E9D", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 46, + "Name": "ANSI escape cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 47, + "Name": "ANSI escape grey", + "Flags": 0, + "FontDesc": "", + "Colour": "#808080", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 51, + "Name": "ANSI escape yellow", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 48, + "Name": "ANSI escape dark grey", + "Flags": 0, + "FontDesc": "", + "Colour": "#808080", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 49, + "Name": "ANSI escape bright red", + "Flags": 0, + "FontDesc": "", + "Colour": "#B24B45", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 50, + "Name": "ANSI escape bright green", + "Flags": 0, + "FontDesc": "", + "Colour": "#56973C", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#466CC6", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#8751A6", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#198FB9", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -515,28 +899,28 @@ "Size": -1 }] }, { - "Name": "go", + "Name": "terminal", "Theme": "Xcode inspired", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -549,412 +933,346 @@ "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#CB9000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#CB9000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#448C27", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#05314D", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#05314D", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 16, - "Name": "Function", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#000000", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "black", - "BgColour": "red", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", - "Flags": 0, - "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", - "Size": -1 - }, { - "Id": -2, - "Name": "Text Selection", - "Flags": 0, - "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", - "Size": -1 - }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#999999", + "Colour": "#808080", "BgColour": "#FFFFFF", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Classic Eclipse", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#AA3731", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#448C27", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#CB9000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#325CC0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#7A3E9D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0083B2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#808080", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#CB9000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#808080", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#B24B45", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#7F9FBF", + "Colour": "#56973C", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#7F9FBF", + "Colour": "#466CC6", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#000099", + "Colour": "#8751A6", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#198FB9", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -1018,7 +1336,7 @@ "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -1026,33 +1344,33 @@ "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#999999", "BgColour": "#FFFFFF", "Size": -1 }] }, { - "Name": "go", - "Theme": "Dark Flash Builder", + "Name": "terminal", + "Theme": "Classic Eclipse", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -1060,515 +1378,449 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", - "BgColour": "#3F3F3F", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#448C27", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#A893CC", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#A893CC", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#F2F2DF", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3F3F3F", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#525252", - "BgColour": "#525252", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#525252", - "BgColour": "#3F3F3F", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#8A8A8A", - "BgColour": "#3F3F3F", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Intellij Dracula", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#2B2B2B", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", - "BgColour": "#2B2B2B", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", - "BgColour": "#2B2B2B", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", + "Colour": "#448C27", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", + "Colour": "#325CC0", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", - "BgColour": "#2B2B2B", + "Colour": "#7A3E9D", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", + "Colour": "#B24B45", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#84B977", - "BgColour": "#2B2B2B", + "Colour": "#56973C", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#84B977", - "BgColour": "#2B2B2B", + "Colour": "#466CC6", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#FFC66D", - "BgColour": "#2B2B2B", + "Colour": "#8751A6", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", + "Colour": "#198FB9", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#2B2B2B", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#2B2B2B", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#2B2B2B", - "BgColour": "#2B2B2B", + "Colour": "#FFFFFF", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#404040", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#2B2B2B", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#2B2B2B", + "Colour": "#F2F2F2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#2B2B2B", + "Colour": "#D8D8D8", + "BgColour": "#FFFFFF", "Size": -1 }] }, { - "Name": "go", - "Theme": "Emacsen", + "Name": "terminal", + "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -1576,418 +1828,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", + "Colour": "#E9BF57", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", - "BgColour": "#234059", + "Colour": "#23ACDD", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#23ACDD", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#E9BF57", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#73CA50", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", + "Colour": "#23ACDD", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#DC322F", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#DC322F", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#2AA198", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#234059", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#395369", - "BgColour": "#395369", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#395369", - "BgColour": "#234059", + "Colour": "#23ACDD", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#758B8B", - "BgColour": "#234059", + "Colour": "#C0C0C0", + "BgColour": "#3F3F3F", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Clasic Emacs", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", + "Colour": "#23ACDD", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#2F4F4F", + "Colour": "#0E1415", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2F4F4F", + "Colour": "#E25D56", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", + "Colour": "#73CA50", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", + "Colour": "#E9BF57", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", + "Colour": "#4A88E4", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#2F4F4F", + "Colour": "#915CAF", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#23ACDD", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#C0C0C0", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#E9BF57", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", + "Colour": "#C0C0C0", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", + "Colour": "#E46D66", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#2F4F4F", + "Colour": "#81CF61", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#2F4F4F", + "Colour": "#5C93E6", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#2F4F4F", + "Colour": "#9C6CB7", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", + "Colour": "#39B4E0", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 34, @@ -1995,7 +2181,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#2F4F4F", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 35, @@ -2003,23 +2189,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#2F4F4F", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#2F4F4F", - "BgColour": "#2F4F4F", + "Colour": "#3F3F3F", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#436060", - "BgColour": "#436060", + "Colour": "#525252", + "BgColour": "#525252", "Size": -1 }, { "Id": -2, @@ -2035,56 +2221,56 @@ "Flags": 0, "FontDesc": "", "Colour": "YELLOW", - "BgColour": "#2F4F4F", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#436060", - "BgColour": "#2F4F4F", + "Colour": "#525252", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#2F4F4F", + "Colour": "#8A8A8A", + "BgColour": "#3F3F3F", "Size": -1 }] }, { - "Name": "go", - "Theme": "Gedit Original Oblivion", + "Name": "terminal", + "Theme": "Intellij Dracula", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -2092,515 +2278,449 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#E9BF57", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", - "BgColour": "#2e3436", + "Colour": "#23ACDD", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#23ACDD", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#E9BF57", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#73CA50", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#23ACDD", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 16, - "Name": "Function", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 19, + "Name": "HTML tidy style", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 20, + "Name": "Java stack", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#2e3436", + "Colour": "#23ACDD", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#2e3436", - "BgColour": "#2e3436", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#42484A", - "BgColour": "#42484A", + "Colour": "#C0C0C0", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", - "Flags": 0, - "FontDesc": "", - "Colour": "#42484A", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 38, - "Name": "Calltip", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 33, - "Name": "Line Numbers", - "Flags": 0, - "FontDesc": "", - "Colour": "#555753", - "BgColour": "#2e3436", - "Size": -1 - }] - }, { - "Name": "go", - "Theme": "BlueHippo", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Multi line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#008080", - "BgColour": "#FFFFFF", + "Colour": "#0E1415", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", + "Colour": "#73CA50", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", + "Colour": "#4A88E4", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#008080", - "BgColour": "#FFFFFF", + "Colour": "#915CAF", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", + "Colour": "#E46D66", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#FF7F50", - "BgColour": "#FFFFFF", + "Colour": "#81CF61", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#FF7F50", - "BgColour": "#FFFFFF", + "Colour": "#5C93E6", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#20B2AA", - "BgColour": "#FFFFFF", + "Colour": "#9C6CB7", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", + "Colour": "#39B4E0", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#FFFFFF", + "Colour": "#2B2B2B", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#404040", + "BgColour": "#404040", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#FFFFFF", + "Colour": "YELLOW", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#FFFFFF", + "Colour": "#404040", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#708090", - "BgColour": "#FFFFFF", + "Colour": "#D0D0D0", + "BgColour": "#2B2B2B", "Size": -1 }] }, { - "Name": "go", - "Theme": "My vim dark", + "Name": "terminal", + "Theme": "Emacsen", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -2608,418 +2728,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#E9BF57", + "BgColour": "#234059", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#23ACDD", + "BgColour": "#234059", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#23ACDD", + "BgColour": "#234059", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#E9BF57", + "BgColour": "#234059", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#73CA50", + "BgColour": "#234059", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#23ACDD", + "BgColour": "#234059", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#191919", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#000000", + "Colour": "#23ACDD", + "BgColour": "#234059", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", - "BgColour": "#000000", + "BgColour": "#234059", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Oblivion", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", + "Colour": "#23ACDD", + "BgColour": "#234059", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#1E1E1E", + "Colour": "#0E1415", + "BgColour": "#234059", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#1E1E1E", + "Colour": "#E25D56", + "BgColour": "#234059", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", + "Colour": "#73CA50", + "BgColour": "#234059", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", + "Colour": "#E9BF57", + "BgColour": "#234059", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", + "Colour": "#4A88E4", + "BgColour": "#234059", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#1E1E1E", + "Colour": "#915CAF", + "BgColour": "#234059", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#23ACDD", + "BgColour": "#234059", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#C0C0C0", + "BgColour": "#234059", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#E9BF57", + "BgColour": "#234059", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", + "Colour": "#C0C0C0", + "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", + "Colour": "#E46D66", + "BgColour": "#234059", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#1E1E1E", + "Colour": "#81CF61", + "BgColour": "#234059", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#1E1E1E", + "Colour": "#5C93E6", + "BgColour": "#234059", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#1E1E1E", + "Colour": "#9C6CB7", + "BgColour": "#234059", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", + "Colour": "#39B4E0", + "BgColour": "#234059", "Size": -1 }, { "Id": 34, @@ -3027,7 +3081,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#1E1E1E", + "BgColour": "#234059", "Size": -1 }, { "Id": 35, @@ -3035,23 +3089,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#1E1E1E", + "BgColour": "#234059", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#1E1E1E", - "BgColour": "#1E1E1E", + "Colour": "#234059", + "BgColour": "#234059", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#343434", - "BgColour": "#343434", + "Colour": "#395369", + "BgColour": "#395369", "Size": -1 }, { "Id": -2, @@ -3067,56 +3121,56 @@ "Flags": 0, "FontDesc": "", "Colour": "YELLOW", - "BgColour": "#1E1E1E", + "BgColour": "#234059", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#343434", - "BgColour": "#1E1E1E", + "Colour": "#395369", + "BgColour": "#234059", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#1E1E1E", + "Colour": "#758B8B", + "BgColour": "#234059", "Size": -1 }] }, { - "Name": "go", - "Theme": "RecognEyes", + "Name": "terminal", + "Theme": "Clasic Emacs", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -3124,515 +3178,449 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", + "Colour": "#E9BF57", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#101020", + "Colour": "#23ACDD", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#23ACDD", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#E9BF57", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#73CA50", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", + "Colour": "#23ACDD", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 16, - "Name": "Function", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 19, + "Name": "HTML tidy style", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 20, + "Name": "Java stack", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#101020", + "Colour": "#23ACDD", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#101020", - "BgColour": "#101020", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#272736", - "BgColour": "#272736", + "Colour": "#C0C0C0", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#272736", - "BgColour": "#101020", + "Colour": "#23ACDD", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#2B91AF", - "BgColour": "#101020", + "Colour": "#0E1415", + "BgColour": "#2F4F4F", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Roboticket", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#F5F5F5", + "Colour": "#E25D56", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", + "Colour": "#73CA50", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", + "Colour": "#E9BF57", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", + "Colour": "#4A88E4", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", - "BgColour": "#F5F5F5", + "Colour": "#915CAF", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", - "BgColour": "#F5F5F5", + "Colour": "#23ACDD", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", + "Colour": "#C0C0C0", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", + "Colour": "#E9BF57", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 8, - "Name": "Uuid", - "Flags": 0, - "FontDesc": "", - "Colour": "#AF0F91", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 9, - "Name": "Preprocessor", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 12, - "Name": "Open String", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", + "Colour": "#C0C0C0", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", + "Colour": "#E46D66", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#566874", - "BgColour": "#F5F5F5", + "Colour": "#81CF61", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#566874", - "BgColour": "#F5F5F5", + "Colour": "#5C93E6", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#B05A65", - "BgColour": "#F5F5F5", + "Colour": "#9C6CB7", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", + "Colour": "#39B4E0", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#F5F5F5", - "BgColour": "#F5F5F5", + "Colour": "#2F4F4F", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", - "BgColour": "#E8E8E8", + "Colour": "#436060", + "BgColour": "#436060", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#F5F5F5", + "Colour": "YELLOW", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", - "BgColour": "#F5F5F5", + "Colour": "#436060", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#AFBFCF", - "BgColour": "#F5F5F5", + "Colour": "#D0D0D0", + "BgColour": "#2F4F4F", "Size": -1 }] }, { - "Name": "go", - "Theme": "Sublime Text 2", + "Name": "terminal", + "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -3640,418 +3628,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", + "Colour": "#E9BF57", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", - "BgColour": "#272822", + "Colour": "#23ACDD", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#23ACDD", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#E9BF57", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#73CA50", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", + "Colour": "#23ACDD", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#A7EC21", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#272822", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", - "BgColour": "#3C3D38", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", - "BgColour": "#272822", + "Colour": "#23ACDD", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#999999", - "BgColour": "#272822", + "Colour": "#C0C0C0", + "BgColour": "#2E3436", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Tomorrow Night", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", + "Colour": "#23ACDD", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", - "BgColour": "#1D1F21", + "Colour": "#0E1415", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", - "BgColour": "#1D1F21", + "Colour": "#E25D56", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", + "Colour": "#73CA50", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", + "Colour": "#E9BF57", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", + "Colour": "#4A88E4", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", - "BgColour": "#1D1F21", + "Colour": "#915CAF", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#23ACDD", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#C0C0C0", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#E9BF57", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", + "Colour": "#C0C0C0", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", + "Colour": "#E46D66", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#CED1CF", - "BgColour": "#1D1F21", + "Colour": "#81CF61", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#CED1CF", - "BgColour": "#1D1F21", + "Colour": "#5C93E6", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#81A2BE", - "BgColour": "#1D1F21", + "Colour": "#9C6CB7", + "BgColour": "#2E3436", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", + "Colour": "#39B4E0", + "BgColour": "#2E3436", "Size": -1 }, { "Id": 34, @@ -4059,7 +3981,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#1D1F21", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 35, @@ -4067,23 +3989,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#1D1F21", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#1D1F21", - "BgColour": "#1D1F21", + "Colour": "#2e3436", + "BgColour": "#2e3436", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#333537", - "BgColour": "#333537", + "Colour": "#42484A", + "BgColour": "#42484A", "Size": -1 }, { "Id": -2, @@ -4099,56 +4021,56 @@ "Flags": 0, "FontDesc": "", "Colour": "YELLOW", - "BgColour": "#1D1F21", + "BgColour": "#2e3436", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#333537", - "BgColour": "#1D1F21", + "Colour": "#42484A", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#555753", + "BgColour": "#2e3436", "Size": -1 }] }, { - "Name": "go", - "Theme": "Vim Desert", + "Name": "terminal", + "Theme": "BlueHippo", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -4156,515 +4078,449 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", - "BgColour": "#262626", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#448C27", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#82F985", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#262626", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", - "BgColour": "#3B3B3B", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#262626", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", - "BgColour": "#262626", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#FFFE00", - "BgColour": "#262626", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Vim Jellybeans Port", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", - "BgColour": "#151515", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", - "BgColour": "#151515", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", + "Colour": "#448C27", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", + "Colour": "#325CC0", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", - "BgColour": "#151515", + "Colour": "#7A3E9D", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#B24B45", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#56973C", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#466CC6", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#151515", + "Colour": "#8751A6", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", + "Colour": "#198FB9", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#151515", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#151515", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#151515", - "BgColour": "#151515", + "Colour": "#FFFFFF", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", - "BgColour": "#2C2C2C", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#151515", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", - "BgColour": "#151515", + "Colour": "#F2F2F2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#605958", - "BgColour": "#151515", + "Colour": "#708090", + "BgColour": "#FFFFFF", "Size": -1 }] }, { - "Name": "go", - "Theme": "One Dark Pro", + "Name": "terminal", + "Theme": "My vim dark", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -4672,417 +4528,351 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", + "Colour": "#E9BF57", + "BgColour": "#000000", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", - "BgColour": "#282c34", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E9BF57", + "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#73CA50", + "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#61afef", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", - "Flags": 0, - "FontDesc": "", - "Colour": "#282c34", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": -1, - "Name": "Fold Margin", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#3D4148", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#528bff", - "BgColour": "#ffffffc9", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#495162", - "BgColour": "#282c34", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Darkside-contrast", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#E25D56", "BgColour": "#000000", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#23ACDD", "BgColour": "#000000", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#E25D56", "BgColour": "#000000", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#0E1415", "BgColour": "#000000", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#E25D56", "BgColour": "#000000", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#73CA50", "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#E9BF57", "BgColour": "#000000", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#4A88E4", "BgColour": "#000000", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#915CAF", "BgColour": "#000000", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#23ACDD", "BgColour": "#000000", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#E9BF57", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#E46D66", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#81CF61", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#5C93E6", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#9C6CB7", "BgColour": "#000000", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#39B4E0", "BgColour": "#000000", "Size": -1 }, { @@ -5130,7 +4920,7 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", + "Colour": "YELLOW", "BgColour": "#000000", "Size": -1 }, { @@ -5146,7 +4936,7 @@ "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { @@ -5154,33 +4944,33 @@ "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }] }, { - "Name": "go", - "Theme": "Darkside-light", + "Name": "terminal", + "Theme": "Oblivion", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -5188,418 +4978,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#e0e0e0", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", + "Colour": "#E9BF57", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", - "BgColour": "#e0e0e0", + "Colour": "#23ACDD", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#23ACDD", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#E9BF57", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#73CA50", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", + "Colour": "#23ACDD", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "black", - "BgColour": "red", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#e0e0e0", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#D4D4D4", - "BgColour": "#D4D4D4", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#222222", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#D4D4D4", - "BgColour": "#e0e0e0", + "Colour": "#23ACDD", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#adadad", - "BgColour": "#e0e0e0", + "Colour": "#C0C0C0", + "BgColour": "#1E1E1E", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Darkside", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", + "Colour": "#23ACDD", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#222324", + "Colour": "#0E1415", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#222324", + "Colour": "#E25D56", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", + "Colour": "#73CA50", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", + "Colour": "#E9BF57", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", + "Colour": "#4A88E4", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#222324", + "Colour": "#915CAF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#23ACDD", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#C0C0C0", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#E9BF57", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", + "Colour": "#C0C0C0", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", + "Colour": "#E46D66", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", + "Colour": "#81CF61", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", + "Colour": "#5C93E6", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", - "BgColour": "#222324", + "Colour": "#9C6CB7", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#39B4E0", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 34, @@ -5607,7 +5331,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#222324", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 35, @@ -5615,23 +5339,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#222324", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#222324", + "Colour": "#1E1E1E", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#383939", - "BgColour": "#383939", + "Colour": "#343434", + "BgColour": "#343434", "Size": -1 }, { "Id": -2, @@ -5646,57 +5370,57 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#222324", + "Colour": "YELLOW", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#383939", - "BgColour": "#222324", + "Colour": "#343434", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#545658", - "BgColour": "#222324", + "Colour": "#D0D0D0", + "BgColour": "#1E1E1E", "Size": -1 }] }, { - "Name": "go", - "Theme": "Earthsong-contrast", + "Name": "terminal", + "Theme": "RecognEyes", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -5704,676 +5428,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", + "Colour": "#E9BF57", + "BgColour": "#101020", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#23ACDD", + "BgColour": "#101020", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#23ACDD", + "BgColour": "#101020", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#E9BF57", + "BgColour": "#101020", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#73CA50", + "BgColour": "#101020", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", + "Colour": "#23ACDD", + "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { "Id": 16, - "Name": "Function", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 19, + "Name": "HTML tidy style", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#12100f", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 20, + "Name": "Java stack", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#12100f", + "Colour": "#23ACDD", + "BgColour": "#101020", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", - "Flags": 0, - "FontDesc": "", - "Colour": "#12100f", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": -1, - "Name": "Fold Margin", - "Flags": 0, - "FontDesc": "", - "Colour": "#292727", - "BgColour": "#292727", - "Size": -1 - }, { - "Id": -2, - "Name": "Text Selection", - "Flags": 0, - "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", - "Size": -1 - }, { - "Id": -3, - "Name": "Caret Colour", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": -4, - "Name": "Whitespace", - "Flags": 0, - "FontDesc": "", - "Colour": "#292727", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 38, - "Name": "Calltip", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 33, - "Name": "Line Numbers", - "Flags": 0, - "FontDesc": "", - "Colour": "#4a413d", - "BgColour": "#12100f", - "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Earthsong-light", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 1, - "Name": "Multi line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 3, - "Name": "Doc comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 5, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 20, - "Name": "String Raw", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 8, - "Name": "Uuid", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 9, - "Name": "Preprocessor", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 12, - "Name": "Open String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 15, - "Name": "Doc snigle line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 17, - "Name": "Doc keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 18, - "Name": "Doc keyword error", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "black", - "BgColour": "red", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", - "Flags": 0, - "FontDesc": "", - "Colour": "#ffffff", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": -1, - "Name": "Fold Margin", - "Flags": 0, - "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", - "Size": -1 - }, { - "Id": -2, - "Name": "Text Selection", - "Flags": 0, - "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", - "Size": -1 - }, { - "Id": -3, - "Name": "Caret Colour", - "Flags": 0, - "FontDesc": "", - "Colour": "#111111", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": -4, - "Name": "Whitespace", - "Flags": 0, - "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#cccccc", - "BgColour": "#ffffff", + "Colour": "#C0C0C0", + "BgColour": "#101020", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Earthsong", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", + "Colour": "#23ACDD", + "BgColour": "#101020", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#0E1415", + "BgColour": "#101020", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#101020", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#73CA50", + "BgColour": "#101020", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#E9BF57", + "BgColour": "#101020", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#4A88E4", + "BgColour": "#101020", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#915CAF", + "BgColour": "#101020", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#23ACDD", + "BgColour": "#101020", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#C0C0C0", + "BgColour": "#101020", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#E9BF57", + "BgColour": "#101020", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#C0C0C0", + "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", + "Colour": "#E46D66", + "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", + "Colour": "#81CF61", + "BgColour": "#101020", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", + "Colour": "#5C93E6", + "BgColour": "#101020", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#36312c", + "Colour": "#9C6CB7", + "BgColour": "#101020", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#39B4E0", + "BgColour": "#101020", "Size": -1 }, { "Id": 34, @@ -6381,7 +5781,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#36312c", + "BgColour": "#101020", "Size": -1 }, { "Id": 35, @@ -6389,23 +5789,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#36312c", + "BgColour": "#101020", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#36312c", - "BgColour": "#36312c", + "Colour": "#101020", + "BgColour": "#101020", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", - "BgColour": "#4A4541", + "Colour": "#272736", + "BgColour": "#272736", "Size": -1 }, { "Id": -2, @@ -6420,57 +5820,57 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#36312c", + "Colour": "YELLOW", + "BgColour": "#101020", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", - "BgColour": "#36312c", + "Colour": "#272736", + "BgColour": "#101020", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#6e645a", - "BgColour": "#36312c", + "Colour": "#2B91AF", + "BgColour": "#101020", "Size": -1 }] }, { - "Name": "go", - "Theme": "Github-Gruvbox-Theme", + "Name": "terminal", + "Theme": "Roboticket", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -6478,773 +5878,449 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#6D6D6D", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 3, - "Name": "Doc comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#D3869B", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 5, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 20, - "Name": "String Raw", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 8, - "Name": "Uuid", - "Flags": 0, - "FontDesc": "", - "Colour": "#D3869B", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 9, - "Name": "Preprocessor", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 12, - "Name": "Open String", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 15, - "Name": "Doc snigle line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 17, - "Name": "Doc keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 18, - "Name": "Doc keyword error", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#A9B665", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", - "Flags": 0, - "FontDesc": "", - "Colour": "#22272e", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": -1, - "Name": "Fold Margin", - "Flags": 0, - "FontDesc": "", - "Colour": "#383C42", - "BgColour": "#383C42", - "Size": -1 - }, { - "Id": -2, - "Name": "Text Selection", - "Flags": 0, - "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", - "Size": -1 - }, { - "Id": -3, - "Name": "Caret Colour", - "Flags": 0, - "FontDesc": "", - "Colour": "#539bf5", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": -4, - "Name": "Whitespace", - "Flags": 0, - "FontDesc": "", - "Colour": "#383C42", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 38, - "Name": "Calltip", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 33, - "Name": "Line Numbers", - "Flags": 0, - "FontDesc": "", - "Colour": "#768390", - "BgColour": "#22272e", - "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Gruvbox Material Dark", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", + "Colour": "#CB9000", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", + "Colour": "#0083B2", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Doc comment", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Keyword", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 20, - "Name": "String Raw", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#0083B2", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#CB9000", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#448C27", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", + "Colour": "#0083B2", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b665", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#292828", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", - "BgColour": "#3E3D3D", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", - "BgColour": "#292828", + "Colour": "#0083B2", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#7c6f64", - "BgColour": "#292828", + "Colour": "#808080", + "BgColour": "#F5F5F5", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Gruvbox", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", + "Colour": "#0083B2", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#000000", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", - "BgColour": "#383838", + "Colour": "#AA3731", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", + "Colour": "#448C27", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", + "Colour": "#CB9000", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", + "Colour": "#325CC0", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#7A3E9D", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#0083B2", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#808080", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#CB9000", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", + "Colour": "#808080", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", + "Colour": "#B24B45", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", + "Colour": "#56973C", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", + "Colour": "#466CC6", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", + "Colour": "#8751A6", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", + "Colour": "#198FB9", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#383838", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#383838", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#383838", - "BgColour": "#383838", + "Colour": "#F5F5F5", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", - "BgColour": "#4B4B4B", + "Colour": "#E8E8E8", + "BgColour": "#E8E8E8", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "BLACK", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", - "BgColour": "#383838", + "Colour": "#E8E8E8", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#AFBFCF", + "BgColour": "#F5F5F5", "Size": -1 }] }, { - "Name": "go", - "Theme": "Legacy-contrast", + "Name": "terminal", + "Theme": "Sublime Text 2", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -7252,515 +6328,449 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", + "Colour": "#E9BF57", + "BgColour": "#272822", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#080a0c", + "Colour": "#23ACDD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#23ACDD", + "BgColour": "#272822", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#E9BF57", + "BgColour": "#272822", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#73CA50", + "BgColour": "#272822", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", + "Colour": "#23ACDD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#080a0c", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#202224", - "BgColour": "#202224", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#202224", - "BgColour": "#080a0c", + "Colour": "#23ACDD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#313d49", - "BgColour": "#080a0c", + "Colour": "#C0C0C0", + "BgColour": "#272822", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Legacy-light", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#ffffff", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", + "Colour": "#23ACDD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#ffffff", + "Colour": "#0E1415", + "BgColour": "#272822", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#ffffff", + "Colour": "#E25D56", + "BgColour": "#272822", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", + "Colour": "#73CA50", + "BgColour": "#272822", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", + "Colour": "#E9BF57", + "BgColour": "#272822", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", + "Colour": "#4A88E4", + "BgColour": "#272822", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#ffffff", + "Colour": "#915CAF", + "BgColour": "#272822", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#23ACDD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#C0C0C0", + "BgColour": "#272822", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#E9BF57", + "BgColour": "#272822", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", + "Colour": "#C0C0C0", + "BgColour": "#272822", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", + "Colour": "#E46D66", + "BgColour": "#272822", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", + "Colour": "#81CF61", + "BgColour": "#272822", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", + "Colour": "#5C93E6", + "BgColour": "#272822", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#ffffff", + "Colour": "#9C6CB7", + "BgColour": "#272822", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#39B4E0", + "BgColour": "#272822", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#272822", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#272822", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", - "BgColour": "#ffffff", + "Colour": "#272822", + "BgColour": "#272822", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#3C3D38", + "BgColour": "#3C3D38", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#222222", - "BgColour": "#ffffff", + "Colour": "YELLOW", + "BgColour": "#272822", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#ffffff", + "Colour": "#3C3D38", + "BgColour": "#272822", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#cccccc", - "BgColour": "#ffffff", + "Colour": "#999999", + "BgColour": "#272822", "Size": -1 }] }, { - "Name": "go", - "Theme": "Legacy", + "Name": "terminal", + "Theme": "Tomorrow Night", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -7768,418 +6778,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", + "Colour": "#E9BF57", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#212933", + "Colour": "#23ACDD", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#23ACDD", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#E9BF57", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#73CA50", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", + "Colour": "#23ACDD", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#212933", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#373E47", - "BgColour": "#373E47", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#212933", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#373E47", - "BgColour": "#212933", + "Colour": "#23ACDD", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#495b71", - "BgColour": "#212933", + "Colour": "#C0C0C0", + "BgColour": "#1D1F21", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Solarized+", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", + "Colour": "#23ACDD", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", - "BgColour": "#002B36", + "Colour": "#0E1415", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", + "Colour": "#E25D56", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", + "Colour": "#73CA50", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", + "Colour": "#E9BF57", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", + "Colour": "#4A88E4", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", - "BgColour": "#002B36", + "Colour": "#915CAF", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#23ACDD", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#C0C0C0", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#E9BF57", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", + "Colour": "#C0C0C0", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", + "Colour": "#E46D66", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", + "Colour": "#81CF61", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", + "Colour": "#5C93E6", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", - "BgColour": "#002B36", + "Colour": "#9C6CB7", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#39B4E0", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 34, @@ -8187,7 +7131,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#002B36", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 35, @@ -8195,23 +7139,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#002B36", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#002B36", - "BgColour": "#002B36", + "Colour": "#1D1F21", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#19404A", - "BgColour": "#19404A", + "Colour": "#333537", + "BgColour": "#333537", "Size": -1 }, { "Id": -2, @@ -8226,57 +7170,57 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#85efff", - "BgColour": "#002B36", + "Colour": "YELLOW", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#19404A", - "BgColour": "#002B36", + "Colour": "#333537", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#4e6b6e", - "BgColour": "#002B36", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }] }, { - "Name": "go", - "Theme": "Tango Dark", + "Name": "terminal", + "Theme": "Vim Desert", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -8284,515 +7228,449 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 3, - "Name": "Doc comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#83E158", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 5, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 20, - "Name": "String Raw", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", + "Colour": "#E9BF57", + "BgColour": "#262626", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", - "BgColour": "#2e3434", + "Colour": "#23ACDD", + "BgColour": "#262626", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 6, + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 7, + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 8, + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 9, + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#23ACDD", + "BgColour": "#262626", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 10, + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#EED247", - "BgColour": "#2e3434", + "Colour": "#E9BF57", + "BgColour": "#262626", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 11, + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#73CA50", + "BgColour": "#262626", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 12, + "Name": "Diff line deleted", + "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 13, + "Name": "Diff line message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#2e3434", + "Colour": "#23ACDD", + "BgColour": "#262626", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#2e3434", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#424848", - "BgColour": "#424848", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#424848", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#23ACDD", + "BgColour": "#262626", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Tokyo Light", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false - }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#faf1dc", + "Colour": "#C0C0C0", + "BgColour": "#262626", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", - "BgColour": "#faf1dc", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", + "Colour": "#23ACDD", + "BgColour": "#262626", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", - "BgColour": "#faf1dc", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", - "BgColour": "#faf1dc", + "Colour": "#0E1415", + "BgColour": "#262626", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", + "Colour": "#E25D56", + "BgColour": "#262626", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", + "Colour": "#73CA50", + "BgColour": "#262626", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", + "Colour": "#E9BF57", + "BgColour": "#262626", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", - "BgColour": "#faf1dc", + "Colour": "#4A88E4", + "BgColour": "#262626", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#915CAF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#23ACDD", + "BgColour": "#262626", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#C0C0C0", + "BgColour": "#262626", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", + "Colour": "#E9BF57", + "BgColour": "#262626", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", + "Colour": "#C0C0C0", + "BgColour": "#262626", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", + "Colour": "#E46D66", + "BgColour": "#262626", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", + "Colour": "#81CF61", + "BgColour": "#262626", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#e64100", - "BgColour": "#faf1dc", + "Colour": "#5C93E6", + "BgColour": "#262626", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", + "Colour": "#9C6CB7", + "BgColour": "#262626", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", + "Colour": "#39B4E0", + "BgColour": "#262626", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#262626", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#262626", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#faf1dc", - "BgColour": "#faf1dc", + "Colour": "#262626", + "BgColour": "#262626", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", - "BgColour": "#EDE4D1", + "Colour": "#3B3B3B", + "BgColour": "#3B3B3B", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "YELLOW", + "BgColour": "#262626", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", - "BgColour": "#faf1dc", + "Colour": "#3B3B3B", + "BgColour": "#262626", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#FFFE00", + "BgColour": "#262626", "Size": -1 }] }, { - "Name": "go", - "Theme": "Tokyo Night", + "Name": "terminal", + "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "Id": 200, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, + "Extensions": "*.log", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -8800,418 +7678,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { "Id": 1, - "Name": "Multi line comment", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { "Id": 2, - "Name": "Single line comment", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 56, + "Name": "GCC like warning message", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", + "Colour": "#E9BF57", + "BgColour": "#151515", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 57, + "Name": "GCC like note message", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", + "Colour": "#23ACDD", + "BgColour": "#151515", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 3, + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 4, + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 5, + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 6, + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#23ACDD", + "BgColour": "#151515", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#E9BF57", + "BgColour": "#151515", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#73CA50", + "BgColour": "#151515", "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", + "Colour": "#23ACDD", + "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { "Id": 16, - "Name": "Function", - "Flags": 0, - "FontDesc": "", - "Colour": "#7aa2f7", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 19, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#24283b", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", - "BgColour": "#393D4E", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", - "BgColour": "#24283b", + "Colour": "#23ACDD", + "BgColour": "#151515", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#C0C0C0", + "BgColour": "#151515", "Size": -1 - }] - }, { - "Name": "go", - "Theme": "Alacritty: Mariana", - "Flags": 5, - "Id": 3, - "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.go", - "SubstyleBase": 11, - "WordSet": [{ - "index": 3, - "is_substyle": false }, { - "index": 1, - "is_substyle": false - }, { - "index": 2, - "is_substyle": true - }, { - "index": 4, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 1, - "Name": "Multi line comment", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": 2, - "Name": "Single line comment", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", + "Colour": "#23ACDD", + "BgColour": "#151515", "Size": -1 }, { - "Id": 3, - "Name": "Doc comment", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", - "BgColour": "#343d46", + "Colour": "#0E1415", + "BgColour": "#151515", "Size": -1 }, { - "Id": 5, - "Name": "Keyword", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", - "BgColour": "#343d46", + "Colour": "#E25D56", + "BgColour": "#151515", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", + "Colour": "#73CA50", + "BgColour": "#151515", "Size": -1 }, { - "Id": 20, - "Name": "String Raw", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", + "Colour": "#E9BF57", + "BgColour": "#151515", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", + "Colour": "#4A88E4", + "BgColour": "#151515", "Size": -1 }, { - "Id": 8, - "Name": "Uuid", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", - "BgColour": "#343d46", + "Colour": "#915CAF", + "BgColour": "#151515", "Size": -1 }, { - "Id": 9, - "Name": "Preprocessor", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#23ACDD", + "BgColour": "#151515", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#C0C0C0", + "BgColour": "#151515", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#E9BF57", + "BgColour": "#151515", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", + "Colour": "#C0C0C0", + "BgColour": "#151515", "Size": -1 }, { - "Id": 15, - "Name": "Doc snigle line comment", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", + "Colour": "#E46D66", + "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "Doc keyword", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", + "Colour": "#81CF61", + "BgColour": "#151515", "Size": -1 }, { - "Id": 18, - "Name": "Doc keyword error", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", + "Colour": "#5C93E6", + "BgColour": "#151515", "Size": -1 }, { - "Id": 16, - "Name": "Function", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#85add6", - "BgColour": "#343d46", + "Colour": "#9C6CB7", + "BgColour": "#151515", "Size": -1 }, { - "Id": 19, - "Name": "Class", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", + "Colour": "#39B4E0", + "BgColour": "#151515", "Size": -1 }, { "Id": 34, @@ -9219,7 +8031,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#343d46", + "BgColour": "#151515", "Size": -1 }, { "Id": 35, @@ -9227,23 +8039,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#343d46", + "BgColour": "#151515", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#343d46", - "BgColour": "#343d46", + "Colour": "#151515", + "BgColour": "#151515", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#485058", - "BgColour": "#485058", + "Colour": "#2C2C2C", + "BgColour": "#2C2C2C", "Size": -1 }, { "Id": -2, @@ -9258,45 +8070,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "YELLOW", + "BgColour": "#151515", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#485058", - "BgColour": "#343d46", + "Colour": "#2C2C2C", + "BgColour": "#151515", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#605958", + "BgColour": "#151515", "Size": -1 }] }, { - "Name": "json", - "Theme": "Atom One-Dark", + "Name": "terminal", + "Theme": "One Dark Pro", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -9316,407 +8128,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#23ACDD", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#56AFD7", + "Colour": "#E9BF57", "BgColour": "#282C34", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#73CA50", "BgColour": "#282C34", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#23ACDD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#282C34", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#3D4148", + "Colour": "#E25D56", + "BgColour": "#282C34", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#282C34", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", + "Colour": "#23ACDD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 22, + "Name": "GCC 'included from'", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", "BgColour": "#282C34", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#81969A", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", "BgColour": "#282C34", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Atom One Light", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#282C34", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 26, + "Name": "Bash diagnostic line", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", + "Colour": "#0E1415", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#986801", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 42, + "Name": "ANSI escape green", + "Flags": 0, + "FontDesc": "", + "Colour": "#73CA50", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", + "Colour": "#4A88E4", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", + "Colour": "#915CAF", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", - "BgColour": "#FFFFFF", + "Colour": "#E46D66", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#4078F2", - "BgColour": "#FFFFFF", + "Colour": "#81CF61", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", - "BgColour": "#FFFFFF", + "Colour": "#5C93E6", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", - "BgColour": "#FFFFFF", + "Colour": "#9C6CB7", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", + "Colour": "#39B4E0", + "BgColour": "#282C34", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#282c34", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#282c34", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#FFFFFF", + "Colour": "#282c34", + "BgColour": "#282c34", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#3D4148", + "BgColour": "#3D4148", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#FFFFFF", + "Colour": "#528bff", + "BgColour": "#ffffffc9", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#FFFFFF", + "Colour": "#3D4148", + "BgColour": "#282c34", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#999999", - "BgColour": "#FFFFFF", + "Colour": "#495162", + "BgColour": "#282c34", "Size": -1 }] }, { - "Name": "json", - "Theme": "Xcode inspired", + "Name": "terminal", + "Theme": "Darkside-contrast", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -9736,407 +8578,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", - "BgColour": "#FFFFFF", + "Colour": "#73CA50", + "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#999999", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Classic Eclipse", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#000000", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", + "Colour": "#0E1415", + "BgColour": "#000000", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#000000", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", - "BgColour": "#FFFFFF", + "Colour": "#73CA50", + "BgColour": "#000000", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#000000", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", + "Colour": "#4A88E4", + "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", + "Colour": "#915CAF", + "BgColour": "#000000", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#000000", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#000099", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#000000", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", - "BgColour": "#FFFFFF", + "Colour": "#E46D66", + "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", + "Colour": "#81CF61", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#000000", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#000000", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#000000", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#FFFFFF", + "Colour": "#000000", + "BgColour": "#000000", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#191919", + "BgColour": "#191919", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#FFFFFF", + "Colour": "#f8f8f0", + "BgColour": "#000000", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#FFFFFF", + "Colour": "#191919", + "BgColour": "#000000", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#FFFFFF", + "Colour": "#333333", + "BgColour": "#000000", "Size": -1 }] }, { - "Name": "json", - "Theme": "Dark Flash Builder", + "Name": "terminal", + "Theme": "Darkside-light", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -10156,407 +9028,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#6D6D6D", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB9000", + "BgColour": "#E0E0E0", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", + "Colour": "#0083B2", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2DF", - "BgColour": "#3F3F3F", + "Colour": "#CB9000", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", - "BgColour": "#3F3F3F", + "Colour": "#448C27", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#0083B2", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3F3F3F", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#525252", - "BgColour": "#525252", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#3F3F3F", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#525252", - "BgColour": "#3F3F3F", + "Colour": "#0083B2", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#8A8A8A", - "BgColour": "#3F3F3F", + "Colour": "#808080", + "BgColour": "#E0E0E0", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Intellij Dracula", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#0083B2", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", - "BgColour": "#2B2B2B", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", + "Colour": "#000000", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", + "Colour": "#AA3731", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", + "Colour": "#448C27", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", + "Colour": "#CB9000", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#325CC0", + "BgColour": "#E0E0E0", + "Size": -1 + }, { + "Id": 45, + "Name": "ANSI escape magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#7A3E9D", + "BgColour": "#E0E0E0", + "Size": -1 + }, { + "Id": 46, + "Name": "ANSI escape cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#E0E0E0", + "Size": -1 + }, { + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", "Colour": "#808080", - "BgColour": "#2B2B2B", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", + "Colour": "#CB9000", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#808080", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", + "Colour": "#B24B45", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#FFC66D", - "BgColour": "#2B2B2B", + "Colour": "#56973C", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", - "BgColour": "#2B2B2B", + "Colour": "#466CC6", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", - "BgColour": "#2B2B2B", + "Colour": "#8751A6", + "BgColour": "#E0E0E0", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#198FB9", + "BgColour": "#E0E0E0", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#2B2B2B", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#2B2B2B", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#2B2B2B", - "BgColour": "#2B2B2B", + "Colour": "#e0e0e0", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#404040", + "Colour": "#D4D4D4", + "BgColour": "#D4D4D4", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#2B2B2B", + "Colour": "#222222", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#2B2B2B", + "Colour": "#D4D4D4", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#2B2B2B", + "Colour": "#adadad", + "BgColour": "#e0e0e0", "Size": -1 }] }, { - "Name": "json", - "Theme": "Emacsen", + "Name": "terminal", + "Theme": "Darkside", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -10576,322 +9478,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 10, + "Name": "Diff line changed", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 11, + "Name": "Diff line added", + "Flags": 0, + "FontDesc": "", + "Colour": "#73CA50", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 12, + "Name": "Diff line deleted", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 13, + "Name": "Diff line message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 19, + "Name": "HTML tidy style", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 20, + "Name": "Java stack", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#234059", + "Colour": "#23ACDD", + "BgColour": "#222324", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#234059", - "BgColour": "#234059", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#395369", - "BgColour": "#395369", + "Colour": "#C0C0C0", + "BgColour": "#222324", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#395369", - "BgColour": "#234059", + "Colour": "#23ACDD", + "BgColour": "#222324", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#758B8B", - "BgColour": "#234059", + "Colour": "#0E1415", + "BgColour": "#222324", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Clasic Emacs", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#E25D56", + "BgColour": "#222324", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#2F4F4F", + "Colour": "#73CA50", + "BgColour": "#222324", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", + "Colour": "#E9BF57", + "BgColour": "#222324", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", + "Colour": "#4A88E4", + "BgColour": "#222324", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", + "Colour": "#915CAF", + "BgColour": "#222324", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", + "Colour": "#23ACDD", + "BgColour": "#222324", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", + "Colour": "#C0C0C0", + "BgColour": "#222324", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", + "Colour": "#E9BF57", + "BgColour": "#222324", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#C0C0C0", + "BgColour": "#222324", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", + "Colour": "#E46D66", + "BgColour": "#222324", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#2F4F4F", + "Colour": "#81CF61", + "BgColour": "#222324", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2F4F4F", + "Colour": "#5C93E6", + "BgColour": "#222324", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2F4F4F", + "Colour": "#9C6CB7", + "BgColour": "#222324", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#39B4E0", + "BgColour": "#222324", "Size": -1 }, { "Id": 34, @@ -10899,7 +9831,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#2F4F4F", + "BgColour": "#222324", "Size": -1 }, { "Id": 35, @@ -10907,23 +9839,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#2F4F4F", + "BgColour": "#222324", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#2F4F4F", - "BgColour": "#2F4F4F", + "Colour": "#222324", + "BgColour": "#222324", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#436060", - "BgColour": "#436060", + "Colour": "#383939", + "BgColour": "#383939", "Size": -1 }, { "Id": -2, @@ -10938,45 +9870,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#2F4F4F", + "Colour": "#f8f8f0", + "BgColour": "#222324", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#436060", - "BgColour": "#2F4F4F", + "Colour": "#383939", + "BgColour": "#222324", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#2F4F4F", + "Colour": "#545658", + "BgColour": "#222324", "Size": -1 }] }, { - "Name": "json", - "Theme": "Gedit Original Oblivion", + "Name": "terminal", + "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -10996,407 +9928,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#12100F", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#12100F", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", + "Colour": "#23ACDD", + "BgColour": "#12100F", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#2e3436", + "Colour": "#E9BF57", + "BgColour": "#12100F", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3436", + "Colour": "#73CA50", + "BgColour": "#12100F", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#23ACDD", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#2e3436", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#42484A", - "BgColour": "#42484A", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#2e3436", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#42484A", - "BgColour": "#2e3436", + "Colour": "#23ACDD", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#555753", - "BgColour": "#2e3436", + "Colour": "#C0C0C0", + "BgColour": "#12100F", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "BlueHippo", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#12100F", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#008080", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", + "Colour": "#0E1415", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", + "Colour": "#E25D56", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", + "Colour": "#73CA50", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", + "Colour": "#4A88E4", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", + "Colour": "#915CAF", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#23ACDD", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#20B2AA", - "BgColour": "#FFFFFF", + "Colour": "#E9BF57", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", - "BgColour": "#FFFFFF", + "Colour": "#C0C0C0", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", - "BgColour": "#FFFFFF", + "Colour": "#E46D66", + "BgColour": "#12100F", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#81CF61", + "BgColour": "#12100F", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#12100F", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#12100F", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#12100F", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#12100f", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#12100f", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#FFFFFF", + "Colour": "#12100f", + "BgColour": "#12100f", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#292727", + "BgColour": "#292727", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#FFFFFF", + "Colour": "#f8f8f0", + "BgColour": "#12100f", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#FFFFFF", + "Colour": "#292727", + "BgColour": "#12100f", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#708090", - "BgColour": "#FFFFFF", + "Colour": "#4a413d", + "BgColour": "#12100f", "Size": -1 }] }, { - "Name": "json", - "Theme": "My vim dark", + "Name": "terminal", + "Theme": "Earthsong-light", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -11416,407 +10378,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#6D6D6D", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#000000", + "Colour": "#448C27", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#191919", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#000000", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#000000", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Oblivion", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#1E1E1E", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", + "Colour": "#448C27", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", + "Colour": "#325CC0", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", + "Colour": "#7A3E9D", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#1E1E1E", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#1E1E1E", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#1E1E1E", + "Colour": "#B24B45", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#56973C", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#466CC6", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#8751A6", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#198FB9", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#1E1E1E", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#1E1E1E", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#1E1E1E", - "BgColour": "#1E1E1E", + "Colour": "#ffffff", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#343434", - "BgColour": "#343434", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#1E1E1E", + "Colour": "#111111", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#343434", - "BgColour": "#1E1E1E", + "Colour": "#F2F2F2", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#1E1E1E", + "Colour": "#cccccc", + "BgColour": "#ffffff", "Size": -1 }] }, { - "Name": "json", - "Theme": "RecognEyes", + "Name": "terminal", + "Theme": "Earthsong", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -11836,407 +10828,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#36312C", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#36312C", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", - "BgColour": "#101020", + "Colour": "#23ACDD", + "BgColour": "#36312C", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#101020", + "Colour": "#E9BF57", + "BgColour": "#36312C", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", - "BgColour": "#101020", + "Colour": "#73CA50", + "BgColour": "#36312C", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#23ACDD", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#101020", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#272736", - "BgColour": "#272736", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#101020", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#272736", - "BgColour": "#101020", + "Colour": "#23ACDD", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#2B91AF", - "BgColour": "#101020", + "Colour": "#C0C0C0", + "BgColour": "#36312C", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Roboticket", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#36312C", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#F5F5F5", + "Colour": "#23ACDD", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", - "BgColour": "#F5F5F5", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", + "Colour": "#0E1415", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", + "Colour": "#E25D56", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", + "Colour": "#73CA50", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", + "Colour": "#E9BF57", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", + "Colour": "#4A88E4", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", + "Colour": "#915CAF", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "#23ACDD", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", + "Colour": "#C0C0C0", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#B05A65", - "BgColour": "#F5F5F5", + "Colour": "#E9BF57", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", - "BgColour": "#F5F5F5", + "Colour": "#C0C0C0", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", - "BgColour": "#F5F5F5", + "Colour": "#E46D66", + "BgColour": "#36312C", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "#81CF61", + "BgColour": "#36312C", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#36312C", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#36312C", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#36312C", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#36312c", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#36312c", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#F5F5F5", - "BgColour": "#F5F5F5", + "Colour": "#36312c", + "BgColour": "#36312c", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", - "BgColour": "#E8E8E8", + "Colour": "#4A4541", + "BgColour": "#4A4541", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#F5F5F5", + "Colour": "#f8f8f0", + "BgColour": "#36312c", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", - "BgColour": "#F5F5F5", + "Colour": "#4A4541", + "BgColour": "#36312c", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#AFBFCF", - "BgColour": "#F5F5F5", + "Colour": "#6e645a", + "BgColour": "#36312c", "Size": -1 }] }, { - "Name": "json", - "Theme": "Sublime Text 2", + "Name": "terminal", + "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -12256,322 +11278,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#22272E", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#22272E", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", + "Colour": "#23ACDD", + "BgColour": "#22272E", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#A7EC21", - "BgColour": "#272822", + "Colour": "#E9BF57", + "BgColour": "#22272E", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", - "BgColour": "#272822", + "Colour": "#73CA50", + "BgColour": "#22272E", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#23ACDD", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#272822", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", - "BgColour": "#3C3D38", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#272822", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", - "BgColour": "#272822", + "Colour": "#23ACDD", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#999999", - "BgColour": "#272822", + "Colour": "#C0C0C0", + "BgColour": "#22272E", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Tomorrow Night", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#22272E", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#23ACDD", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", - "BgColour": "#1D1F21", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", + "Colour": "#0E1415", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", + "Colour": "#E25D56", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", + "Colour": "#73CA50", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", + "Colour": "#E9BF57", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", + "Colour": "#4A88E4", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", + "Colour": "#915CAF", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#23ACDD", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", + "Colour": "#C0C0C0", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#81A2BE", - "BgColour": "#1D1F21", + "Colour": "#E9BF57", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", - "BgColour": "#1D1F21", + "Colour": "#C0C0C0", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", - "BgColour": "#1D1F21", + "Colour": "#E46D66", + "BgColour": "#22272E", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#81CF61", + "BgColour": "#22272E", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#22272E", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#22272E", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#22272E", "Size": -1 }, { "Id": 34, @@ -12579,7 +11631,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#1D1F21", + "BgColour": "#22272e", "Size": -1 }, { "Id": 35, @@ -12587,23 +11639,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#1D1F21", + "BgColour": "#22272e", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#1D1F21", - "BgColour": "#1D1F21", + "Colour": "#22272e", + "BgColour": "#22272e", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#333537", - "BgColour": "#333537", + "Colour": "#383C42", + "BgColour": "#383C42", "Size": -1 }, { "Id": -2, @@ -12618,45 +11670,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#1D1F21", + "Colour": "#539bf5", + "BgColour": "#22272e", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#333537", - "BgColour": "#1D1F21", + "Colour": "#383C42", + "BgColour": "#22272e", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#768390", + "BgColour": "#22272e", "Size": -1 }] }, { - "Name": "json", - "Theme": "Vim Desert", + "Name": "terminal", + "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -12676,322 +11728,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", - "BgColour": "#262626", + "Colour": "#23ACDD", + "BgColour": "#292828", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#E9BF57", + "BgColour": "#292828", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", - "BgColour": "#262626", + "Colour": "#73CA50", + "BgColour": "#292828", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#23ACDD", + "BgColour": "#292828", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#262626", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", - "BgColour": "#3B3B3B", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#262626", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", - "BgColour": "#262626", + "Colour": "#23ACDD", + "BgColour": "#292828", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#FFFE00", - "BgColour": "#262626", + "Colour": "#C0C0C0", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#292828", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Vim Jellybeans Port", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 26, + "Name": "Bash diagnostic line", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#292828", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 40, + "Name": "ANSI escape black", + "Flags": 0, + "FontDesc": "", + "Colour": "#0E1415", + "BgColour": "#292828", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#E25D56", + "BgColour": "#292828", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", - "BgColour": "#151515", + "Colour": "#73CA50", + "BgColour": "#292828", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", + "Colour": "#E9BF57", + "BgColour": "#292828", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", + "Colour": "#4A88E4", + "BgColour": "#292828", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", + "Colour": "#915CAF", + "BgColour": "#292828", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", + "Colour": "#23ACDD", + "BgColour": "#292828", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#C0C0C0", + "BgColour": "#292828", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#E9BF57", + "BgColour": "#292828", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#C0C0C0", + "BgColour": "#292828", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", + "Colour": "#E46D66", + "BgColour": "#292828", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#151515", + "Colour": "#81CF61", + "BgColour": "#292828", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", - "BgColour": "#151515", + "Colour": "#5C93E6", + "BgColour": "#292828", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", - "BgColour": "#151515", + "Colour": "#9C6CB7", + "BgColour": "#292828", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#39B4E0", + "BgColour": "#292828", "Size": -1 }, { "Id": 34, @@ -12999,7 +12081,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#151515", + "BgColour": "#292828", "Size": -1 }, { "Id": 35, @@ -13007,23 +12089,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#151515", + "BgColour": "#292828", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#151515", - "BgColour": "#151515", + "Colour": "#292828", + "BgColour": "#292828", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", - "BgColour": "#2C2C2C", + "Colour": "#3E3D3D", + "BgColour": "#3E3D3D", "Size": -1 }, { "Id": -2, @@ -13038,45 +12120,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#151515", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", - "BgColour": "#151515", + "Colour": "#3E3D3D", + "BgColour": "#292828", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#605958", - "BgColour": "#151515", + "Colour": "#7c6f64", + "BgColour": "#292828", "Size": -1 }] }, { - "Name": "json", - "Theme": "One Dark Pro", + "Name": "terminal", + "Theme": "Gruvbox", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -13096,322 +12178,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", + "Colour": "#23ACDD", + "BgColour": "#383838", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#61afef", - "BgColour": "#282c34", + "Colour": "#E9BF57", + "BgColour": "#383838", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", + "Colour": "#73CA50", + "BgColour": "#383838", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#23ACDD", + "BgColour": "#383838", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#282c34", - "BgColour": "#282c34", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#3D4148", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#528bff", - "BgColour": "#ffffffc9", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#282c34", + "Colour": "#23ACDD", + "BgColour": "#383838", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#495162", - "BgColour": "#282c34", + "Colour": "#C0C0C0", + "BgColour": "#383838", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Darkside-contrast", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#383838", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#23ACDD", + "BgColour": "#383838", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", + "Colour": "#0E1415", + "BgColour": "#383838", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", + "Colour": "#E25D56", + "BgColour": "#383838", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#73CA50", + "BgColour": "#383838", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", + "Colour": "#E9BF57", + "BgColour": "#383838", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", + "Colour": "#4A88E4", + "BgColour": "#383838", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", + "Colour": "#915CAF", + "BgColour": "#383838", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#23ACDD", + "BgColour": "#383838", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", + "Colour": "#C0C0C0", + "BgColour": "#383838", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", - "BgColour": "#000000", + "Colour": "#E9BF57", + "BgColour": "#383838", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#000000", + "Colour": "#C0C0C0", + "BgColour": "#383838", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#000000", + "Colour": "#E46D66", + "BgColour": "#383838", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#81CF61", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#383838", "Size": -1 }, { "Id": 34, @@ -13419,7 +12531,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#000000", + "BgColour": "#383838", "Size": -1 }, { "Id": 35, @@ -13427,23 +12539,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#000000", + "BgColour": "#383838", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#000000", + "Colour": "#383838", + "BgColour": "#383838", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#191919", + "Colour": "#4B4B4B", + "BgColour": "#4B4B4B", "Size": -1 }, { "Id": -2, @@ -13458,45 +12570,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#000000", + "Colour": "#4B4B4B", + "BgColour": "#383838", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#333333", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }] }, { - "Name": "json", - "Theme": "Darkside-light", + "Name": "terminal", + "Theme": "Legacy-contrast", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -13516,322 +12628,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#e0e0e0", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#080A0C", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", + "Colour": "#23ACDD", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", + "Colour": "#E9BF57", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", - "BgColour": "#e0e0e0", + "Colour": "#73CA50", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#23ACDD", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#e0e0e0", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#D4D4D4", - "BgColour": "#D4D4D4", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#222222", - "BgColour": "#e0e0e0", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#D4D4D4", - "BgColour": "#e0e0e0", + "Colour": "#23ACDD", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#adadad", - "BgColour": "#e0e0e0", + "Colour": "#C0C0C0", + "BgColour": "#080A0C", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Darkside", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#080A0C", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#23ACDD", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#222324", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", + "Colour": "#0E1415", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", + "Colour": "#E25D56", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#73CA50", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", + "Colour": "#E9BF57", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", + "Colour": "#4A88E4", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", + "Colour": "#915CAF", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#23ACDD", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", + "Colour": "#C0C0C0", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", - "BgColour": "#222324", + "Colour": "#E9BF57", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#222324", + "Colour": "#C0C0C0", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#222324", + "Colour": "#E46D66", + "BgColour": "#080A0C", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#81CF61", + "BgColour": "#080A0C", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#080A0C", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#080A0C", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#080A0C", "Size": -1 }, { "Id": 34, @@ -13839,7 +12981,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#222324", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 35, @@ -13847,23 +12989,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#222324", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#222324", + "Colour": "#080a0c", + "BgColour": "#080a0c", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#383939", - "BgColour": "#383939", + "Colour": "#202224", + "BgColour": "#202224", "Size": -1 }, { "Id": -2, @@ -13879,44 +13021,44 @@ "Flags": 0, "FontDesc": "", "Colour": "#f8f8f0", - "BgColour": "#222324", + "BgColour": "#080a0c", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#383939", - "BgColour": "#222324", + "Colour": "#202224", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#545658", - "BgColour": "#222324", + "Colour": "#313d49", + "BgColour": "#080a0c", "Size": -1 }] }, { - "Name": "json", - "Theme": "Earthsong-contrast", + "Name": "terminal", + "Theme": "Legacy-light", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -13936,322 +13078,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#6D6D6D", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": ".NET error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "LUA error message", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "CTags line", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Diff line changed", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 11, + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", + "Colour": "#448C27", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 12, + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 13, + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 14, + "Name": "PHP error message", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 15, + "Name": "Essential Lahey Fortran error message", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 19, + "Name": "HTML tidy style", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 20, + "Name": "Java stack", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#12100f", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#12100f", - "BgColour": "#12100f", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#292727", - "BgColour": "#292727", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#292727", - "BgColour": "#12100f", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#4a413d", - "BgColour": "#12100f", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Earthsong-light", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#ffffff", + "Colour": "#AA3731", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", + "Colour": "#448C27", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", + "Colour": "#325CC0", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "#7A3E9D", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", + "Colour": "#0083B2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", + "Colour": "#CB9000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "#808080", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", + "Colour": "#B24B45", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#ffffff", + "Colour": "#56973C", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#ffffff", + "Colour": "#466CC6", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#ffffff", + "Colour": "#8751A6", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "#198FB9", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, @@ -14298,7 +13470,7 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#111111", + "Colour": "#222222", "BgColour": "#ffffff", "Size": -1 }, { @@ -14314,7 +13486,7 @@ "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { @@ -14327,16 +13499,16 @@ "Size": -1 }] }, { - "Name": "json", - "Theme": "Earthsong", + "Name": "terminal", + "Theme": "Legacy", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -14356,322 +13528,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", + "Colour": "#23ACDD", + "BgColour": "#212933", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#36312c", + "Colour": "#E9BF57", + "BgColour": "#212933", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#36312c", + "Colour": "#73CA50", + "BgColour": "#212933", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#23ACDD", + "BgColour": "#212933", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#36312c", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", - "BgColour": "#4A4541", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#36312c", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", - "BgColour": "#36312c", + "Colour": "#23ACDD", + "BgColour": "#212933", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#6e645a", - "BgColour": "#36312c", + "Colour": "#C0C0C0", + "BgColour": "#212933", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Github-Gruvbox-Theme", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#212933", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#23ACDD", + "BgColour": "#212933", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", - "BgColour": "#22272e", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", + "Colour": "#0E1415", + "BgColour": "#212933", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", + "Colour": "#E25D56", + "BgColour": "#212933", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", + "Colour": "#73CA50", + "BgColour": "#212933", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", + "Colour": "#E9BF57", + "BgColour": "#212933", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", + "Colour": "#4A88E4", + "BgColour": "#212933", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", + "Colour": "#915CAF", + "BgColour": "#212933", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", + "Colour": "#23ACDD", + "BgColour": "#212933", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", + "Colour": "#C0C0C0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#A9B665", - "BgColour": "#22272e", + "Colour": "#E9BF57", + "BgColour": "#212933", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", + "Colour": "#C0C0C0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", + "Colour": "#E46D66", + "BgColour": "#212933", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#81CF61", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#212933", "Size": -1 }, { "Id": 34, @@ -14679,7 +13881,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#22272e", + "BgColour": "#212933", "Size": -1 }, { "Id": 35, @@ -14687,23 +13889,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#22272e", + "BgColour": "#212933", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#22272e", - "BgColour": "#22272e", + "Colour": "#212933", + "BgColour": "#212933", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#383C42", - "BgColour": "#383C42", + "Colour": "#373E47", + "BgColour": "#373E47", "Size": -1 }, { "Id": -2, @@ -14718,45 +13920,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#539bf5", - "BgColour": "#22272e", + "Colour": "#f8f8f0", + "BgColour": "#212933", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#383C42", - "BgColour": "#22272e", + "Colour": "#373E47", + "BgColour": "#212933", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#768390", - "BgColour": "#22272e", + "Colour": "#495b71", + "BgColour": "#212933", "Size": -1 }] }, { - "Name": "json", - "Theme": "Gruvbox Material Dark", + "Name": "terminal", + "Theme": "Solarized+", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -14776,322 +13978,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", + "Colour": "#23ACDD", + "BgColour": "#002B36", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#a9b665", - "BgColour": "#292828", + "Colour": "#E9BF57", + "BgColour": "#002B36", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", - "BgColour": "#292828", + "Colour": "#73CA50", + "BgColour": "#002B36", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#23ACDD", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#292828", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", - "BgColour": "#3E3D3D", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", - "BgColour": "#292828", + "Colour": "#23ACDD", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#7c6f64", - "BgColour": "#292828", + "Colour": "#C0C0C0", + "BgColour": "#002B36", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Gruvbox", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#002B36", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#23ACDD", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", + "Colour": "#0E1415", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", + "Colour": "#E25D56", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", + "Colour": "#73CA50", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", + "Colour": "#E9BF57", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", + "Colour": "#4A88E4", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", + "Colour": "#915CAF", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#23ACDD", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", + "Colour": "#C0C0C0", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", + "Colour": "#E9BF57", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", - "BgColour": "#383838", + "Colour": "#C0C0C0", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", - "BgColour": "#383838", + "Colour": "#E46D66", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#81CF61", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#002B36", "Size": -1 }, { "Id": 34, @@ -15099,7 +14331,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#383838", + "BgColour": "#002B36", "Size": -1 }, { "Id": 35, @@ -15107,23 +14339,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#383838", + "BgColour": "#002B36", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#383838", - "BgColour": "#383838", + "Colour": "#002B36", + "BgColour": "#002B36", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", - "BgColour": "#4B4B4B", + "Colour": "#19404A", + "BgColour": "#19404A", "Size": -1 }, { "Id": -2, @@ -15138,45 +14370,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#85efff", + "BgColour": "#002B36", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", - "BgColour": "#383838", + "Colour": "#19404A", + "BgColour": "#002B36", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#4e6b6e", + "BgColour": "#002B36", "Size": -1 }] }, { - "Name": "json", - "Theme": "Legacy-contrast", + "Name": "terminal", + "Theme": "Tango Dark", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -15196,407 +14428,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#2E3434", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", + "Colour": "#23ACDD", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#080a0c", + "Colour": "#E9BF57", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#080a0c", + "Colour": "#73CA50", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#23ACDD", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#080a0c", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#202224", - "BgColour": "#202224", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#080a0c", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#202224", - "BgColour": "#080a0c", + "Colour": "#23ACDD", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#313d49", - "BgColour": "#080a0c", + "Colour": "#C0C0C0", + "BgColour": "#2E3434", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Legacy-light", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#2E3434", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#ffffff", + "Colour": "#23ACDD", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#ffffff", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", + "Colour": "#0E1415", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", + "Colour": "#E25D56", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#73CA50", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", + "Colour": "#E9BF57", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", + "Colour": "#4A88E4", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", + "Colour": "#915CAF", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#23ACDD", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", + "Colour": "#C0C0C0", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#ffffff", + "Colour": "#E9BF57", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#ffffff", + "Colour": "#C0C0C0", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#ffffff", + "Colour": "#E46D66", + "BgColour": "#2E3434", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#81CF61", + "BgColour": "#2E3434", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#2E3434", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#2E3434", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#2E3434", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", - "BgColour": "#ffffff", + "Colour": "#2e3434", + "BgColour": "#2e3434", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#424848", + "BgColour": "#424848", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#222222", - "BgColour": "#ffffff", + "Colour": "#ffffff", + "BgColour": "#2e3434", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#ffffff", + "Colour": "#424848", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#cccccc", - "BgColour": "#ffffff", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }] }, { - "Name": "json", - "Theme": "Legacy", + "Name": "terminal", + "Theme": "Tokyo Light", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -15616,407 +14878,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#6D6D6D", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB9000", + "BgColour": "#FAF1DC", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#0083B2", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", + "Colour": "#0083B2", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#212933", + "Colour": "#CB9000", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#212933", + "Colour": "#448C27", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#0083B2", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#212933", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#373E47", - "BgColour": "#373E47", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#212933", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#373E47", - "BgColour": "#212933", + "Colour": "#0083B2", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#495b71", - "BgColour": "#212933", + "Colour": "#808080", + "BgColour": "#FAF1DC", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Solarized+", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#0083B2", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", - "BgColour": "#002B36", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", + "Colour": "#000000", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", + "Colour": "#AA3731", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#448C27", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", + "Colour": "#CB9000", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", + "Colour": "#325CC0", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", + "Colour": "#7A3E9D", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#0083B2", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", + "Colour": "#808080", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", - "BgColour": "#002B36", + "Colour": "#CB9000", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", + "Colour": "#808080", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", + "Colour": "#B24B45", + "BgColour": "#FAF1DC", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#56973C", + "BgColour": "#FAF1DC", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#466CC6", + "BgColour": "#FAF1DC", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#8751A6", + "BgColour": "#FAF1DC", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#198FB9", + "BgColour": "#FAF1DC", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#002B36", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#002B36", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#002B36", - "BgColour": "#002B36", + "Colour": "#faf1dc", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#19404A", - "BgColour": "#19404A", + "Colour": "#EDE4D1", + "BgColour": "#EDE4D1", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#85efff", - "BgColour": "#002B36", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#19404A", - "BgColour": "#002B36", + "Colour": "#EDE4D1", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#4e6b6e", - "BgColour": "#002B36", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }] }, { - "Name": "json", - "Theme": "Tango Dark", + "Name": "terminal", + "Theme": "Tokyo Night", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -16036,407 +15328,437 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#24283B", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#24283B", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#23ACDD", + "BgColour": "#24283B", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#EED247", - "BgColour": "#2e3434", + "Colour": "#E9BF57", + "BgColour": "#24283B", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#73CA50", + "BgColour": "#24283B", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#23ACDD", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#2e3434", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#424848", - "BgColour": "#424848", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", - "BgColour": "#2e3434", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#424848", - "BgColour": "#2e3434", + "Colour": "#23ACDD", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#C0C0C0", + "BgColour": "#24283B", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Tokyo Light", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 23, + "Name": "ANSI escape sequence", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 24, + "Name": "ANSI escape sequence unknown", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#24283B", + "Size": -1 + }, { + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#24283B", + "Size": -1 + }, { + "Id": 26, + "Name": "Bash diagnostic line", + "Flags": 0, + "FontDesc": "", + "Colour": "#E25D56", + "BgColour": "#24283B", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 40, + "Name": "ANSI escape black", + "Flags": 0, + "FontDesc": "", + "Colour": "#0E1415", + "BgColour": "#24283B", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#faf1dc", + "Colour": "#E25D56", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", - "BgColour": "#faf1dc", + "Colour": "#73CA50", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", + "Colour": "#E9BF57", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", + "Colour": "#4A88E4", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", + "Colour": "#915CAF", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", + "Colour": "#23ACDD", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", - "BgColour": "#faf1dc", + "Colour": "#C0C0C0", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", + "Colour": "#E9BF57", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#C0C0C0", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 49, + "Name": "ANSI escape bright red", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", + "Colour": "#E46D66", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 50, + "Name": "ANSI escape bright green", "Flags": 0, "FontDesc": "", - "Colour": "#e64100", - "BgColour": "#faf1dc", + "Colour": "#81CF61", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 52, + "Name": "ANSI escape bright blue", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", - "BgColour": "#faf1dc", + "Colour": "#5C93E6", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 53, + "Name": "ANSI escape bright magenta", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", - "BgColour": "#faf1dc", + "Colour": "#9C6CB7", + "BgColour": "#24283B", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 54, + "Name": "ANSI escape bright cyan", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#39B4E0", + "BgColour": "#24283B", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#24283b", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#24283b", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#faf1dc", - "BgColour": "#faf1dc", + "Colour": "#24283b", + "BgColour": "#24283b", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", - "BgColour": "#EDE4D1", + "Colour": "#393D4E", + "BgColour": "#393D4E", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", - "BgColour": "#faf1dc", + "Colour": "#393D4E", + "BgColour": "#24283b", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }] }, { - "Name": "json", - "Theme": "Tokyo Night", + "Name": "terminal", + "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", + "Id": 200, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", + "Extensions": "*.log", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -16456,322 +15778,352 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { "Id": 1, - "Name": "Number", + "Name": "Python error message", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { "Id": 2, - "Name": "String", + "Name": "GCC like error message", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", + "Size": -1 + }, { + "Id": 56, + "Name": "GCC like warning message", + "Flags": 0, + "FontDesc": "", + "Colour": "#E9BF57", + "BgColour": "#343D46", + "Size": -1 + }, { + "Id": 57, + "Name": "GCC like note message", + "Flags": 0, + "FontDesc": "", + "Colour": "#23ACDD", + "BgColour": "#343D46", "Size": -1 }, { "Id": 3, - "Name": "String EOL", + "Name": "MSVC error message", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { "Id": 4, - "Name": "Property Name", + "Name": "CMD error message", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { "Id": 5, - "Name": "Escape Sequence", + "Name": "Borland error message", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { "Id": 6, - "Name": "Line Comment", + "Name": "Perl error message", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { "Id": 7, - "Name": "Block Comment", + "Name": ".NET error message", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { "Id": 8, - "Name": "Operator", + "Name": "LUA error message", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { "Id": 9, - "Name": "URI", + "Name": "CTags line", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", + "Colour": "#23ACDD", + "BgColour": "#343D46", "Size": -1 }, { "Id": 10, - "Name": "URI", + "Name": "Diff line changed", "Flags": 0, "FontDesc": "", - "Colour": "#7aa2f7", - "BgColour": "#24283b", + "Colour": "#E9BF57", + "BgColour": "#343D46", "Size": -1 }, { "Id": 11, - "Name": "Keyword", + "Name": "Diff line added", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", - "BgColour": "#24283b", + "Colour": "#73CA50", + "BgColour": "#343D46", "Size": -1 }, { "Id": 12, - "Name": "LD Keyword", + "Name": "Diff line deleted", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { "Id": 13, - "Name": "Error", + "Name": "Diff line message", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#23ACDD", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 14, + "Name": "PHP error message", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 15, + "Name": "Essential Lahey Fortran error message", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 16, + "Name": "Intel Fortran Compiler error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#24283b", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 17, + "Name": "Intel Fortran Compiler v8.0 error/warning message", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", - "BgColour": "#393D4E", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 18, + "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 19, + "Name": "HTML tidy style", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 20, + "Name": "Java stack", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", - "BgColour": "#24283b", + "Colour": "#23ACDD", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 21, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 22, + "Name": "GCC 'included from'", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#C0C0C0", + "BgColour": "#343D46", "Size": -1 - }] - }, { - "Name": "json", - "Theme": "Alacritty: Mariana", - "Flags": 5, - "Id": 120, - "KeyWords0": "false null true", - "KeyWords1": "context id name type", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.conf;*.json;*.wxcp", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 23, + "Name": "ANSI escape sequence", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 1, - "Name": "Number", + "Id": 24, + "Name": "ANSI escape sequence unknown", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", - "BgColour": "#343d46", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 2, - "Name": "String", + "Id": 25, + "Name": "GCC code excerpt and pointer to issue", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", + "Colour": "#23ACDD", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 3, - "Name": "String EOL", + "Id": 26, + "Name": "Bash diagnostic line", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 4, - "Name": "Property Name", + "Id": 40, + "Name": "ANSI escape black", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", + "Colour": "#0E1415", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 5, - "Name": "Escape Sequence", + "Id": 41, + "Name": "ANSI escape red", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", + "Colour": "#E25D56", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 6, - "Name": "Line Comment", + "Id": 42, + "Name": "ANSI escape green", "Flags": 0, "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", + "Colour": "#73CA50", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 7, - "Name": "Block Comment", + "Id": 43, + "Name": "ANSI escape brown", "Flags": 0, "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", + "Colour": "#E9BF57", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 8, - "Name": "Operator", + "Id": 44, + "Name": "ANSI escape blue", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#4A88E4", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 9, - "Name": "URI", + "Id": 45, + "Name": "ANSI escape magenta", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", + "Colour": "#915CAF", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 10, - "Name": "URI", + "Id": 46, + "Name": "ANSI escape cyan", "Flags": 0, "FontDesc": "", - "Colour": "#85add6", - "BgColour": "#343d46", + "Colour": "#23ACDD", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 11, - "Name": "Keyword", + "Id": 47, + "Name": "ANSI escape grey", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", - "BgColour": "#343d46", + "Colour": "#C0C0C0", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 12, - "Name": "LD Keyword", + "Id": 51, + "Name": "ANSI escape yellow", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", - "BgColour": "#343d46", + "Colour": "#E9BF57", + "BgColour": "#343D46", "Size": -1 }, { - "Id": 13, - "Name": "Error", + "Id": 48, + "Name": "ANSI escape dark grey", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#C0C0C0", + "BgColour": "#343D46", + "Size": -1 + }, { + "Id": 49, + "Name": "ANSI escape bright red", + "Flags": 0, + "FontDesc": "", + "Colour": "#E46D66", + "BgColour": "#343D46", + "Size": -1 + }, { + "Id": 50, + "Name": "ANSI escape bright green", + "Flags": 0, + "FontDesc": "", + "Colour": "#81CF61", + "BgColour": "#343D46", + "Size": -1 + }, { + "Id": 52, + "Name": "ANSI escape bright blue", + "Flags": 0, + "FontDesc": "", + "Colour": "#5C93E6", + "BgColour": "#343D46", + "Size": -1 + }, { + "Id": 53, + "Name": "ANSI escape bright magenta", + "Flags": 0, + "FontDesc": "", + "Colour": "#9C6CB7", + "BgColour": "#343D46", + "Size": -1 + }, { + "Id": 54, + "Name": "ANSI escape bright cyan", + "Flags": 0, + "FontDesc": "", + "Colour": "#39B4E0", + "BgColour": "#343D46", "Size": -1 }, { "Id": 34, @@ -16847,28 +16199,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -16879,17 +16231,9 @@ "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#282C34", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -16897,7 +16241,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -16905,7 +16249,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -16913,79 +16257,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#56AFD7", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#EC7600", @@ -16993,23 +16337,15 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", @@ -17017,42 +16353,34 @@ "Size": -1 }, { "Id": 18, - "Name": "Lifetime", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 19, - "Name": "Macro", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC235", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#56AFD7", "BgColour": "#282C34", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { @@ -17129,28 +16457,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Atom One Light", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -17161,17 +16489,9 @@ "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#FFFFFF", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -17179,7 +16499,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -17187,7 +16507,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -17195,79 +16515,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#4078F2", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#50A14F", @@ -17275,66 +16595,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#4078F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -17411,28 +16715,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Xcode inspired", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -17443,17 +16747,9 @@ "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#FFFFFF", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -17461,7 +16757,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -17469,7 +16765,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -17477,79 +16773,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#C81B28", @@ -17557,31 +16853,31 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Operator", + "Id": 17, + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#05314D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Identifier", + "Id": 18, + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#05314D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Lifetime", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -17589,34 +16885,18 @@ "Size": -1 }, { "Id": 19, - "Name": "Macro", + "Name": "Class", "Flags": 0, "FontDesc": "", "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 22, - "Name": "Byte string raw", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -17693,28 +16973,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -17725,17 +17005,9 @@ "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#FFFFFF", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -17743,7 +17015,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -17751,7 +17023,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -17759,79 +17031,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#000099", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#0000C0", @@ -17839,66 +17111,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "Lifetime", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#7F9FBF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Macro", + "Id": 18, + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#7F9FBF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#000099", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -17975,28 +17231,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -18007,17 +17263,9 @@ "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#3F3F3F", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -18025,7 +17273,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -18033,7 +17281,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -18041,79 +17289,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2DF", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#CC9393", @@ -18121,66 +17369,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#A893CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#A893CC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#F2F2DF", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -18257,28 +17489,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -18289,17 +17521,9 @@ "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#2B2B2B", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#629755", @@ -18307,7 +17531,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#808080", @@ -18315,7 +17539,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#629755", @@ -18323,79 +17547,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#FFC66D", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#A5C25C", @@ -18403,66 +17627,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#84B977", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#84B977", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#FFC66D", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -18539,28 +17747,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Emacsen", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -18571,17 +17779,9 @@ "Colour": "#839496", "BgColour": "#234059", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#234059", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -18589,7 +17789,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -18597,7 +17797,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -18605,79 +17805,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#B58900", @@ -18685,66 +17885,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#DC322F", "BgColour": "#234059", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#DC322F", "BgColour": "#234059", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#2AA198", "BgColour": "#234059", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { @@ -18821,28 +18005,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -18853,17 +18037,9 @@ "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#2F4F4F", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -18871,7 +18047,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -18879,7 +18055,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -18887,79 +18063,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", @@ -18967,66 +18143,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#D9E577", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#D9E577", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#BED6FF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -19103,28 +18263,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -19135,17 +18295,9 @@ "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#2e3436", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -19153,7 +18305,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -19161,7 +18313,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -19169,79 +18321,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#edd400", @@ -19249,66 +18401,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#BED6FF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { @@ -19385,28 +18521,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "BlueHippo", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -19417,17 +18553,9 @@ "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#FFFFFF", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", @@ -19435,7 +18563,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", @@ -19443,7 +18571,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", @@ -19451,79 +18579,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#20B2AA", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#C71585", @@ -19531,66 +18659,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#FF7F50", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#FF7F50", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#20B2AA", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -19667,28 +18779,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "My vim dark", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -19699,17 +18811,9 @@ "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#000000", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -19717,7 +18821,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -19725,7 +18829,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -19733,79 +18837,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", @@ -19813,31 +18917,31 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Operator", + "Id": 17, + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Identifier", + "Id": 18, + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Lifetime", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", @@ -19845,34 +18949,18 @@ "Size": -1 }, { "Id": 19, - "Name": "Macro", + "Name": "Class", "Flags": 0, "FontDesc": "", "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 22, - "Name": "Byte string raw", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { @@ -19949,28 +19037,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Oblivion", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -19981,17 +19069,9 @@ "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#1E1E1E", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -19999,110 +19079,78 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment block doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 4, - "Name": "Comment line doc", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 7, - "Name": "Built in types", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 8, - "Name": "Other keywords", + "Id": 3, + "Name": "Doc comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 4, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Character", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 16, + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -20110,7 +19158,7 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 17, + "Id": 11, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -20118,43 +19166,59 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 18, - "Name": "Lifetime", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 19, - "Name": "Macro", + "Id": 15, + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 17, + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D9E577", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 18, + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D9E577", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#BED6FF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 19, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -20231,28 +19295,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "RecognEyes", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -20263,17 +19327,9 @@ "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#101020", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -20281,7 +19337,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -20289,7 +19345,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -20297,79 +19353,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#DC78DC", @@ -20377,66 +19433,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#D9E577", "BgColour": "#101020", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#D9E577", "BgColour": "#101020", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#BED6FF", "BgColour": "#101020", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { @@ -20513,28 +19553,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Roboticket", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -20545,17 +19585,9 @@ "Colour": "#6D6D6D", "BgColour": "#F5F5F5", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#F5F5F5", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -20563,7 +19595,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -20571,7 +19603,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -20579,79 +19611,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#B05A65", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#317ECC", @@ -20659,66 +19691,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#566874", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#566874", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#B05A65", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -20795,28 +19811,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -20827,17 +19843,9 @@ "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#272822", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -20845,7 +19853,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -20853,7 +19861,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -20861,79 +19869,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#A7EC21", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#ECE47E", @@ -20941,23 +19949,15 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -20965,42 +19965,34 @@ "Size": -1 }, { "Id": 18, - "Name": "Lifetime", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 19, - "Name": "Macro", - "Flags": 0, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#A7EC21", "BgColour": "#272822", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { @@ -21077,28 +20069,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -21109,17 +20101,9 @@ "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#1D1F21", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -21127,7 +20111,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -21135,7 +20119,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -21143,79 +20127,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#81A2BE", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#B5BD68", @@ -21223,66 +20207,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#CED1CF", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#CED1CF", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#81A2BE", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 }, { @@ -21359,28 +20327,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Vim Desert", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -21391,17 +20359,9 @@ "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#262626", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -21409,7 +20369,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -21417,7 +20377,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -21425,79 +20385,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#FF8E8D", @@ -21505,31 +20465,31 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { - "Id": 16, - "Name": "Operator", + "Id": 17, + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#997DC4", "BgColour": "#262626", "Size": -1 }, { - "Id": 17, - "Name": "Identifier", + "Id": 18, + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#997DC4", "BgColour": "#262626", "Size": -1 }, { - "Id": 18, - "Name": "Lifetime", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -21537,34 +20497,18 @@ "Size": -1 }, { "Id": 19, - "Name": "Macro", + "Name": "Class", "Flags": 0, "FontDesc": "", "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 22, - "Name": "Byte string raw", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { @@ -21641,28 +20585,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -21673,17 +20617,9 @@ "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#151515", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -21691,7 +20627,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -21699,7 +20635,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -21707,79 +20643,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#99AD6A", @@ -21787,66 +20723,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#BED6FF", "BgColour": "#151515", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { @@ -21923,28 +20843,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "One Dark Pro", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -21955,17 +20875,9 @@ "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#282c34", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -21973,7 +20885,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -21981,7 +20893,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -21989,146 +20901,130 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 6, - "Name": "Keywords", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#61afef", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { - "Id": 15, - "Name": "Character", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 16, - "Name": "Operator", + "Id": 15, + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#61afef", "BgColour": "#282c34", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { @@ -22205,28 +21101,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -22237,17 +21133,9 @@ "Colour": "#bababa", "BgColour": "#000000", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#000000", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22255,7 +21143,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22263,7 +21151,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22271,79 +21159,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", @@ -22351,66 +21239,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#68c244", "BgColour": "#000000", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { @@ -22487,28 +21359,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Darkside-light", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -22519,17 +21391,9 @@ "Colour": "#6D6D6D", "BgColour": "#e0e0e0", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#e0e0e0", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22537,7 +21401,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22545,7 +21409,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22553,79 +21417,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", @@ -22633,66 +21497,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -22769,28 +21617,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Darkside", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -22801,17 +21649,9 @@ "Colour": "#bababa", "BgColour": "#222324", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#222324", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22819,7 +21659,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22827,7 +21667,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -22835,79 +21675,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", @@ -22915,66 +21755,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#68c244", "BgColour": "#222324", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { @@ -23051,28 +21875,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -23083,17 +21907,9 @@ "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#12100f", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -23101,7 +21917,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -23109,7 +21925,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -23117,79 +21933,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -23197,66 +22013,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#60a365", "BgColour": "#12100f", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { @@ -23333,28 +22133,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Earthsong-light", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -23365,17 +22165,9 @@ "Colour": "#6D6D6D", "BgColour": "#ffffff", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#ffffff", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -23383,7 +22175,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -23391,7 +22183,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -23399,79 +22191,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -23479,66 +22271,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#60a365", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { @@ -23615,28 +22391,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Earthsong", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -23647,17 +22423,9 @@ "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#36312c", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -23665,7 +22433,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -23673,7 +22441,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -23681,79 +22449,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -23761,66 +22529,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#60a365", "BgColour": "#36312c", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { @@ -23897,28 +22649,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -23929,17 +22681,9 @@ "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#22272e", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -23947,7 +22691,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -23955,7 +22699,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -23963,146 +22707,130 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 8, - "Name": "Other keywords", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#A9B665", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { - "Id": 15, - "Name": "Character", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 16, - "Name": "Operator", + "Id": 15, + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#A9B665", "BgColour": "#22272e", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { @@ -24179,28 +22907,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -24211,17 +22939,9 @@ "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#292828", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -24229,7 +22949,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -24237,7 +22957,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -24245,79 +22965,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#a9b665", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#d8a657", @@ -24325,66 +23045,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#a9b665", "BgColour": "#292828", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { @@ -24461,28 +23165,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Gruvbox", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -24493,17 +23197,9 @@ "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#383838", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -24511,7 +23207,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -24519,7 +23215,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -24527,79 +23223,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#b8bb26", @@ -24607,66 +23303,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { @@ -24743,28 +23423,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -24775,17 +23455,9 @@ "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#080a0c", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -24793,7 +23465,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -24801,7 +23473,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -24809,79 +23481,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -24889,66 +23561,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#ffb20d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { @@ -25025,28 +23681,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Legacy-light", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -25057,17 +23713,9 @@ "Colour": "#6D6D6D", "BgColour": "#ffffff", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#ffffff", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -25075,7 +23723,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -25083,7 +23731,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -25091,79 +23739,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -25171,66 +23819,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#ffb20d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { @@ -25307,28 +23939,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Legacy", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -25339,17 +23971,9 @@ "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#212933", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -25357,7 +23981,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -25365,7 +23989,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -25373,79 +23997,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -25453,66 +24077,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#ffb20d", "BgColour": "#212933", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { @@ -25589,28 +24197,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Solarized+", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -25621,17 +24229,9 @@ "Colour": "#839496", "BgColour": "#002B36", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#002B36", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -25639,7 +24239,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -25647,7 +24247,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -25655,79 +24255,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#CB4B16", @@ -25735,66 +24335,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#2AA198", "BgColour": "#002B36", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { @@ -25871,28 +24455,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Tango Dark", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -25903,17 +24487,9 @@ "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#2e3434", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -25921,7 +24497,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -25929,7 +24505,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -25937,79 +24513,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#EED247", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#AD7FA8", @@ -26017,66 +24593,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#EED247", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { @@ -26153,28 +24713,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Tokyo Light", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -26185,17 +24745,9 @@ "Colour": "#6D6D6D", "BgColour": "#faf1dc", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "RED", - "BgColour": "#faf1dc", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#9995b7", @@ -26203,7 +24755,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#8ca6a6", @@ -26211,7 +24763,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#9995b7", @@ -26219,79 +24771,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#e64100", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#00b368", @@ -26299,66 +24851,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#e64100", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 }, { @@ -26435,28 +24971,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Tokyo Night", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -26467,17 +25003,9 @@ "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#24283b", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -26485,7 +25013,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -26493,7 +25021,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -26501,79 +25029,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#7aa2f7", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#9ece6a", @@ -26581,66 +25109,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#7aa2f7", "BgColour": "#24283b", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 }, { @@ -26717,28 +25229,28 @@ "Size": -1 }] }, { - "Name": "rust", + "Name": "go", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 111, - "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", - "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", + "Id": 3, + "KeyWords0": "bool break byte case chan complex128 complex64 const continue default defer else fallthrough false float32 float64 for func go goto if import int int16 int32 int64 int8 interface len map nil package range return select string struct switch true type uint uint16 uint32 uint64 uint8 uintptr var", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.rs", - "SubstyleBase": -1, + "Extensions": "*.go", + "SubstyleBase": 11, "WordSet": [{ "index": 3, "is_substyle": false }, { - "index": 5, + "index": 1, "is_substyle": false }, { - "index": 4, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -26749,17 +25261,9 @@ "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 - }, { - "Id": 20, - "Name": "Lex error", - "Flags": 0, - "FontDesc": "", - "Colour": "PINK", - "BgColour": "#343d46", - "Size": -1 }, { "Id": 1, - "Name": "Comment block", + "Name": "Multi line comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -26767,7 +25271,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -26775,7 +25279,7 @@ "Size": -1 }, { "Id": 3, - "Name": "Comment block doc", + "Name": "Doc comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -26783,79 +25287,79 @@ "Size": -1 }, { "Id": 4, - "Name": "Comment line doc", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { - "Id": 6, - "Name": "Keywords", + "Id": 5, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 7, - "Name": "Built in types", + "Id": 6, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 8, - "Name": "Other keywords", + "Id": 20, + "Name": "String Raw", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 9, - "Name": "Struct", + "Id": 7, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 10, - "Name": "Variables", + "Id": 8, + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { - "Id": 11, - "Name": "Functions", + "Id": 9, + "Name": "Preprocessor", "Flags": 0, "FontDesc": "", - "Colour": "#85add6", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 12, - "Name": "Word List 7", + "Id": 10, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 11, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 14, - "Name": "String raw", + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#acd1a8", @@ -26863,66 +25367,50 @@ "Size": -1 }, { "Id": 15, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 16, - "Name": "Operator", + "Name": "Doc snigle line comment", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 17, - "Name": "Identifier", + "Name": "Doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 18, - "Name": "Lifetime", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 19, - "Name": "Macro", + "Name": "Doc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 21, - "Name": "Byte string", + "Id": 16, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#85add6", "BgColour": "#343d46", "Size": -1 }, { - "Id": 22, - "Name": "Byte string raw", + "Id": 19, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 23, - "Name": "Byte character", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 }, { @@ -26999,16 +25487,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -27033,171 +25521,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#FFC235", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#FFC235", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#FFC235", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#FFC235", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#56AFD7", "BgColour": "#282C34", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#F35151", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#56AFD7", - "BgColour": "#3D4148", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#3D4148", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#E0E2E4", - "BgColour": "#3D4148", + "BgColour": "#282C34", "Size": -1 }, { "Id": 34, @@ -27273,16 +25697,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Atom One Light", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -27307,172 +25731,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#C18401", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#C18401", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#C18401", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#C18401", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#4078F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#986801", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#4078F2", - "BgColour": "#E5E5E5", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#E5E5E5", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#E5E5E5", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -27547,16 +25907,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Xcode inspired", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -27581,171 +25941,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Strong 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "Header 1", - "Flags": 10, - "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": "Header 2", - "Flags": 10, - "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, + "Id": 3, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Prechar", + "Id": 4, + "Name": "Property Name", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 5, + "Name": "Escape Sequence", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 6, + "Name": "Line Comment", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 7, + "Name": "Block Comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 8, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Link", - "Flags": 5, + "Id": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Code", - "Flags": 8, + "Id": 11, + "Name": "Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#E5E5E5", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, + "Id": 12, + "Name": "LD Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#E5E5E5", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, + "Id": 13, + "Name": "Error", + "Flags": 0, "FontDesc": "", "Colour": "#000000", - "BgColour": "#E5E5E5", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, @@ -27821,16 +26117,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -27855,171 +26151,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#000099", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#FF5809", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#000099", - "BgColour": "#E5E5E5", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#E5E5E5", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#333333", - "BgColour": "#E5E5E5", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, @@ -28095,16 +26327,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -28129,171 +26361,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#F2F2DF", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#F2F2DF", - "BgColour": "#525252", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#525252", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#DDDDCC", - "BgColour": "#525252", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 34, @@ -28369,16 +26537,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -28403,171 +26571,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#FFC66D", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#FFC66D", - "BgColour": "#404040", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#404040", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#D8D8D8", - "BgColour": "#404040", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 34, @@ -28643,16 +26747,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Emacsen", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -28677,171 +26781,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#2AA198", "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#2AA198", - "BgColour": "#395369", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#395369", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#839496", - "BgColour": "#395369", + "BgColour": "#234059", "Size": -1 }, { "Id": 34, @@ -28917,16 +26957,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -28951,171 +26991,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#BED6FF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#436060", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#436060", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#F5DEB3", - "BgColour": "#436060", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 34, @@ -29191,16 +27167,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -29225,171 +27201,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#BED6FF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#42484A", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#42484A", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#d3d7cf", - "BgColour": "#42484A", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 34, @@ -29465,16 +27377,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "BlueHippo", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -29499,171 +27411,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Strong 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Strong 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "Header 1", - "Flags": 10, - "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": "Header 2", - "Flags": 10, - "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, + "Id": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Prechar", + "Id": 3, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 4, + "Name": "Property Name", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 5, + "Name": "Escape Sequence", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 6, + "Name": "Line Comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 7, + "Name": "Block Comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 8, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Link", - "Flags": 5, + "Id": 9, + "Name": "URI", + "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Code", - "Flags": 8, + "Id": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", "Colour": "#20B2AA", - "BgColour": "#E5E5E5", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, + "Id": 11, + "Name": "Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#E5E5E5", + "Colour": "#1E90FF", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, + "Id": 12, + "Name": "LD Keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#1E90FF", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, + "Name": "Error", + "Flags": 0, "FontDesc": "", "Colour": "#000000", - "BgColour": "#E5E5E5", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, @@ -29739,16 +27587,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "My vim dark", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -29773,171 +27621,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#191919", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#191919", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#C0C0C0", - "BgColour": "#191919", + "BgColour": "#000000", "Size": -1 }, { "Id": 34, @@ -30013,16 +27797,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Oblivion", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -30047,171 +27831,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#BED6FF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#343434", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#343434", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#D8D8D8", - "BgColour": "#343434", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 34, @@ -30287,16 +28007,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "RecognEyes", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -30321,171 +28041,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#FF8080", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#FF8080", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#FF8080", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#FF8080", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#BED6FF", "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#272736", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#272736", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#D0D0D0", - "BgColour": "#272736", + "BgColour": "#101020", "Size": -1 }, { "Id": 34, @@ -30561,16 +28217,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Roboticket", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -30595,171 +28251,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#B05A65", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#B05A65", - "BgColour": "#DCDCDC", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#DCDCDC", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#585858", - "BgColour": "#DCDCDC", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 34, @@ -30835,16 +28427,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -30869,172 +28461,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#A7EC21", "BgColour": "#272822", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#A7EC21", - "BgColour": "#3C3D38", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#3C3D38", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#3C3D38", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -31109,16 +28637,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -31143,171 +28671,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#81A2BE", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#81A2BE", - "BgColour": "#333537", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#333537", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#C5C8C6", - "BgColour": "#333537", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 34, @@ -31383,16 +28847,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Vim Desert", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -31405,183 +28869,119 @@ "is_substyle": false }, { "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 1, - "Name": "Start of line", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 2, - "Name": "Strong 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 3, - "Name": "Strong 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 6, - "Name": "Header 1", - "Flags": 10, - "FontDesc": "", - "Colour": "#82F985", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 7, - "Name": "Header 2", - "Flags": 10, - "FontDesc": "", - "Colour": "#82F985", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 8, - "Name": "Header 3", - "Flags": 10, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, + "Id": 1, + "Name": "Number", + "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, + "Id": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, + "Id": 3, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 12, - "Name": "Prechar", + "Id": 4, + "Name": "Property Name", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 5, + "Name": "Escape Sequence", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 6, + "Name": "Line Comment", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 7, + "Name": "Block Comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 8, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { - "Id": 18, - "Name": "Link", - "Flags": 5, + "Id": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 19, - "Name": "Code", - "Flags": 8, + "Id": 11, + "Name": "Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#3B3B3B", + "Colour": "#F6E06B", + "BgColour": "#262626", "Size": -1 }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, + "Id": 12, + "Name": "LD Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#3B3B3B", + "Colour": "#F6E06B", + "BgColour": "#262626", "Size": -1 }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, + "Id": 13, + "Name": "Error", + "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", - "BgColour": "#3B3B3B", + "BgColour": "#262626", "Size": -1 }, { "Id": 34, @@ -31657,16 +29057,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -31691,171 +29091,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#BED6FF", "BgColour": "#151515", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#BED6FF", - "BgColour": "#2C2C2C", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2C2C2C", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#D8D8D8", - "BgColour": "#2C2C2C", + "BgColour": "#151515", "Size": -1 }, { "Id": 34, @@ -31931,16 +29267,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "One Dark Pro", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -31965,171 +29301,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, + "Name": "Operator", + "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 9, - "Name": "Header 4", - "Flags": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#61afef", "BgColour": "#282c34", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 16, - "Name": "Strike out", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#61afef", - "BgColour": "#3D4148", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#3D4148", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#abb2bf", - "BgColour": "#3D4148", + "BgColour": "#282c34", "Size": -1 }, { "Id": 34, @@ -32205,16 +29477,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -32239,172 +29511,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#68c244", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#68c244", - "BgColour": "#191919", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#191919", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#191919", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -32479,16 +29687,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Darkside-light", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -32513,172 +29721,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#C9C9C9", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#C9C9C9", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#C9C9C9", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -32753,16 +29897,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Darkside", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -32787,172 +29931,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#68c244", "BgColour": "#222324", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#68c244", - "BgColour": "#383939", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#383939", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#383939", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -33027,16 +30107,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -33061,172 +30141,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#60a365", "BgColour": "#12100f", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#292727", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#292727", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#292727", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -33301,16 +30317,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Earthsong-light", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -33335,171 +30351,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 2, - "Name": "Strong 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 3, - "Name": "Strong 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 6, - "Name": "Header 1", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 7, - "Name": "Header 2", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, + "Name": "Number", + "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, + "Id": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, + "Id": 3, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Prechar", + "Id": 4, + "Name": "Property Name", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 5, + "Name": "Escape Sequence", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 6, + "Name": "Line Comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 7, + "Name": "Block Comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 8, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "Link", - "Flags": 5, + "Id": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#60a365", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "Code", - "Flags": 8, + "Id": 11, + "Name": "Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#E5E5E5", + "Colour": "#db784d", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, + "Id": 12, + "Name": "LD Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#E5E5E5", + "Colour": "#db784d", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, + "Id": 13, + "Name": "Error", + "Flags": 0, "FontDesc": "", "Colour": "#4d463e", - "BgColour": "#E5E5E5", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 34, @@ -33575,16 +30527,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Earthsong", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -33609,172 +30561,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#60a365", "BgColour": "#36312c", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#60a365", - "BgColour": "#4A4541", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#4A4541", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#4A4541", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -33849,16 +30737,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -33883,171 +30771,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, + "Name": "Operator", + "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 9, - "Name": "Header 4", - "Flags": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 10, - "Name": "Header 5", - "Flags": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#A9B665", "BgColour": "#22272e", "Size": -1 }, { "Id": 11, - "Name": "Header 6", - "Flags": 10, + "Name": "Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 12, - "Name": "Prechar", + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 13, - "Name": "Unordered List Item", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 14, - "Name": "Ordered List Item", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 15, - "Name": "Block Quote", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 16, - "Name": "Strike out", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 17, - "Name": "Hrule", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#A9B665", - "BgColour": "#383C42", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#383C42", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", "Colour": "#adbac7", - "BgColour": "#383C42", + "BgColour": "#22272e", "Size": -1 }, { "Id": 34, @@ -34123,16 +30947,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -34157,172 +30981,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#a9b665", "BgColour": "#292828", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#a9b665", - "BgColour": "#3E3D3D", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#3E3D3D", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#3E3D3D", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -34397,16 +31157,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Gruvbox", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -34431,7 +31191,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", @@ -34439,164 +31199,100 @@ "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#4B4B4B", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#4B4B4B", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#4B4B4B", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -34671,16 +31367,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -34705,172 +31401,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ffb20d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#202224", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#202224", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#202224", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -34945,16 +31577,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Legacy-light", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -34979,172 +31611,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ffb20d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#E5E5E5", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#E5E5E5", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#E5E5E5", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -35219,16 +31787,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Legacy", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -35253,171 +31821,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 6, - "Name": "Header 1", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 7, - "Name": "Header 2", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 12, - "Name": "Prechar", + "Id": 4, + "Name": "Property Name", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 5, + "Name": "Escape Sequence", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 6, + "Name": "Line Comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 7, + "Name": "Block Comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 8, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 18, - "Name": "Link", - "Flags": 5, + "Id": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ffb20d", "BgColour": "#212933", "Size": -1 }, { - "Id": 19, - "Name": "Code", - "Flags": 8, + "Id": 11, + "Name": "Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#373E47", + "Colour": "#748aa6", + "BgColour": "#212933", "Size": -1 }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, + "Id": 12, + "Name": "LD Keyword", + "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#373E47", + "Colour": "#748aa6", + "BgColour": "#212933", "Size": -1 }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, + "Id": 13, + "Name": "Error", + "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", - "BgColour": "#373E47", + "BgColour": "#212933", "Size": -1 }, { "Id": 34, @@ -35493,16 +31997,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Solarized+", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -35527,172 +32031,108 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, + "Name": "Operator", + "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 9, - "Name": "Header 4", - "Flags": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#2AA198", "BgColour": "#002B36", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 16, - "Name": "Strike out", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#2AA198", - "BgColour": "#19404A", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#19404A", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#19404A", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -35767,16 +32207,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Tango Dark", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -35801,171 +32241,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, + "Name": "Operator", + "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 9, - "Name": "Header 4", - "Flags": 10, + "Name": "URI", + "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#EED247", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", - "Flags": 0, - "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 16, - "Name": "Strike out", - "Flags": 0, - "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#EED247", - "BgColour": "#424848", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", "Colour": "#eeeeec", - "BgColour": "#424848", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#424848", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 34, @@ -36041,16 +32417,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Tokyo Light", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -36075,171 +32451,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#e64100", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#e64100", - "BgColour": "#E1D8C6", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", "Colour": "#343b58", - "BgColour": "#E1D8C6", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#E1D8C6", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 34, @@ -36315,16 +32627,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Tokyo Night", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -36349,171 +32661,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#7aa2f7", "BgColour": "#24283b", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#7aa2f7", - "BgColour": "#393D4E", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", "Colour": "#a9b1d6", - "BgColour": "#393D4E", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#393D4E", + "BgColour": "#24283b", "Size": -1 }, { "Id": 34, @@ -36589,16 +32837,16 @@ "Size": -1 }] }, { - "Name": "markdown", + "Name": "json", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 98, - "KeyWords0": "", - "KeyWords1": "", + "Id": 120, + "KeyWords0": "false null true", + "KeyWords1": "context id name type", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.md;README", + "Extensions": "*.conf;*.json;*.wxcp", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -36623,171 +32871,107 @@ "Size": -1 }, { "Id": 1, - "Name": "Start of line", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 2, - "Name": "Strong 1", - "Flags": 2, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "Strong 2", - "Flags": 2, + "Name": "String EOL", + "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Emphasis 1", - "Flags": 2, + "Name": "Property Name", + "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "Emphasis 2", - "Flags": 2, + "Name": "Escape Sequence", + "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 6, - "Name": "Header 1", - "Flags": 10, + "Name": "Line Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Header 2", - "Flags": 10, + "Name": "Block Comment", + "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 8, - "Name": "Header 3", - "Flags": 10, - "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 9, - "Name": "Header 4", - "Flags": 10, - "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 10, - "Name": "Header 5", - "Flags": 10, - "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 11, - "Name": "Header 6", - "Flags": 10, - "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 12, - "Name": "Prechar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 13, - "Name": "Unordered List Item", + "Id": 9, + "Name": "URI", "Flags": 0, "FontDesc": "", "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 14, - "Name": "Ordered List Item", + "Id": 10, + "Name": "URI", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#85add6", "BgColour": "#343d46", "Size": -1 }, { - "Id": 15, - "Name": "Block Quote", + "Id": 11, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 16, - "Name": "Strike out", + "Id": 12, + "Name": "LD Keyword", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 17, - "Name": "Hrule", + "Id": 13, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 18, - "Name": "Link", - "Flags": 5, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 19, - "Name": "Code", - "Flags": 8, - "FontDesc": "", - "Colour": "#85add6", - "BgColour": "#485058", - "Size": -1 - }, { - "Id": 20, - "Name": "Code2", - "Flags": 8, - "FontDesc": "", "Colour": "#d8dee9", - "BgColour": "#485058", - "Size": -1 - }, { - "Id": 21, - "Name": "Code Block", - "Flags": 8, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#485058", + "BgColour": "#343d46", "Size": -1 }, { "Id": 34, @@ -36863,25 +33047,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -36896,16 +33080,24 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#282C34", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", + "BgColour": "#282C34", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -36913,22 +33105,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#C678DD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#56AFD7", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -36936,7 +33184,15 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -36944,7 +33200,7 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -36952,7 +33208,7 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -36960,43 +33216,43 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { @@ -37073,25 +33329,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Atom One Light", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -37106,16 +33362,24 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -37123,22 +33387,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#A626A4", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#4078F2", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -37146,7 +33466,15 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -37154,7 +33482,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -37162,7 +33490,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -37170,43 +33498,43 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -37283,25 +33611,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Xcode inspired", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -37316,16 +33644,24 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -37333,22 +33669,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -37356,7 +33748,15 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -37364,7 +33764,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -37372,7 +33772,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -37380,43 +33780,43 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -37493,25 +33893,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -37526,16 +33926,24 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#557F5F", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -37543,22 +33951,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#557F5F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F0055", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF5809", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#000099", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -37566,7 +34030,15 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#0000C0", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -37574,7 +34046,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -37582,7 +34054,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -37590,43 +34062,43 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -37703,25 +34175,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -37736,16 +34208,24 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#3F3F3F", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -37753,22 +34233,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#DFC47D", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#6699CC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#F2F2DF", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -37776,7 +34312,15 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -37784,7 +34328,7 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -37792,7 +34336,7 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -37800,43 +34344,43 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -37913,25 +34457,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -37946,16 +34490,24 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#2B2B2B", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#629755", + "BgColour": "#2B2B2B", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#808080", @@ -37963,22 +34515,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#629755", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC7832", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC66D", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -37986,7 +34594,15 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -37994,7 +34610,7 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -38002,7 +34618,7 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -38010,43 +34626,43 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -38123,25 +34739,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Emacsen", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -38156,16 +34772,24 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#234059", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", + "BgColour": "#234059", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -38173,22 +34797,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#678CB1", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#2B9DED", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#2AA198", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -38196,7 +34876,15 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#B58900", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -38204,7 +34892,7 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -38212,7 +34900,7 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -38220,43 +34908,43 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { @@ -38333,25 +35021,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -38366,16 +35054,24 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#2F4F4F", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -38383,22 +35079,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -38406,7 +35158,15 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -38414,7 +35174,7 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -38422,7 +35182,7 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -38430,43 +35190,43 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -38543,25 +35303,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -38576,16 +35336,24 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#2e3436", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#888a85", + "BgColour": "#2e3436", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -38593,22 +35361,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#888a85", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#729fcf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -38616,7 +35440,15 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -38624,7 +35456,7 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -38632,7 +35464,7 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -38640,43 +35472,43 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { @@ -38753,72 +35585,136 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "BlueHippo", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ + "index": 3, + "is_substyle": false + }, { + "index": 5, + "is_substyle": false + }, { + "index": 4, + "is_substyle": false + }, { "index": -1, "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, + "FontDesc": "", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 20, + "Name": "Lex error", + "Flags": 0, + "FontDesc": "", + "Colour": "RED", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 2, + "Name": "Comment line", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 3, + "Name": "Comment block doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 4, + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 6, + "Name": "Keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#1E90FF", + "BgColour": "#FFFFFF", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 8, + "Name": "Other keywords", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 9, + "Name": "Struct", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Line comment", + "Id": 10, + "Name": "Variables", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Number", + "Id": 11, + "Name": "Functions", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#20B2AA", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Word (Set 0)", + "Id": 12, + "Name": "Word List 7", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -38826,7 +35722,15 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -38834,7 +35738,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -38842,7 +35746,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -38850,43 +35754,43 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -38963,25 +35867,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "My vim dark", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -38996,16 +35900,24 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#000000", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", + "BgColour": "#000000", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -39013,22 +35925,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8000", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -39036,7 +36004,15 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -39044,7 +36020,7 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -39052,7 +36028,7 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -39060,43 +36036,43 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { @@ -39173,25 +36149,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Oblivion", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -39206,16 +36182,24 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#1E1E1E", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -39223,22 +36207,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -39246,7 +36286,15 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -39254,7 +36302,7 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -39262,7 +36310,7 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -39270,43 +36318,43 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -39383,25 +36431,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "RecognEyes", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -39416,16 +36464,24 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#101020", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", + "BgColour": "#101020", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -39433,22 +36489,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#00D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -39456,7 +36568,15 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -39464,7 +36584,7 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -39472,7 +36592,7 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -39480,43 +36600,43 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { @@ -39593,25 +36713,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Roboticket", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -39626,16 +36746,24 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "RED", "BgColour": "#F5F5F5", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -39643,22 +36771,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#295F94", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#B05A65", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -39666,7 +36850,15 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -39674,7 +36866,7 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -39682,7 +36874,7 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -39690,43 +36882,43 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -39803,25 +36995,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -39836,16 +37028,24 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#272822", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -39853,22 +37053,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF007F", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#A7EC21", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -39876,7 +37132,15 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -39884,7 +37148,7 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -39892,7 +37156,7 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -39900,43 +37164,43 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { @@ -40013,25 +37277,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -40046,16 +37310,24 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#1D1F21", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -40063,22 +37335,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#B294BB", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#81A2BE", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -40086,7 +37414,15 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -40094,7 +37430,7 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -40102,7 +37438,7 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -40110,43 +37446,43 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { @@ -40223,25 +37559,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Vim Desert", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -40256,16 +37592,24 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#262626", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#67C3E7", + "BgColour": "#262626", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -40273,22 +37617,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#67C3E7", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#F6E06B", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#B6B193", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -40296,7 +37696,15 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8E8D", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -40304,7 +37712,7 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -40312,7 +37720,7 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -40320,43 +37728,43 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { @@ -40433,25 +37841,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -40466,16 +37874,24 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#151515", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -40483,22 +37899,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#3070A0", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -40506,7 +37978,15 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -40514,7 +37994,7 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -40522,7 +38002,7 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -40530,43 +38010,43 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { @@ -40643,25 +38123,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "One Dark Pro", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -40676,16 +38156,24 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#282c34", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#5c6370", + "BgColour": "#282c34", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -40693,22 +38181,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#5c6370", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#e06c75", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#61afef", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -40716,7 +38260,15 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -40724,7 +38276,7 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -40732,7 +38284,7 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -40740,43 +38292,43 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { @@ -40853,25 +38405,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -40886,16 +38438,24 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#000000", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#000000", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -40903,22 +38463,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#68c244", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -40926,7 +38542,15 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -40934,7 +38558,7 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -40942,7 +38566,7 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -40950,43 +38574,43 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { @@ -41063,25 +38687,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Darkside-light", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -41096,16 +38720,24 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "RED", "BgColour": "#e0e0e0", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -41113,22 +38745,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#c1721d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -41136,7 +38824,15 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -41144,7 +38840,7 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -41152,7 +38848,7 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -41160,43 +38856,43 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -41273,25 +38969,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Darkside", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -41306,16 +39002,24 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#222324", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#222324", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -41323,22 +39027,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#68c244", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -41346,7 +39106,15 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -41354,7 +39122,7 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -41362,7 +39130,7 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -41370,43 +39138,43 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { @@ -41483,25 +39251,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -41516,16 +39284,24 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#12100f", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#12100f", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -41533,22 +39309,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -41556,7 +39388,15 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -41564,7 +39404,7 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -41572,7 +39412,7 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -41580,43 +39420,43 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { @@ -41693,25 +39533,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Earthsong-light", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -41726,16 +39566,24 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "RED", "BgColour": "#ffffff", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -41743,22 +39591,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -41766,7 +39670,15 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -41774,7 +39686,7 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -41782,7 +39694,7 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -41790,43 +39702,43 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { @@ -41903,72 +39815,136 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Earthsong", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, + "is_substyle": false + }, { + "index": 5, + "is_substyle": false + }, { + "index": 4, "is_substyle": false }, { "index": -1, "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 20, + "Name": "Lex error", + "Flags": 0, + "FontDesc": "", + "Colour": "PINK", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 2, + "Name": "Comment line", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 3, + "Name": "Comment block doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 4, + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#36312c", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 8, + "Name": "Other keywords", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 9, + "Name": "Struct", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 2, - "Name": "Line comment", + "Id": 10, + "Name": "Variables", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 3, - "Name": "Number", + "Id": 11, + "Name": "Functions", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#60a365", "BgColour": "#36312c", "Size": -1 }, { - "Id": 4, - "Name": "Word (Set 0)", + "Id": 12, + "Name": "Word List 7", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 5, + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -41976,7 +39952,15 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -41984,7 +39968,7 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -41992,7 +39976,7 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -42000,43 +39984,43 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { @@ -42113,25 +40097,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -42146,16 +40130,24 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#22272e", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#22272e", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -42163,22 +40155,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#EA6962", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B665", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -42186,7 +40234,15 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -42194,7 +40250,7 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -42202,7 +40258,7 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -42210,43 +40266,43 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { @@ -42323,25 +40379,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -42356,16 +40412,24 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#292828", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#292828", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -42373,22 +40437,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#ea6962", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b665", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -42396,7 +40516,15 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8a657", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -42404,7 +40532,7 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -42412,7 +40540,7 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -42420,43 +40548,43 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { @@ -42533,25 +40661,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Gruvbox", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -42566,16 +40694,24 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#383838", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#383838", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -42583,22 +40719,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#fe8019", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -42606,7 +40798,15 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -42614,7 +40814,7 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -42622,7 +40822,7 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -42630,43 +40830,43 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { @@ -42743,25 +40943,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -42776,16 +40976,24 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#080a0c", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#080a0c", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -42793,22 +41001,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -42816,7 +41080,15 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -42824,7 +41096,7 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -42832,7 +41104,7 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -42840,43 +41112,43 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { @@ -42953,25 +41225,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Legacy-light", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -42986,16 +41258,24 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "RED", "BgColour": "#ffffff", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -43003,22 +41283,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -43026,7 +41362,15 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -43034,7 +41378,7 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -43042,7 +41386,7 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -43050,43 +41394,43 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { @@ -43163,25 +41507,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Legacy", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -43196,16 +41540,24 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#212933", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -43213,22 +41565,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -43236,7 +41644,15 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -43244,7 +41660,7 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -43252,7 +41668,7 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -43260,43 +41676,43 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { @@ -43373,25 +41789,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Solarized+", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -43406,16 +41822,24 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#002B36", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#5b858b", + "BgColour": "#002B36", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -43423,22 +41847,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#5b858b", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#2AA198", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -43446,7 +41926,15 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB4B16", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -43454,7 +41942,7 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -43462,7 +41950,7 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -43470,43 +41958,43 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { @@ -43583,25 +42071,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Tango Dark", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -43616,16 +42104,24 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#2e3434", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#888A85", + "BgColour": "#2e3434", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -43633,22 +42129,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#888A85", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#EED247", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -43656,7 +42208,15 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -43664,7 +42224,7 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -43672,7 +42232,7 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -43680,43 +42240,43 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { @@ -43793,25 +42353,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Tokyo Light", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -43826,16 +42386,24 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "RED", "BgColour": "#faf1dc", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#9995b7", + "BgColour": "#faf1dc", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#8ca6a6", @@ -43843,22 +42411,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#9995b7", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff5792", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#e64100", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -43866,7 +42490,15 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -43874,7 +42506,7 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -43882,7 +42514,7 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -43890,43 +42522,43 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { @@ -44003,25 +42635,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Tokyo Night", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -44036,16 +42668,24 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#24283b", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", + "BgColour": "#24283b", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -44053,22 +42693,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#f7768e", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#7aa2f7", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -44076,7 +42772,15 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -44084,7 +42788,7 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -44092,7 +42796,7 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -44100,43 +42804,43 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { @@ -44213,25 +42917,25 @@ "Size": -1 }] }, { - "Name": "dockerfile", + "Name": "rust", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 62, - "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", - "KeyWords1": "", + "Id": 111, + "KeyWords0": "Self abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self static struct super trait true try type typeof union unsafe unsized use virtual where while yield", + "KeyWords1": "BTreeMap BTreeSet BinaryHeap HashMap HashSet LinkedList String Vec VecDeque array str vec", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "dockerfile", + "Extensions": "*.rs", "SubstyleBase": -1, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 5, "is_substyle": false }, { - "index": -1, + "index": 4, "is_substyle": false }, { "index": -1, @@ -44246,16 +42950,24 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 1, - "Name": "Error", + "Id": 20, + "Name": "Lex error", "Flags": 0, "FontDesc": "", "Colour": "PINK", "BgColour": "#343d46", "Size": -1 + }, { + "Id": 1, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "GREY", + "BgColour": "#343d46", + "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -44263,22 +42975,78 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Comment block doc", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Comment line doc", + "Flags": 0, + "FontDesc": "", + "Colour": "GREY", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 6, + "Name": "Keywords", "Flags": 0, "FontDesc": "", "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 5, + "Id": 7, + "Name": "Built in types", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 8, + "Name": "Other keywords", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8b6d8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 9, + "Name": "Struct", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 10, + "Name": "Variables", + "Flags": 0, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 11, + "Name": "Functions", + "Flags": 0, + "FontDesc": "", + "Colour": "#85add6", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 12, + "Name": "Word List 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 13, "Name": "String", "Flags": 0, "FontDesc": "", @@ -44286,7 +43054,15 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 6, + "Id": 14, + "Name": "String raw", + "Flags": 0, + "FontDesc": "", + "Colour": "#acd1a8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 15, "Name": "Character", "Flags": 0, "FontDesc": "", @@ -44294,7 +43070,7 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 7, + "Id": 16, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -44302,7 +43078,7 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 8, + "Id": 17, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -44310,43 +43086,43 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 9, - "Name": "Scalar", + "Id": 18, + "Name": "Lifetime", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 10, - "Name": "Param", + "Id": 19, + "Name": "Macro", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 11, - "Name": "Backticks", + "Id": 21, + "Name": "Byte string", "Flags": 0, "FontDesc": "", "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 13, - "Name": "Here Q", + "Id": 22, + "Name": "Byte string raw", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 12, - "Name": "Here delim", + "Id": 23, + "Name": "Byte character", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { @@ -44423,16 +43199,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -44452,121 +43228,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#FFCD22", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#56AFD7", + "BgColour": "#3D4148", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#3D4148", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#3D4148", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -44641,16 +43473,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Atom One Light", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -44670,121 +43502,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#986801", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#986801", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#986801", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#4078F2", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#E5E5E5", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -44859,16 +43747,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Xcode inspired", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -44888,121 +43776,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#000000", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#340DD4", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#E5E5E5", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -45077,16 +44021,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -45106,120 +44050,176 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 3, + "Name": "Strong 2", + "Flags": 2, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 4, + "Name": "Emphasis 1", + "Flags": 2, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 5, + "Name": "Emphasis 2", + "Flags": 2, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Header 1", + "Flags": 10, + "FontDesc": "", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Header 2", + "Flags": 10, + "FontDesc": "", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Header 3", + "Flags": 10, + "FontDesc": "", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Id": 10, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Id": 11, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Number", + "Id": 12, + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Double String", + "Id": 13, + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Single String", + "Id": 14, + "Name": "Ordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Other", + "Id": 15, + "Name": "Block Quote", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Comment", + "Id": 16, + "Name": "Strike out", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Entity", + "Id": 17, + "Name": "Hrule", "Flags": 0, "FontDesc": "", "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Id": 18, + "Name": "Link", + "Flags": 5, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "XML Start", - "Flags": 0, + "Id": 19, + "Name": "Code", + "Flags": 8, "FontDesc": "", - "Colour": "#7F0055", - "BgColour": "#FFFFFF", + "Colour": "#000099", + "BgColour": "#E5E5E5", "Size": -1 }, { - "Id": 13, - "Name": "XML End", - "Flags": 0, + "Id": 20, + "Name": "Code2", + "Flags": 8, "FontDesc": "", - "Colour": "#7F0055", - "BgColour": "#FFFFFF", + "Colour": "#333333", + "BgColour": "#E5E5E5", "Size": -1 }, { - "Id": 17, - "Name": "CDATA", - "Flags": 0, + "Id": 21, + "Name": "Code Block", + "Flags": 8, "FontDesc": "", "Colour": "#333333", - "BgColour": "#FFFFFF", + "BgColour": "#E5E5E5", "Size": -1 }, { "Id": 34, @@ -45295,16 +44295,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -45324,121 +44324,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#EDDD3D", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#F2F2DF", + "BgColour": "#525252", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#525252", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#525252", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -45513,16 +44569,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -45542,121 +44598,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#808080", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#629755", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#6897BB", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#FFC66D", + "BgColour": "#404040", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#404040", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#404040", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -45731,16 +44843,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Emacsen", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -45760,121 +44872,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#839496", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#C59910", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#2AA198", + "BgColour": "#395369", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#395369", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#395369", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -45949,16 +45117,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -45978,121 +45146,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#7FB347", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#436060", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#436060", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#436060", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -46167,16 +45391,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -46196,121 +45420,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#888a85", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#ce5c00", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#42484A", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#42484A", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#42484A", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -46385,16 +45665,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "BlueHippo", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -46414,121 +45694,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#008080", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#000000", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#696969", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#008080", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#008080", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#20B2AA", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#E5E5E5", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -46603,16 +45939,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "My vim dark", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -46632,120 +45968,176 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Single String", + "Name": "Header 2", + "Flags": 10, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 8, + "Name": "Header 3", + "Flags": 10, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 9, + "Name": "Header 4", + "Flags": 10, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, + "Name": "Header 5", + "Flags": 10, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 11, + "Name": "Header 6", + "Flags": 10, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 13, + "Name": "Unordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 8, - "Name": "Other", + "Id": 15, + "Name": "Block Quote", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 9, - "Name": "Comment", + "Id": 16, + "Name": "Strike out", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 10, - "Name": "Entity", + "Id": 17, + "Name": "Hrule", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Id": 18, + "Name": "Link", + "Flags": 5, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "XML Start", - "Flags": 0, + "Id": 19, + "Name": "Code", + "Flags": 8, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#000000", + "Colour": "#C0C0C0", + "BgColour": "#191919", "Size": -1 }, { - "Id": 13, - "Name": "XML End", - "Flags": 0, + "Id": 20, + "Name": "Code2", + "Flags": 8, "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#000000", + "Colour": "#C0C0C0", + "BgColour": "#191919", "Size": -1 }, { - "Id": 17, - "Name": "CDATA", - "Flags": 0, + "Id": 21, + "Name": "Code Block", + "Flags": 8, "FontDesc": "", "Colour": "#C0C0C0", - "BgColour": "#000000", + "BgColour": "#191919", "Size": -1 }, { "Id": 34, @@ -46821,16 +46213,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Oblivion", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -46850,121 +46242,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#7FB347", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#343434", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#343434", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#343434", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -47039,16 +46487,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "RecognEyes", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -47068,121 +46516,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#FFFF00", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#272736", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#272736", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#272736", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -47257,16 +46761,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Roboticket", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -47286,121 +46790,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#585858", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#AF0F91", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#B05A65", + "BgColour": "#DCDCDC", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#DCDCDC", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#DCDCDC", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -47475,16 +47035,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -47504,121 +47064,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#C48CFF", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#A7EC21", + "BgColour": "#3C3D38", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#3C3D38", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#3C3D38", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -47693,16 +47309,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -47722,121 +47338,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#969896", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#DE935F", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#81A2BE", + "BgColour": "#333537", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#333537", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#333537", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -47911,16 +47583,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Vim Desert", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -47940,121 +47612,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#67C3E7", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C64947", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#3B3B3B", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#3B3B3B", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#3B3B3B", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -48129,16 +47857,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -48158,120 +47886,176 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#888888", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#CF6A4C", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#2C2C2C", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2C2C2C", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", "Colour": "#D8D8D8", - "BgColour": "#151515", + "BgColour": "#2C2C2C", "Size": -1 }, { "Id": 34, @@ -48347,16 +48131,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "One Dark Pro", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -48376,121 +48160,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#5c6370", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#5c6370", + "BgColour": "#282c34", + "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#d19a66", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#61afef", + "BgColour": "#3D4148", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#3D4148", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#3D4148", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -48565,16 +48405,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -48594,121 +48434,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#8e69c9", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#68c244", + "BgColour": "#191919", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#191919", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#191919", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -48783,16 +48679,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Darkside-light", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -48812,121 +48708,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#7b5baf", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#C9C9C9", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#C9C9C9", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#C9C9C9", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -49001,16 +48953,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Darkside", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -49030,121 +48982,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#8e69c9", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#68c244", + "BgColour": "#383939", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#383939", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#383939", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -49219,16 +49227,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -49248,121 +49256,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#292727", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#292727", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#292727", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -49437,16 +49501,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Earthsong-light", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -49466,121 +49530,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#ffffff", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#E5E5E5", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -49655,16 +49775,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Earthsong", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -49684,121 +49804,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#4A4541", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#4A4541", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#4A4541", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -49873,149 +50049,205 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 1, + "Name": "Start of line", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 2, + "Name": "Strong 1", + "Flags": 2, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 3, + "Name": "Strong 2", + "Flags": 2, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 4, + "Name": "Emphasis 1", + "Flags": 2, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 5, + "Name": "Emphasis 2", + "Flags": 2, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 6, + "Name": "Header 1", + "Flags": 10, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, + "Id": 7, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "white", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 1, - "Name": "Tag", - "Flags": 0, + "Id": 8, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Id": 9, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Id": 10, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Id": 11, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 5, - "Name": "Number", + "Id": 12, + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { - "Id": 6, - "Name": "Double String", + "Id": 13, + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 7, - "Name": "Single String", + "Id": 14, + "Name": "Ordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 8, - "Name": "Other", + "Id": 15, + "Name": "Block Quote", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { - "Id": 9, - "Name": "Comment", + "Id": 16, + "Name": "Strike out", "Flags": 0, "FontDesc": "", "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { - "Id": 10, - "Name": "Entity", + "Id": 17, + "Name": "Hrule", "Flags": 0, "FontDesc": "", "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { - "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Id": 18, + "Name": "Link", + "Flags": 5, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { - "Id": 12, - "Name": "XML Start", - "Flags": 0, + "Id": 19, + "Name": "Code", + "Flags": 8, "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", + "Colour": "#A9B665", + "BgColour": "#383C42", "Size": -1 }, { - "Id": 13, - "Name": "XML End", - "Flags": 0, + "Id": 20, + "Name": "Code2", + "Flags": 8, "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", + "Colour": "#adbac7", + "BgColour": "#383C42", "Size": -1 }, { - "Id": 17, - "Name": "CDATA", - "Flags": 0, + "Id": 21, + "Name": "Code Block", + "Flags": 8, "FontDesc": "", "Colour": "#adbac7", - "BgColour": "#22272e", + "BgColour": "#383C42", "Size": -1 }, { "Id": 34, @@ -50091,16 +50323,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -50120,121 +50352,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#928374", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#d3869b", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#a9b665", + "BgColour": "#3E3D3D", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#3E3D3D", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#3E3D3D", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -50309,16 +50597,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Gruvbox", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -50338,121 +50626,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#928374", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#4B4B4B", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#4B4B4B", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#4B4B4B", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -50527,16 +50871,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -50556,121 +50900,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#324357", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#c7f026", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#202224", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#202224", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#202224", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -50745,16 +51145,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Legacy-light", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -50774,121 +51174,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#ffffff", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#324357", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#c7f026", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#E5E5E5", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#E5E5E5", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -50963,16 +51419,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Legacy", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -50992,121 +51448,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#425972", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#c7f026", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#373E47", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#373E47", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#373E47", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -51181,16 +51693,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Solarized+", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -51210,121 +51722,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#5b858b", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#5b858b", + "BgColour": "#002B36", + "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", + "Colour": "#268BD2", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#2AA198", + "BgColour": "#19404A", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#19404A", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#19404A", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -51399,16 +51967,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Tango Dark", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -51428,120 +51996,176 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 4, + "Name": "Emphasis 1", + "Flags": 2, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 5, + "Name": "Emphasis 2", + "Flags": 2, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 6, + "Name": "Header 1", + "Flags": 10, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 7, + "Name": "Header 2", + "Flags": 10, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 8, + "Name": "Header 3", + "Flags": 10, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 9, + "Name": "Header 4", + "Flags": 10, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 10, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Id": 11, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 5, - "Name": "Number", + "Id": 12, + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 6, - "Name": "Double String", + "Id": 13, + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 7, - "Name": "Single String", + "Id": 14, + "Name": "Ordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 8, - "Name": "Other", + "Id": 15, + "Name": "Block Quote", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 9, - "Name": "Comment", + "Id": 16, + "Name": "Strike out", "Flags": 0, "FontDesc": "", "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 10, - "Name": "Entity", + "Id": 17, + "Name": "Hrule", "Flags": 0, "FontDesc": "", "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Id": 18, + "Name": "Link", + "Flags": 5, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 12, - "Name": "XML Start", - "Flags": 0, + "Id": 19, + "Name": "Code", + "Flags": 8, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#EED247", + "BgColour": "#424848", "Size": -1 }, { - "Id": 13, - "Name": "XML End", - "Flags": 0, + "Id": 20, + "Name": "Code2", + "Flags": 8, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#eeeeec", + "BgColour": "#424848", "Size": -1 }, { - "Id": 17, - "Name": "CDATA", - "Flags": 0, + "Id": 21, + "Name": "Code Block", + "Flags": 8, "FontDesc": "", "Colour": "#eeeeec", - "BgColour": "#2e3434", + "BgColour": "#424848", "Size": -1 }, { "Id": 34, @@ -51617,16 +52241,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Tokyo Light", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -51646,121 +52270,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "black", + "Colour": "#6D6D6D", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#9995b7", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#5842ff", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#e64100", + "BgColour": "#E1D8C6", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#E1D8C6", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#E1D8C6", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -51835,16 +52515,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Tokyo Night", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -51864,121 +52544,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#7aa2f7", + "BgColour": "#393D4E", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#393D4E", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#393D4E", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -52053,16 +52789,16 @@ "Size": -1 }] }, { - "Name": "xml", + "Name": "markdown", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 5, + "Id": 98, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.xml;*.project;*.xrc;*.plist", + "Extensions": "*.md;README", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -52082,121 +52818,177 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "white", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Start of line", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 2, - "Name": "Tag Unknown", - "Flags": 0, + "Name": "Strong 1", + "Flags": 2, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "Attribute", - "Flags": 0, + "Name": "Strong 2", + "Flags": 2, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Attribute Unknown", - "Flags": 0, + "Name": "Emphasis 1", + "Flags": 2, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "Number", - "Flags": 0, + "Name": "Emphasis 2", + "Flags": 2, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 6, - "Name": "Double String", - "Flags": 0, + "Name": "Header 1", + "Flags": 10, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Single String", - "Flags": 0, + "Name": "Header 2", + "Flags": 10, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 8, - "Name": "Other", - "Flags": 0, + "Name": "Header 3", + "Flags": 10, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 9, - "Name": "Comment", - "Flags": 0, + "Name": "Header 4", + "Flags": 10, "FontDesc": "", - "Colour": "GREY", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 10, - "Name": "Entity", - "Flags": 0, + "Name": "Header 5", + "Flags": 10, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 11, - "Name": "Tag End", - "Flags": 0, + "Name": "Header 6", + "Flags": 10, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 12, - "Name": "XML Start", + "Name": "Prechar", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 13, - "Name": "XML End", + "Name": "Unordered List Item", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 14, + "Name": "Ordered List Item", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 15, + "Name": "Block Quote", + "Flags": 0, + "FontDesc": "", + "Colour": "GREY", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 16, + "Name": "Strike out", + "Flags": 0, + "FontDesc": "", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 17, - "Name": "CDATA", + "Name": "Hrule", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#82c4c4", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 18, + "Name": "Link", + "Flags": 5, + "FontDesc": "", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 + }, { + "Id": 19, + "Name": "Code", + "Flags": 8, + "FontDesc": "", + "Colour": "#85add6", + "BgColour": "#485058", + "Size": -1 + }, { + "Id": 20, + "Name": "Code2", + "Flags": 8, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#485058", + "Size": -1 + }, { + "Id": 21, + "Name": "Code Block", + "Flags": 8, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#485058", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -52271,16 +53063,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -52305,63 +53097,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "PINK", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", @@ -52369,15 +53161,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#F35151", @@ -52385,106 +53177,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC235", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#F35151", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#F35151", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#F35151", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { @@ -52561,16 +53273,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Atom One Light", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -52595,55 +53307,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", @@ -52651,7 +53363,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#383A42", @@ -52659,15 +53371,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#383A42", @@ -52675,106 +53387,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#C18401", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -52851,16 +53483,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Xcode inspired", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -52885,55 +53517,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -52941,7 +53573,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -52949,15 +53581,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -52965,106 +53597,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -53141,16 +53693,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -53175,186 +53727,106 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "Unknown Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF5809", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": "Unknown Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF5809", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "Value", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Comment", + "Name": "Line comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "ID", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF5809", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "String", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Double String", + "Id": 4, + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Attribute", + "Id": 6, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Identifier 3", + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Pseudo Element", + "Id": 8, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Extended Identifier", + "Id": 9, + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "Extended Pseudo Class", + "Id": 10, + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Extended Pseudo Element", + "Id": 11, + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -53431,16 +53903,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -53465,63 +53937,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "PINK", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", @@ -53529,15 +54001,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#6699CC", @@ -53545,106 +54017,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -53721,16 +54113,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -53755,63 +54147,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "PINK", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -53819,15 +54211,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", @@ -53835,106 +54227,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -54011,16 +54323,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Emacsen", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -54045,63 +54357,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "PINK", "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -54109,15 +54421,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#2B9DED", @@ -54125,106 +54437,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { @@ -54301,16 +54533,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -54335,63 +54567,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "PINK", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", @@ -54399,15 +54631,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", @@ -54415,106 +54647,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -54591,16 +54743,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -54625,63 +54777,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "PINK", "BgColour": "#2e3436", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", @@ -54689,15 +54841,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#729fcf", @@ -54705,106 +54857,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { @@ -54881,16 +54953,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "BlueHippo", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -54915,63 +54987,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -54979,15 +55051,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#D87093", @@ -54995,106 +55067,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -55171,16 +55163,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "My vim dark", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -55204,187 +55196,107 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 1, - "Name": "Tag", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 2, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 3, - "Name": "Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 4, - "Name": "Unknown Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 5, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "WHITE", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 6, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 7, - "Name": "Unknown Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 8, - "Name": "Value", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 9, - "Name": "Comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 10, - "Name": "ID", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 11, - "Name": "Important", + "Id": 1, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "PINK", "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Directive", + "Id": 2, + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Double String", + "Id": 4, + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Attribute", + "Id": 6, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Identifier 3", + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Pseudo Element", + "Id": 8, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "Extended Identifier", + "Id": 9, + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 20, - "Name": "Extended Pseudo Class", + "Id": 10, + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { - "Id": 21, - "Name": "Extended Pseudo Element", + "Id": 11, + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { @@ -55461,16 +55373,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Oblivion", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -55495,63 +55407,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "PINK", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -55559,15 +55471,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", @@ -55575,106 +55487,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -55751,16 +55583,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "RecognEyes", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -55785,63 +55617,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "PINK", "BgColour": "#101020", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", @@ -55849,15 +55681,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", @@ -55865,106 +55697,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8080", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { @@ -56041,16 +55793,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Roboticket", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -56075,63 +55827,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "RED", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#585858", @@ -56139,15 +55891,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#55aa55", @@ -56155,106 +55907,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -56331,16 +56003,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -56365,55 +56037,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "PINK", "BgColour": "#272822", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -56421,7 +56093,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -56429,15 +56101,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -56445,106 +56117,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { @@ -56621,16 +56213,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -56655,63 +56247,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "PINK", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", @@ -56719,15 +56311,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#CC6666", @@ -56735,106 +56327,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { @@ -56911,16 +56423,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Vim Desert", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -56945,63 +56457,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "PINK", "BgColour": "#262626", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -57009,15 +56521,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#B6B193", @@ -57025,106 +56537,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#82F985", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { @@ -57201,16 +56633,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -57235,186 +56667,106 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 2, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 3, - "Name": "Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 4, - "Name": "Unknown Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 5, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "WHITE", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 6, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 7, - "Name": "Unknown Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 8, - "Name": "Value", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 9, - "Name": "Comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 10, - "Name": "ID", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "PINK", "BgColour": "#151515", "Size": -1 }, { - "Id": 11, - "Name": "Important", + "Id": 2, + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 12, - "Name": "Directive", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 4, + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 14, - "Name": "Double String", + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", + "Id": 6, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 16, - "Name": "Attribute", + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "Identifier 3", + "Id": 8, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 18, - "Name": "Pseudo Element", + "Id": 9, + "Name": "Scalar", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 19, - "Name": "Extended Identifier", + "Id": 10, + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", + "Id": 11, + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { @@ -57491,16 +56843,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "One Dark Pro", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -57525,31 +56877,31 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "PINK", "BgColour": "#282c34", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", @@ -57557,31 +56909,31 @@ "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#abb2bf", @@ -57589,15 +56941,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#e06c75", @@ -57605,106 +56957,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { @@ -57781,16 +57053,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -57815,55 +57087,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "PINK", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -57871,7 +57143,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -57879,15 +57151,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -57895,106 +57167,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { @@ -58071,16 +57263,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Darkside-light", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -58105,55 +57297,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "RED", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", @@ -58161,7 +57353,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#222324", @@ -58169,15 +57361,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#222324", @@ -58185,106 +57377,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -58361,16 +57473,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Darkside", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -58395,55 +57507,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "PINK", "BgColour": "#222324", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -58451,7 +57563,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -58459,15 +57571,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -58475,106 +57587,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { @@ -58651,16 +57683,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -58685,55 +57717,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "PINK", "BgColour": "#12100f", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -58741,7 +57773,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -58749,15 +57781,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -58765,106 +57797,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { @@ -58941,16 +57893,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Earthsong-light", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -58975,55 +57927,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "RED", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", @@ -59031,7 +57983,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", @@ -59039,15 +57991,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", @@ -59055,106 +58007,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { @@ -59231,16 +58103,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Earthsong", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -59252,199 +58124,119 @@ "index": -1, "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 1, - "Name": "Tag", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 2, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 3, - "Name": "Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 4, - "Name": "Unknown Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 5, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "WHITE", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 6, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 7, - "Name": "Unknown Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 8, - "Name": "Value", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 9, - "Name": "Comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 10, - "Name": "ID", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 11, - "Name": "Important", + "Id": 1, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "PINK", "BgColour": "#36312c", "Size": -1 }, { - "Id": 12, - "Name": "Directive", + "Id": 2, + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 14, - "Name": "Double String", + "Id": 4, + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 16, - "Name": "Attribute", + "Id": 6, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 17, - "Name": "Identifier 3", + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 18, - "Name": "Pseudo Element", + "Id": 8, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 19, - "Name": "Extended Identifier", + "Id": 9, + "Name": "Scalar", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 20, - "Name": "Extended Pseudo Class", + "Id": 10, + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 21, - "Name": "Extended Pseudo Element", + "Id": 11, + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { @@ -59521,16 +58313,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -59555,55 +58347,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "PINK", "BgColour": "#22272e", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D4BE98", @@ -59611,7 +58403,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#adbac7", @@ -59619,15 +58411,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#D4BE98", @@ -59635,106 +58427,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { @@ -59811,16 +58523,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -59845,55 +58557,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "PINK", "BgColour": "#292828", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", @@ -59901,7 +58613,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", @@ -59909,15 +58621,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", @@ -59925,106 +58637,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { @@ -60101,16 +58733,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Gruvbox", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -60135,63 +58767,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "PINK", "BgColour": "#383838", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", @@ -60199,15 +58831,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#fdf4c1", @@ -60215,106 +58847,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { @@ -60391,16 +58943,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -60425,55 +58977,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "PINK", "BgColour": "#080a0c", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -60481,7 +59033,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -60489,15 +59041,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -60505,106 +59057,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { @@ -60681,16 +59153,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Legacy-light", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -60715,55 +59187,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "RED", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", @@ -60771,7 +59243,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#444444", @@ -60779,15 +59251,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#444444", @@ -60795,106 +59267,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { @@ -60971,16 +59363,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Legacy", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -61005,55 +59397,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "PINK", "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -61061,7 +59453,7 @@ "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -61069,15 +59461,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -61085,106 +59477,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { @@ -61261,16 +59573,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Solarized+", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -61294,187 +59606,107 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 1, - "Name": "Tag", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 2, - "Name": "Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 3, - "Name": "Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 4, - "Name": "Unknown Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 5, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "WHITE", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 6, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 7, - "Name": "Unknown Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 8, - "Name": "Value", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 9, - "Name": "Comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 10, - "Name": "ID", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 11, - "Name": "Important", + "Id": 1, + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "PINK", "BgColour": "#002B36", "Size": -1 }, { - "Id": 12, - "Name": "Directive", + "Id": 2, + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { - "Id": 13, - "Name": "String", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { - "Id": 14, - "Name": "Double String", + "Id": 4, + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 16, - "Name": "Attribute", + "Id": 6, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 17, - "Name": "Identifier 3", + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 18, - "Name": "Pseudo Element", + "Id": 8, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 19, - "Name": "Extended Identifier", + "Id": 9, + "Name": "Scalar", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 20, - "Name": "Extended Pseudo Class", + "Id": 10, + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 21, - "Name": "Extended Pseudo Element", + "Id": 11, + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { @@ -61551,16 +59783,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Tango Dark", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -61585,31 +59817,31 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "PINK", "BgColour": "#2e3434", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", @@ -61617,31 +59849,31 @@ "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", @@ -61649,15 +59881,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -61665,106 +59897,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { @@ -61841,16 +59993,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Tokyo Light", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -61875,63 +60027,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "RED", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#343b58", @@ -61939,15 +60091,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#f49725", @@ -61955,106 +60107,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { @@ -62131,16 +60203,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Tokyo Night", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -62165,23 +60237,23 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "PINK", "BgColour": "#24283b", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#ff9e64", @@ -62189,39 +60261,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", @@ -62229,15 +60301,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#cfc9c2", @@ -62245,106 +60317,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { @@ -62421,16 +60413,16 @@ "Size": -1 }] }, { - "Name": "scss", + "Name": "dockerfile", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 38, - "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", - "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", - "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", - "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", - "KeyWords4": "after before first-letter first-line selection", - "Extensions": "*.scss", + "Id": 62, + "KeyWords0": "ADD ARG CMD COPY ENTRYPOINT ENV EXPOSE FROM LABEL MAINTAINER ONBUILD RUN STOPSIGNAL USER VOLUME WORKDIR awk bzip cat cd chmod cp do done echo else fi find for grep gunzip gzip if in ls mkdir mv print printf pwd rm rmdir switch tar then touch while xargs zip", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "dockerfile", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -62455,63 +60447,63 @@ "Size": -1 }, { "Id": 1, - "Name": "Tag", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "PINK", "BgColour": "#343d46", "Size": -1 }, { "Id": 2, - "Name": "Class", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "Pseudo Class", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Unknown Pseudo Class", + "Name": "Word (Set 0)", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "WHITE", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Unknown Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 8, - "Name": "Value", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", @@ -62519,15 +60511,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Comment", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 10, - "Name": "ID", + "Name": "Param", "Flags": 0, "FontDesc": "", "Colour": "#f97b58", @@ -62535,106 +60527,26 @@ "Size": -1 }, { "Id": 11, - "Name": "Important", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 12, - "Name": "Directive", - "Flags": 0, - "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 13, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 14, - "Name": "Double String", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 15, - "Name": "Identifier 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 16, - "Name": "Attribute", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 17, - "Name": "Identifier 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 18, - "Name": "Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 19, - "Name": "Extended Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 20, - "Name": "Extended Pseudo Class", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 21, - "Name": "Extended Pseudo Element", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 22, - "Name": "Media", + "Id": 13, + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 23, - "Name": "Variable", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { @@ -62711,16 +60623,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -62729,7 +60641,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -62740,159 +60652,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "white", "BgColour": "#282C34", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#56AFD7", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#F35151", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC235", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { @@ -62969,16 +60841,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Atom One Light", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -62987,7 +60859,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -62998,159 +60870,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "black", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#4078F2", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#C18401", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -63227,16 +61059,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Xcode inspired", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -63245,7 +61077,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -63256,159 +61088,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "black", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -63485,16 +61277,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -63503,170 +61295,130 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF0000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "black", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Triple", + "Id": 1, + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Double Triple", + "Id": 2, + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Class Name", + "Id": 3, + "Name": "Attribute", "Flags": 0, "FontDesc": "", "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Def Name", + "Id": 4, + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#000099", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 5, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 6, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 7, + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 8, + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 10, + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 11, + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 12, + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 13, + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "F-triple Double", + "Id": 17, + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -63743,16 +61495,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -63761,7 +61513,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -63772,159 +61524,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "white", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2DF", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -64001,16 +61713,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -64019,7 +61731,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -64030,159 +61742,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "white", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFC66D", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -64259,16 +61931,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Emacsen", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -64277,7 +61949,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -64288,159 +61960,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "white", "BgColour": "#234059", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { @@ -64517,16 +62149,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -64535,7 +62167,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -64546,159 +62178,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "white", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -64775,16 +62367,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -64793,7 +62385,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -64804,159 +62396,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "white", "BgColour": "#2e3436", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { @@ -65033,16 +62585,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "BlueHippo", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -65051,7 +62603,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -65062,159 +62614,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "black", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#20B2AA", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -65291,16 +62803,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "My vim dark", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -65309,7 +62821,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -65320,159 +62832,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "white", "BgColour": "#000000", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { @@ -65549,16 +63021,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Oblivion", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -65567,7 +63039,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -65578,159 +63050,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "white", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -65807,16 +63239,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "RecognEyes", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -65825,170 +63257,130 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 2, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 3, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 4, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "white", "BgColour": "#101020", "Size": -1 }, { - "Id": 6, - "Name": "Triple", + "Id": 1, + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 7, - "Name": "Double Triple", + "Id": 2, + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 8, - "Name": "Class Name", + "Id": 3, + "Name": "Attribute", "Flags": 0, "FontDesc": "", "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { - "Id": 9, - "Name": "Def Name", + "Id": 4, + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 5, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 6, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 7, + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 8, + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 10, + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 11, + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 12, + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 13, + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 19, - "Name": "F-triple Double", + "Id": 17, + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { @@ -66065,16 +63457,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Roboticket", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -66083,7 +63475,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -66094,159 +63486,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "black", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#B05A65", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -66323,16 +63675,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -66341,7 +63693,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -66352,159 +63704,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "white", "BgColour": "#272822", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#A7EC21", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { @@ -66581,16 +63893,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -66599,7 +63911,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -66610,159 +63922,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "white", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#81A2BE", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { @@ -66839,16 +64111,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Vim Desert", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -66857,7 +64129,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -66868,159 +64140,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "white", "BgColour": "#262626", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#82F985", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { @@ -67097,16 +64329,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -67115,7 +64347,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -67126,159 +64358,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "white", "BgColour": "#151515", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { @@ -67355,16 +64547,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "One Dark Pro", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -67373,7 +64565,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -67384,159 +64576,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "white", "BgColour": "#282c34", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#61afef", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", + "Name": "XML End", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 - }, { - "Id": 16, - "Name": "F-string", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { @@ -67613,16 +64765,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -67631,7 +64783,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -67642,159 +64794,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "white", "BgColour": "#000000", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { @@ -67871,16 +64983,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Darkside-light", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -67889,7 +65001,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -67900,159 +65012,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "black", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -68129,16 +65201,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Darkside", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -68147,7 +65219,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -68158,159 +65230,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "white", "BgColour": "#222324", "Size": -1 }, { "Id": 1, - "Name": "Comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 2, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 3, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 4, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", + "Name": "Tag", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 6, - "Name": "Triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 7, - "Name": "Double Triple", + "Id": 2, + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 8, - "Name": "Class Name", + "Id": 3, + "Name": "Attribute", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 9, - "Name": "Def Name", + "Id": 4, + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 5, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 6, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 7, + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 8, + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 10, + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 11, + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 12, + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 13, + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 19, - "Name": "F-triple Double", + "Id": 17, + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { @@ -68387,16 +65419,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -68405,7 +65437,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -68416,159 +65448,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "white", "BgColour": "#12100f", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { @@ -68645,16 +65637,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Earthsong-light", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -68663,7 +65655,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -68674,159 +65666,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "black", "BgColour": "#ffffff", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { @@ -68903,16 +65855,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Earthsong", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -68921,7 +65873,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -68932,159 +65884,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "white", "BgColour": "#36312c", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { @@ -69161,16 +66073,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -69179,7 +66091,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -69190,159 +66102,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "white", "BgColour": "#22272e", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#A9B665", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { @@ -69419,16 +66291,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -69437,7 +66309,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -69448,159 +66320,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "white", "BgColour": "#292828", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#a9b665", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { @@ -69677,16 +66509,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Gruvbox", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -69695,7 +66527,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -69706,84 +66538,84 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "white", "BgColour": "#383838", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", @@ -69791,74 +66623,34 @@ "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { @@ -69935,16 +66727,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -69953,7 +66745,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -69964,159 +66756,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "white", "BgColour": "#080a0c", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { @@ -70193,16 +66945,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Legacy-light", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -70211,7 +66963,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -70222,159 +66974,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "black", "BgColour": "#ffffff", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { @@ -70451,16 +67163,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Legacy", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -70469,7 +67181,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -70480,159 +67192,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "white", "BgColour": "#212933", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 3, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 4, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 6, - "Name": "Triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 7, - "Name": "Double Triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 8, - "Name": "Class Name", + "Id": 3, + "Name": "Attribute", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 9, - "Name": "Def Name", - "Flags": 0, - "FontDesc": "", - "Colour": "#ffb20d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", + "Id": 4, + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 5, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 6, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 7, + "Name": "Single String", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 8, + "Name": "Other", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 10, + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 11, + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 12, + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 19, - "Name": "F-triple Double", + "Id": 13, + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 17, + "Name": "CDATA", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { @@ -70709,16 +67381,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Solarized+", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -70727,7 +67399,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -70738,159 +67410,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "white", "BgColour": "#002B36", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", + "Name": "XML End", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 - }, { - "Id": 16, - "Name": "F-string", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { @@ -70967,16 +67599,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Tango Dark", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -70985,7 +67617,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -70996,159 +67628,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "white", "BgColour": "#2e3434", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#EED247", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", + "Name": "XML End", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 - }, { - "Id": 16, - "Name": "F-string", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { @@ -71225,16 +67817,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Tokyo Light", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -71243,7 +67835,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -71254,159 +67846,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", + "Colour": "black", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#e64100", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { @@ -71483,16 +68035,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Tokyo Night", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -71501,7 +68053,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -71512,159 +68064,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "white", "BgColour": "#24283b", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#7aa2f7", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { @@ -71741,16 +68253,16 @@ "Size": -1 }] }, { - "Name": "cobraalt", + "Name": "xml", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 2, - "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", - "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "Id": 5, + "KeyWords0": "", + "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra-A", + "Extensions": "*.xml;*.project;*.xrc;*.plist", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -71759,7 +68271,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -71770,159 +68282,119 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "white", "BgColour": "#343d46", "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Tag", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Tag Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Attribute Unknown", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Single String", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "Other", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#85add6", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 10, - "Name": "Operator", + "Name": "Entity", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 11, - "Name": "Identifier", + "Name": "Tag End", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 12, - "Name": "Comment block", + "Name": "XML Start", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 13, - "Name": "String EOL", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 14, - "Name": "Locals", - "Flags": 0, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 15, - "Name": "Decorator", - "Flags": 0, - "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 16, - "Name": "F-string", + "Name": "XML End", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 17, - "Name": "F-character", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 18, - "Name": "F-triple", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 19, - "Name": "F-triple Double", + "Name": "CDATA", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { @@ -71999,16 +68471,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -72031,6 +68503,190 @@ "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -72044,149 +68700,367 @@ "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#282C34", + "Colour": "red", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", + "Flags": 0, + "FontDesc": "", + "Colour": "#282C34", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": -1, + "Name": "Fold Margin", + "Flags": 0, + "FontDesc": "", + "Colour": "#3D4148", + "BgColour": "#3D4148", + "Size": -1 + }, { + "Id": -2, + "Name": "Text Selection", + "Flags": 0, + "FontDesc": "", + "Colour": "#404040", + "BgColour": "#CC9900", + "Size": -1 + }, { + "Id": -3, + "Name": "Caret Colour", + "Flags": 0, + "FontDesc": "", + "Colour": "YELLOW", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": -4, + "Name": "Whitespace", + "Flags": 0, + "FontDesc": "", + "Colour": "#3D4148", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 38, + "Name": "Calltip", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 33, + "Name": "Line Numbers", + "Flags": 0, + "FontDesc": "", + "Colour": "#81969A", + "BgColour": "#282C34", + "Size": -1 + }] + }, { + "Name": "scss", + "Theme": "Atom One Light", + "Flags": 5, + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, + "FontDesc": "", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "BLACK", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "#282C34", - "BgColour": "#282C34", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#3D4148", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 19, + "Name": "Extended Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#282C34", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#282C34", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 22, + "Name": "Media", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", + "Colour": "#C18401", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 23, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#81969A", - "BgColour": "#282C34", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#282C34", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#282C34", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#282C34", - "BgColour": "#282C34", + "Colour": "#FFFFFF", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#282C34", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#939599", - "BgColour": "#282C34", + "Colour": "#F2F2F2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#81969A", - "BgColour": "#282C34", + "Colour": "#999999", + "BgColour": "#FFFFFF", "Size": -1 }] }, { - "Name": "text", - "Theme": "Atom One Light", + "Name": "scss", + "Theme": "Xcode inspired", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -72206,182 +69080,188 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#999999", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 10, + "Name": "ID", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 11, + "Name": "Important", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 13, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 14, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 15, + "Name": "Identifier 2", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 16, + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#7F7F7F", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#999999", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 - }] - }, { - "Name": "text", - "Theme": "Xcode inspired", - "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -72459,182 +69339,222 @@ "Colour": "#999999", "BgColour": "#FFFFFF", "Size": -1 + }] + }, { + "Name": "scss", + "Theme": "Classic Eclipse", + "Flags": 5, + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 2, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#006600", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "BLACK", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7F7F7F", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#999999", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 - }] - }, { - "Name": "text", - "Theme": "Classic Eclipse", - "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#557F5F", + "BgColour": "#FFFFFF", + "Size": -1 }, { - "index": -1, - "is_substyle": false + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF5809", + "BgColour": "#FFFFFF", + "Size": -1 }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 12, + "Name": "Directive", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#006600", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 13, + "Name": "String", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#0000C0", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 14, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 15, + "Name": "Identifier 2", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#FF5809", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 16, + "Name": "Attribute", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF5809", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -72666,8 +69586,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, @@ -72690,7 +69610,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#7F7F7F", + "Colour": "#F2F2F2", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -72711,16 +69631,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -72744,75 +69664,187 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#3F3F3F", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#525252", - "BgColour": "#525252", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#525252", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#8A8A8A", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#6699CC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#6699CC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#6699CC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#6699CC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -72844,8 +69876,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#525252", + "BgColour": "#525252", "Size": -1 }, { "Id": -2, @@ -72868,7 +69900,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#9F9F9F", + "Colour": "#525252", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -72889,16 +69921,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -72921,6 +69953,190 @@ "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#629755", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -72993,182 +70209,222 @@ "Colour": "#D0D0D0", "BgColour": "#2B2B2B", "Size": -1 + }] + }, { + "Name": "scss", + "Theme": "Emacsen", + "Flags": 5, + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#2B2B2B", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#2B2B2B", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 2, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#2B2B2B", - "BgColour": "#2B2B2B", + "Colour": "#D5A920", + "BgColour": "#234059", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#2B9DED", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#2B9DED", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#586E75", + "BgColour": "#234059", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 10, + "Name": "ID", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#2B2B2B", + "Colour": "#2B9DED", + "BgColour": "#234059", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", - "Colour": "#959595", - "BgColour": "#2B2B2B", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#D5A920", + "BgColour": "#234059", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 13, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#2B2B2B", + "Colour": "#B58900", + "BgColour": "#234059", "Size": -1 - }] - }, { - "Name": "text", - "Theme": "Emacsen", - "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 14, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 16, + "Name": "Attribute", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "#234059", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#395369", - "BgColour": "#395369", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 19, + "Name": "Extended Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#2B9DED", + "BgColour": "#234059", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#395369", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 22, + "Name": "Media", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 23, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#758B8B", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { @@ -73200,8 +70456,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#395369", + "BgColour": "#395369", "Size": -1 }, { "Id": -2, @@ -73224,7 +70480,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#919FAC", + "Colour": "#395369", "BgColour": "#234059", "Size": -1 }, { @@ -73245,16 +70501,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -73278,75 +70534,187 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#2F4F4F", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#436060", - "BgColour": "#436060", + "Colour": "#D25252", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#436060", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -73378,8 +70746,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#436060", + "BgColour": "#436060", "Size": -1 }, { "Id": -2, @@ -73402,7 +70770,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#97A7A7", + "Colour": "#436060", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -73423,16 +70791,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -73456,75 +70824,187 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#2e3436", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#42484A", - "BgColour": "#42484A", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#42484A", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#555753", + "Colour": "#888a85", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#729fcf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#729fcf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#729fcf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#729fcf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { @@ -73556,8 +71036,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#42484A", + "BgColour": "#42484A", "Size": -1 }, { "Id": -2, @@ -73580,7 +71060,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#96999A", + "Colour": "#42484A", "BgColour": "#2e3436", "Size": -1 }, { @@ -73601,16 +71081,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "BlueHippo", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -73630,79 +71110,191 @@ "Name": "Default", "Flags": 0, "FontDesc": "", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#D87093", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#D87093", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#708090", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#D87093", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#D87093", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D87093", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -73734,8 +71326,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, @@ -73758,7 +71350,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#7F7F7F", + "Colour": "#F2F2F2", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -73779,16 +71371,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "My vim dark", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -73811,6 +71403,190 @@ "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8000", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8000", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8000", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8000", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8000", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8000", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8000", + "BgColour": "#000000", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -73883,182 +71659,222 @@ "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 + }] + }, { + "Name": "scss", + "Theme": "Oblivion", + "Flags": 5, + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 2, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#000000", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 10, + "Name": "ID", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#000000", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", - "Colour": "#7F7F7F", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#D25252", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 13, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", "Size": -1 - }] - }, { - "Name": "text", - "Theme": "Oblivion", - "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 14, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 16, + "Name": "Attribute", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "#1E1E1E", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#343434", - "BgColour": "#343434", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 19, + "Name": "Extended Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#343434", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 22, + "Name": "Media", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 23, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -74090,8 +71906,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#343434", + "BgColour": "#343434", "Size": -1 }, { "Id": -2, @@ -74114,7 +71930,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#8E8E8E", + "Colour": "#343434", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -74135,16 +71951,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "RecognEyes", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -74168,75 +71984,187 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#101020", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#272736", - "BgColour": "#272736", + "Colour": "#FF8080", + "BgColour": "#101020", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#101020", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#272736", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#2B91AF", + "Colour": "#00E000", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { @@ -74268,8 +72196,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#272736", + "BgColour": "#272736", "Size": -1 }, { "Id": -2, @@ -74292,7 +72220,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#87878F", + "Colour": "#272736", "BgColour": "#101020", "Size": -1 }, { @@ -74313,16 +72241,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Roboticket", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -74342,79 +72270,191 @@ "Name": "Default", "Flags": 0, "FontDesc": "", + "Colour": "#6D6D6D", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#F5F5F5", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", - "BgColour": "#E8E8E8", + "Colour": "BLACK", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#AFBFCF", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -74446,8 +72486,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "#E8E8E8", + "BgColour": "#E8E8E8", "Size": -1 }, { "Id": -2, @@ -74470,7 +72510,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#7A7A7A", + "Colour": "#E8E8E8", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -74491,16 +72531,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -74524,75 +72564,187 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#272822", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", - "BgColour": "#3C3D38", + "Colour": "#52E3F6", + "BgColour": "#272822", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#272822", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#999999", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { @@ -74624,8 +72776,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#3C3D38", + "BgColour": "#3C3D38", "Size": -1 }, { "Id": -2, @@ -74648,7 +72800,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#939390", + "Colour": "#3C3D38", "BgColour": "#272822", "Size": -1 }, { @@ -74669,16 +72821,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -74701,6 +72853,190 @@ "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -74773,182 +73109,222 @@ "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 + }] + }, { + "Name": "scss", + "Theme": "Vim Desert", + "Flags": 5, + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#1D1F21", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#1D1F21", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#B6B193", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#1D1F21", - "BgColour": "#1D1F21", + "Colour": "#B6B193", + "BgColour": "#262626", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#67C3E7", + "BgColour": "#262626", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 10, + "Name": "ID", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#1D1F21", + "Colour": "#B6B193", + "BgColour": "#262626", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", - "Colour": "#8E8F90", - "BgColour": "#1D1F21", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#82F985", + "BgColour": "#262626", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 13, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#FF8E8D", + "BgColour": "#262626", "Size": -1 - }] - }, { - "Name": "text", - "Theme": "Vim Desert", - "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 14, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 16, + "Name": "Attribute", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "#262626", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", - "BgColour": "#3B3B3B", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 19, + "Name": "Extended Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#B6B193", + "BgColour": "#262626", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 22, + "Name": "Media", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 23, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#FFFE00", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { @@ -74980,8 +73356,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#3B3B3B", + "BgColour": "#3B3B3B", "Size": -1 }, { "Id": -2, @@ -75004,7 +73380,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#929292", + "Colour": "#3B3B3B", "BgColour": "#262626", "Size": -1 }, { @@ -75025,16 +73401,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -75058,75 +73434,187 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#151515", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", - "BgColour": "#2C2C2C", + "Colour": "#FFB964", + "BgColour": "#151515", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#151515", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#605958", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { @@ -75158,8 +73646,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#2C2C2C", + "BgColour": "#2C2C2C", "Size": -1 }, { "Id": -2, @@ -75182,7 +73670,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#8A8A8A", + "Colour": "#2C2C2C", "BgColour": "#151515", "Size": -1 }, { @@ -75203,16 +73691,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "One Dark Pro", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -75236,75 +73724,187 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#282c34", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#3D4148", + "Colour": "#c678dd", + "BgColour": "#282c34", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#282c34", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#528bff", - "BgColour": "#ffffffc9", + "Colour": "#e06c75", + "BgColour": "#282c34", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#495162", + "Colour": "#5c6370", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#e06c75", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#e06c75", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#e06c75", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#e06c75", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { @@ -75336,8 +73936,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#3D4148", + "BgColour": "#3D4148", "Size": -1 }, { "Id": -2, @@ -75360,7 +73960,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#939599", + "Colour": "#3D4148", "BgColour": "#282c34", "Size": -1 }, { @@ -75381,16 +73981,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -75414,75 +74014,187 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#191919", + "Colour": "#1cc3e8", + "BgColour": "#000000", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#000000", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#191919", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#494b4d", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { @@ -75514,8 +74226,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#191919", + "BgColour": "#191919", "Size": -1 }, { "Id": -2, @@ -75538,7 +74250,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#7F7F7F", + "Colour": "#191919", "BgColour": "#000000", "Size": -1 }, { @@ -75559,16 +74271,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Darkside-light", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -75588,6 +74300,190 @@ "Name": "Default", "Flags": 0, "FontDesc": "", + "Colour": "#6D6D6D", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "BLACK", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 @@ -75663,182 +74559,222 @@ "Colour": "#adadad", "BgColour": "#e0e0e0", "Size": -1 + }] + }, { + "Name": "scss", + "Theme": "Darkside", + "Flags": 5, + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#e0e0e0", - "BgColour": "#e0e0e0", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#494b4d", + "BgColour": "#222324", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 10, + "Name": "ID", "Flags": 0, "FontDesc": "", - "Colour": "#222222", - "BgColour": "#e0e0e0", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", - "Colour": "#707070", - "BgColour": "#e0e0e0", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#1cc3e8", + "BgColour": "#222324", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 13, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#adadad", - "BgColour": "#e0e0e0", + "Colour": "#f2d42c", + "BgColour": "#222324", "Size": -1 - }] - }, { - "Name": "text", - "Theme": "Darkside", - "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 14, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 16, + "Name": "Attribute", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#383939", - "BgColour": "#383939", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 19, + "Name": "Extended Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#383939", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 22, + "Name": "Media", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 23, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#545658", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { @@ -75870,8 +74806,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#383939", + "BgColour": "#383939", "Size": -1 }, { "Id": -2, @@ -75894,7 +74830,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#909191", + "Colour": "#383939", "BgColour": "#222324", "Size": -1 }, { @@ -75915,16 +74851,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -75948,75 +74884,187 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#12100f", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#292727", - "BgColour": "#292727", + "Colour": "#95cc5e", + "BgColour": "#12100f", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#12100f", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#292727", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#4a413d", + "Colour": "#7a7267", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { @@ -76048,8 +75096,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#292727", + "BgColour": "#292727", "Size": -1 }, { "Id": -2, @@ -76072,7 +75120,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#888787", + "Colour": "#292727", "BgColour": "#12100f", "Size": -1 }, { @@ -76093,16 +75141,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Earthsong-light", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -76122,79 +75170,191 @@ "Name": "Default", "Flags": 0, "FontDesc": "", + "Colour": "#6D6D6D", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#95cc5e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#95cc5e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "BLACK", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#111111", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", - "Colour": "#cccccc", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { @@ -76226,8 +75386,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, @@ -76250,7 +75410,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#7F7F7F", + "Colour": "#F2F2F2", "BgColour": "#ffffff", "Size": -1 }, { @@ -76271,16 +75431,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Earthsong", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -76304,75 +75464,187 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#36312c", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", - "BgColour": "#4A4541", + "Colour": "#95cc5e", + "BgColour": "#36312c", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#36312c", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#6e645a", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { @@ -76404,8 +75676,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#4A4541", + "BgColour": "#4A4541", "Size": -1 }, { "Id": -2, @@ -76428,7 +75700,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#9A9895", + "Colour": "#4A4541", "BgColour": "#36312c", "Size": -1 }, { @@ -76449,16 +75721,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -76481,6 +75753,190 @@ "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -76553,182 +76009,222 @@ "Colour": "#768390", "BgColour": "#22272e", "Size": -1 + }] + }, { + "Name": "scss", + "Theme": "Gruvbox Material Dark", + "Flags": 5, + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#22272e", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#22272e", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#22272e", - "BgColour": "#22272e", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#928374", + "BgColour": "#292828", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 10, + "Name": "ID", "Flags": 0, "FontDesc": "", - "Colour": "#539bf5", - "BgColour": "#22272e", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", - "Colour": "#909396", - "BgColour": "#22272e", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#7daea3", + "BgColour": "#292828", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 13, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#768390", - "BgColour": "#22272e", + "Colour": "#d8a657", + "BgColour": "#292828", "Size": -1 - }] - }, { - "Name": "text", - "Theme": "Gruvbox Material Dark", - "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 14, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 16, + "Name": "Attribute", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "#292828", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", - "BgColour": "#3E3D3D", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 19, + "Name": "Extended Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 22, + "Name": "Media", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 23, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#7c6f64", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { @@ -76760,8 +76256,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#3E3D3D", + "BgColour": "#3E3D3D", "Size": -1 }, { "Id": -2, @@ -76784,7 +76280,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#949393", + "Colour": "#3E3D3D", "BgColour": "#292828", "Size": -1 }, { @@ -76805,16 +76301,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Gruvbox", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -76838,77 +76334,189 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#383838", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", - "BgColour": "#4B4B4B", + "Colour": "#fa5c4b", + "BgColour": "#383838", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#383838", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -76938,8 +76546,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#4B4B4B", + "BgColour": "#4B4B4B", "Size": -1 }, { "Id": -2, @@ -76962,7 +76570,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#9B9B9B", + "Colour": "#4B4B4B", "BgColour": "#383838", "Size": -1 }, { @@ -76983,16 +76591,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -77016,75 +76624,187 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#080a0c", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#202224", - "BgColour": "#202224", + "Colour": "#267fb5", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#202224", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#313d49", + "Colour": "#324357", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { @@ -77116,8 +76836,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#202224", + "BgColour": "#202224", "Size": -1 }, { "Id": -2, @@ -77140,7 +76860,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#838485", + "Colour": "#202224", "BgColour": "#080a0c", "Size": -1 }, { @@ -77161,16 +76881,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Legacy-light", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -77190,79 +76910,191 @@ "Name": "Default", "Flags": 0, "FontDesc": "", + "Colour": "#6D6D6D", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#267fb5", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#267fb5", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "BLACK", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#222222", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", - "Colour": "#cccccc", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { @@ -77294,8 +77126,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, @@ -77318,7 +77150,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#7F7F7F", + "Colour": "#F2F2F2", "BgColour": "#ffffff", "Size": -1 }, { @@ -77339,16 +77171,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Legacy", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -77371,6 +77203,190 @@ "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -77443,182 +77459,222 @@ "Colour": "#495b71", "BgColour": "#212933", "Size": -1 + }] + }, { + "Name": "scss", + "Theme": "Solarized+", + "Flags": 5, + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#212933", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "red", - "BgColour": "#212933", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 2, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 4, + "Name": "Unknown Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 5, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "WHITE", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#212933", - "BgColour": "#212933", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#5b858b", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 10, + "Name": "ID", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#212933", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", - "Colour": "#909499", - "BgColour": "#212933", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 12, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#859900", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 13, + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#495b71", - "BgColour": "#212933", + "Colour": "#CB4B16", + "BgColour": "#002B36", "Size": -1 - }] - }, { - "Name": "text", - "Theme": "Solarized+", - "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 14, + "Name": "Double String", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 16, + "Name": "Attribute", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 17, + "Name": "Identifier 3", "Flags": 0, "FontDesc": "", - "Colour": "#002B36", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 18, + "Name": "Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#19404A", - "BgColour": "#19404A", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 19, + "Name": "Extended Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#85efff", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", - "Colour": "#19404A", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 22, + "Name": "Media", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 23, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#4e6b6e", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { @@ -77650,8 +77706,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#19404A", + "BgColour": "#19404A", "Size": -1 }, { "Id": -2, @@ -77674,7 +77730,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#7F959A", + "Colour": "#19404A", "BgColour": "#002B36", "Size": -1 }, { @@ -77695,16 +77751,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Tango Dark", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -77728,77 +77784,189 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#2e3434", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#424848", - "BgColour": "#424848", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 7, + "Name": "Unknown Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#424848", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 9, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#888A85", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -77828,8 +77996,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#424848", + "BgColour": "#424848", "Size": -1 }, { "Id": -2, @@ -77852,7 +78020,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#969999", + "Colour": "#424848", "BgColour": "#2e3434", "Size": -1 }, { @@ -77873,16 +78041,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Tokyo Light", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -77902,81 +78070,193 @@ "Name": "Default", "Flags": 0, "FontDesc": "", + "Colour": "#6D6D6D", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 1, + "Name": "Tag", + "Flags": 0, + "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "#0094f0", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 3, + "Name": "Pseudo Class", + "Flags": 0, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "#0094f0", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#faf1dc", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", - "BgColour": "#EDE4D1", + "Colour": "BLACK", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#f49725", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -78006,8 +78286,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#EDE4D1", + "BgColour": "#EDE4D1", "Size": -1 }, { "Id": -2, @@ -78030,7 +78310,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#7D786E", + "Colour": "#EDE4D1", "BgColour": "#faf1dc", "Size": -1 }, { @@ -78051,16 +78331,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Tokyo Night", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -78084,77 +78364,189 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#24283b", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", - "BgColour": "#393D4E", + "Colour": "#ff9e64", + "BgColour": "#24283b", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#24283b", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -78184,8 +78576,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#393D4E", + "BgColour": "#393D4E", "Size": -1 }, { "Id": -2, @@ -78208,7 +78600,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#91939D", + "Colour": "#393D4E", "BgColour": "#24283b", "Size": -1 }, { @@ -78229,16 +78621,16 @@ "Size": -1 }] }, { - "Name": "text", + "Name": "scss", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 1, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "", + "Id": 38, + "KeyWords0": "aqua auto background background-attachment background-color background-image background-position background-repeat baseline black blink block blue bold bolder border border-bottom border-bottom-width border-color border-left border-left-width border-right border-right-width border-style border-top border-top-width border-width both bottom capitalize center circle clear color dashed decimal disc display dotted double fixed float font font-family font-size font-style font-variant font-weight fuchsia gray green groove height inline inset inside italic justify large larger left letter-spacing lighter lime line-height line-through list-item list-style list-style-image list-style-position list-style-type lower-alpha lower-roman lowercase margin margin-bottom margin-left margin-right margin-top maroon medium medium middle navy no-repeat no-wrap none normal oblique olive outset outside overline padding padding-bottom padding-left padding-right padding-top pre purple red repeat repeat-x repeat-y ridge right scroll silver small small-caps smaller solid square sub super tealwhite text-align text-bottom text-decoration text-indent text-top text-transform thick thin top transparent underline upper-alpha upper-roman uppercase vertical-align white-space width word-spacing x-large x-small xx-large xx-small yellow", + "KeyWords1": "active checked default disabled empty enabled first first-child first-of-type focus hover indeterminate invalid lang last-child last-of-type left link not nth-child nth-last-child nth-last-of-type nth-of-type only-child only-of-type optional required right root target valid visited", + "KeyWords2": "ActiveBorder ActiveCaption AppWorkspace Background ButtonFace ButtonHighlight ButtonShadow ButtonText CaptionText GrayText Highlight HighlightText InactiveBorder InactiveCaption InactiveCaptionText InfoBackground InfoText Menu MenuText Scrollbar ThreeDDarkShadow ThreeDFace ThreeDHighlight ThreeDLightShadow ThreeDShadow Window WindowFrame WindowText above absolute always armenian ascent avoid azimuth baseline bbox behind below bidi-override border-bottom-color border-bottom-style border-collapse border-color border-left-color border-left-style border-right-color border-right-style border-spacing border-style border-top-color border-top-style bottom cap-height caption caption-side center-left center-right centerline child cjk-ideographic clip close-quote code collapse compact condensed content continuous counter-increment counter-reset crop cross crosshair cue cue-after cue-before cursor decimal-leading-zero default definition-src descent digits direction e-resize elevation embed empty-cells expanded extra-condensed extra-expanded far-left far-right fast faster female fixed font-size-adjust font-stretch georgian hebrew help hidden hide high higher hiragana hiragana-iroha icon inherit inline-table katakana katakana-iroha landscape left left-side leftwards level loud low lower lower-greek lower-latin ltr male marker marker-offset marks mathline max-height max-width medium medium menu message-box min-height min-width mix move n-resize narrower ne-resize no-close-quote no-open-quote nw-resize once open-quote orphans outline outline-color outline-style outline-width overflow page page-break-after page-break-before page-break-inside panose-1 pause pause-after pause-before pitch pitch-range play-during pointer portrait position quotes relative richness right right-side rightwards rtl run-in s-resize scroll se-resize semi-condensed semi-expanded separate show silent size slope slow slower small-caption soft speak speak-header speak-numeral speak-punctuation speech-rate spell-out src static status-bar stemh stemv stress sw-resize table table-caption table-cell table-column table-column-group table-footer-group table-header-group table-layout table-row table-row-group text text-shadow top topline ultra-condensed ultra-expanded unicode-bidi unicode-range units-per-em upper-latin visibility visible voice-family volume w-resize wait wider widows widths x-fast x-height x-high x-loud x-low x-slow x-soft z-index", + "KeyWords3": "background-size border-bottom-left-radius border-bottom-right-radius border-radius border-top-left-radius border-top-right-radius box-shadow column-count column-gap column-rule column-rule-color column-rule-style column-rule-width column-width columns opacity resize word-wrap", + "KeyWords4": "after before first-letter first-line selection", + "Extensions": "*.scss", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -78262,77 +78654,189 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, + "Id": 1, + "Name": "Tag", + "Flags": 0, "FontDesc": "", - "Colour": "yellow", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, + "Id": 2, + "Name": "Class", + "Flags": 0, "FontDesc": "", - "Colour": "red", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 3, + "Name": "Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#343d46", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", + "Id": 4, + "Name": "Unknown Pseudo Class", "Flags": 0, "FontDesc": "", - "Colour": "#485058", - "BgColour": "#485058", + "Colour": "#fac761", + "BgColour": "#343d46", "Size": -1 }, { - "Id": -2, - "Name": "Text Selection", + "Id": 5, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "WHITE", + "BgColour": "#343d46", "Size": -1 }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 7, + "Name": "Unknown Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 8, + "Name": "Value", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 9, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#485058", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 10, + "Name": "ID", + "Flags": 0, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 11, + "Name": "Important", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 12, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 13, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#acd1a8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 14, + "Name": "Double String", + "Flags": 0, + "FontDesc": "", + "Colour": "#acd1a8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 15, + "Name": "Identifier 2", + "Flags": 0, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 16, + "Name": "Attribute", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 17, + "Name": "Identifier 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 18, + "Name": "Pseudo Element", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 19, + "Name": "Extended Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 20, + "Name": "Extended Pseudo Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 21, + "Name": "Extended Pseudo Element", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 + }, { + "Id": 22, + "Name": "Media", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 23, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -78362,8 +78866,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#485058", + "BgColour": "#485058", "Size": -1 }, { "Id": -2, @@ -78386,7 +78890,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#999EA2", + "Colour": "#485058", "BgColour": "#343d46", "Size": -1 }, { @@ -78407,28 +78911,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -78441,7 +78945,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -78449,31 +78953,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#C678DD", @@ -78481,34 +78985,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#56AFD7", "BgColour": "#282C34", "Size": -1 }, { @@ -78529,66 +79033,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#56AFD7", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#FF8BFF", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { @@ -78665,28 +79169,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Atom One Light", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -78699,7 +79203,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -78707,31 +79211,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#A626A4", @@ -78739,34 +79243,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#4078F2", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -78787,66 +79291,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#4078F2", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -78923,28 +79427,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Xcode inspired", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -78957,7 +79461,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -78965,31 +79469,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#B309A1", @@ -78997,31 +79501,31 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -79045,66 +79549,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#05314D", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#05314D", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -79181,28 +79685,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -79215,7 +79719,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -79223,31 +79727,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#7F0055", @@ -79255,34 +79759,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#000099", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -79303,66 +79807,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#7F9FBF", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#7F9FBF", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#000099", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#7CA5D5", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -79439,28 +79943,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -79473,7 +79977,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -79481,31 +79985,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#DFC47D", @@ -79513,34 +80017,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#F2F2DF", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -79561,66 +80065,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#A893CC", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#A893CC", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2DF", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#659F65", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -79697,28 +80201,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -79731,39 +80235,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#CC7832", @@ -79771,34 +80275,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC66D", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -79819,66 +80323,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#84B977", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#84B977", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#FFC66D", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#CCDF32", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -79955,28 +80459,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Emacsen", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -79989,7 +80493,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -79997,31 +80501,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#678CB1", @@ -80029,34 +80533,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#2AA198", "BgColour": "#234059", "Size": -1 }, { @@ -80077,66 +80581,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#DC322F", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#DC322F", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#D33682", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { @@ -80213,28 +80717,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -80247,7 +80751,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -80255,31 +80759,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -80287,34 +80791,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#BED6FF", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -80335,66 +80839,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#CCDF32", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -80471,28 +80975,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -80505,7 +81009,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -80513,31 +81017,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -80545,34 +81049,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#BED6FF", "BgColour": "#2e3436", "Size": -1 }, { @@ -80593,66 +81097,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#CCDF32", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { @@ -80729,28 +81233,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "BlueHippo", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -80763,7 +81267,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", @@ -80771,31 +81275,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#1E90FF", @@ -80803,34 +81307,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#20B2AA", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -80851,66 +81355,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#FF7F50", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#FF7F50", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#20B2AA", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#FF1493", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -80987,28 +81491,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "My vim dark", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -81021,7 +81525,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -81029,23 +81533,23 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", @@ -81053,7 +81557,7 @@ "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FFFF00", @@ -81061,31 +81565,31 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", @@ -81109,66 +81613,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { @@ -81245,28 +81749,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Oblivion", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -81279,7 +81783,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -81287,31 +81791,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -81319,34 +81823,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#BED6FF", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -81367,66 +81871,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#CCDF32", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -81503,28 +82007,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "RecognEyes", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -81537,7 +82041,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -81545,31 +82049,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#00D0D0", @@ -81577,34 +82081,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#BED6FF", "BgColour": "#101020", "Size": -1 }, { @@ -81625,66 +82129,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { @@ -81761,28 +82265,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Roboticket", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -81795,7 +82299,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -81803,31 +82307,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#295F94", @@ -81835,34 +82339,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#B05A65", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -81883,66 +82387,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#566874", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#566874", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#B05A65", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -82019,28 +82523,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -82053,7 +82557,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -82061,31 +82565,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FF007F", @@ -82093,34 +82597,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#A7EC21", "BgColour": "#272822", "Size": -1 }, { @@ -82141,66 +82645,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#A7EC21", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { @@ -82277,28 +82781,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -82311,7 +82815,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -82319,31 +82823,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#B294BB", @@ -82351,34 +82855,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#81A2BE", "BgColour": "#1D1F21", "Size": -1 }, { @@ -82399,66 +82903,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#CED1CF", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#CED1CF", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#81A2BE", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { @@ -82535,28 +83039,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Vim Desert", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -82569,7 +83073,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -82577,31 +83081,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#F6E06B", @@ -82609,31 +83113,31 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -82657,66 +83161,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { @@ -82793,28 +83297,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -82827,7 +83331,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -82835,31 +83339,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#3070A0", @@ -82867,34 +83371,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#BED6FF", "BgColour": "#151515", "Size": -1 }, { @@ -82915,66 +83419,66 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { @@ -83051,28 +83555,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "One Dark Pro", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -83085,7 +83589,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -83093,31 +83597,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", @@ -83125,34 +83629,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#61afef", "BgColour": "#282c34", "Size": -1 }, { @@ -83173,31 +83677,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", @@ -83205,34 +83709,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#61afef", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#98c379", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { @@ -83309,28 +83813,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -83343,7 +83847,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -83351,31 +83855,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", @@ -83383,34 +83887,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#68c244", "BgColour": "#000000", "Size": -1 }, { @@ -83431,31 +83935,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", @@ -83463,34 +83967,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#f2d42c", + "BgColour": "#000000", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { @@ -83567,28 +84071,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Darkside-light", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -83601,7 +84105,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -83609,31 +84113,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#c1721d", @@ -83641,34 +84145,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -83689,31 +84193,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#15a2c1", @@ -83721,34 +84225,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -83825,28 +84329,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Darkside", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -83859,7 +84363,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -83867,31 +84371,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", @@ -83899,34 +84403,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#68c244", "BgColour": "#222324", "Size": -1 }, { @@ -83947,31 +84451,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", @@ -83979,34 +84483,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#f2d42c", + "BgColour": "#222324", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { @@ -84083,28 +84587,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -84117,7 +84621,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -84125,23 +84629,23 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -84149,7 +84653,7 @@ "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#db784d", @@ -84157,34 +84661,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#60a365", "BgColour": "#12100f", "Size": -1 }, { @@ -84205,31 +84709,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", @@ -84237,34 +84741,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#f8bb39", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { @@ -84341,28 +84845,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Earthsong-light", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -84375,7 +84879,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -84383,23 +84887,23 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -84407,7 +84911,7 @@ "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#db784d", @@ -84415,34 +84919,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#60a365", "BgColour": "#ffffff", "Size": -1 }, { @@ -84463,31 +84967,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", @@ -84495,34 +84999,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#f8bb39", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { @@ -84599,28 +85103,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Earthsong", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -84633,7 +85137,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -84641,23 +85145,23 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -84665,7 +85169,7 @@ "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#db784d", @@ -84673,34 +85177,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#60a365", "BgColour": "#36312c", "Size": -1 }, { @@ -84721,31 +85225,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", @@ -84753,34 +85257,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#f8bb39", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { @@ -84857,28 +85361,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -84891,7 +85395,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -84899,31 +85403,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#EA6962", @@ -84931,34 +85435,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#A9B665", "BgColour": "#22272e", "Size": -1 }, { @@ -84979,31 +85483,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#7DAEA3", @@ -85011,34 +85515,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#A9B665", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#D8A657", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { @@ -85115,28 +85619,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -85149,7 +85653,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -85157,31 +85661,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#ea6962", @@ -85189,34 +85693,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#a9b665", "BgColour": "#292828", "Size": -1 }, { @@ -85237,31 +85741,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#7daea3", @@ -85269,34 +85773,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#a9b665", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#d8a657", + "BgColour": "#292828", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { @@ -85373,28 +85877,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Gruvbox", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -85407,7 +85911,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -85415,31 +85919,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#fe8019", @@ -85447,34 +85951,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { @@ -85495,31 +85999,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#fa5c4b", @@ -85527,34 +86031,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#b8bb26", + "BgColour": "#383838", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { @@ -85631,28 +86135,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -85665,7 +86169,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -85673,31 +86177,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", @@ -85705,34 +86209,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ffb20d", "BgColour": "#080a0c", "Size": -1 }, { @@ -85753,31 +86257,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", @@ -85785,34 +86289,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#ff410d", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { @@ -85889,28 +86393,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Legacy-light", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -85923,7 +86427,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -85931,31 +86435,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", @@ -85963,34 +86467,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ffb20d", "BgColour": "#ffffff", "Size": -1 }, { @@ -86011,31 +86515,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", @@ -86043,34 +86547,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#ff410d", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { @@ -86147,28 +86651,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Legacy", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -86181,7 +86685,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -86189,31 +86693,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", @@ -86221,34 +86725,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ffb20d", "BgColour": "#212933", "Size": -1 }, { @@ -86269,31 +86773,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", @@ -86301,34 +86805,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#ff410d", + "BgColour": "#212933", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { @@ -86405,28 +86909,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Solarized+", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -86439,7 +86943,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -86447,31 +86951,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#859900", @@ -86479,34 +86983,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#2AA198", "BgColour": "#002B36", "Size": -1 }, { @@ -86527,31 +87031,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#859900", @@ -86559,34 +87063,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#CB4B16", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { @@ -86663,28 +87167,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Tango Dark", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -86697,7 +87201,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -86705,31 +87209,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", @@ -86737,34 +87241,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#EED247", "BgColour": "#2e3434", "Size": -1 }, { @@ -86785,31 +87289,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", @@ -86817,34 +87321,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#EED247", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { @@ -86921,28 +87425,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Tokyo Light", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -86955,39 +87459,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#ff5792", @@ -86995,34 +87499,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#e64100", "BgColour": "#faf1dc", "Size": -1 }, { @@ -87043,31 +87547,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#0094f0", @@ -87075,34 +87579,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#e64100", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#00b368", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { @@ -87179,28 +87683,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Tokyo Night", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -87213,7 +87717,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -87221,31 +87725,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#f7768e", @@ -87253,23 +87757,23 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#ff9e64", @@ -87277,10 +87781,10 @@ "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#7aa2f7", "BgColour": "#24283b", "Size": -1 }, { @@ -87301,31 +87805,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#ff9e64", @@ -87333,34 +87837,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#7aa2f7", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#C7C7C7", - "BgColour": "#151515", + "Colour": "#9ece6a", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { @@ -87437,28 +87941,28 @@ "Size": -1 }] }, { - "Name": "java", + "Name": "cobraalt", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 3, - "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", - "KeyWords1": "", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "Id": 2, + "KeyWords0": "adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend false finally float for from get has if ignore implements implies import in inherits inlined int interface invariant is listen lock mixin must namespace new nil not number objc of old or pass passthrough post print pro raise ref require return same set sig stop struct success test this throw to trace true try uint use using var where while yield", + "KeyWords1": "abstract fake inout internal nonvirtual out override partial private protected public shared vari virtual", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.java", - "SubstyleBase": 11, + "Extensions": "*.cobra-A", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": 1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -87471,7 +87975,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -87479,31 +87983,31 @@ "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "Javadoc block comment", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Number", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "Java keyword", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#d8b6d8", @@ -87511,34 +88015,34 @@ "Size": -1 }, { "Id": 6, - "Name": "String", + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Character", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 8, - "Name": "Uuid", + "Name": "Class Name", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 9, - "Name": "Preprocessor", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#85add6", "BgColour": "#343d46", "Size": -1 }, { @@ -87559,31 +88063,31 @@ "Size": -1 }, { "Id": 12, - "Name": "Open String", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc line comment", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 14, + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 15, + "Name": "Decorator", "Flags": 0, "FontDesc": "", "Colour": "#fac761", @@ -87591,34 +88095,34 @@ "Size": -1 }, { "Id": 16, - "Name": "Methods", + "Name": "F-string", "Flags": 0, "FontDesc": "", - "Colour": "#85add6", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 19, - "Name": "Classes", + "Id": 17, + "Name": "F-character", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 26, - "Name": "Task Markers", + "Id": 18, + "Name": "F-triple", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 2, - "Name": "Variable", - "Flags": 16, + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { @@ -87695,16 +88199,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -87728,171 +88232,75 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#7D8C93", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#7D8C93", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#7D8C93", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFCD22", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#F35151", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7D8C93", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "yellow", "BgColour": "#282C34", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "red", "BgColour": "#282C34", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#282C34", "BgColour": "#282C34", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", + "Colour": "#3D4148", + "BgColour": "#3D4148", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "YELLOW", "BgColour": "#282C34", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#3D4148", "BgColour": "#282C34", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#81969A", "BgColour": "#282C34", "Size": -1 }, { @@ -87924,8 +88332,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#3D4148", + "Colour": "#E0E2E4", + "BgColour": "#282C34", "Size": -1 }, { "Id": -2, @@ -87948,7 +88356,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", + "Colour": "#939599", "BgColour": "#282C34", "Size": -1 }, { @@ -87969,16 +88377,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Atom One Light", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -87998,175 +88406,79 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#986801", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#A626A4", - "BgColour": "#FFFFFF", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#FFFFFF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "BLACK", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#F2F2F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#999999", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -88198,8 +88510,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -2, @@ -88222,7 +88534,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#7F7F7F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -88243,16 +88555,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Xcode inspired", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -88272,175 +88584,79 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#340DD4", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#B309A1", - "BgColour": "#FFFFFF", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#05314D", + "Colour": "#FFFFFF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#05314D", - "BgColour": "#FFFFFF", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "BLACK", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#F2F2F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#999999", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -88472,8 +88688,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -2, @@ -88496,7 +88712,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#7F7F7F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -88517,16 +88733,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -88546,175 +88762,79 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF0000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF5809", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#7F0055", - "BgColour": "#FFFFFF", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#7F9FBF", + "Colour": "#FFFFFF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#7F9FBF", - "BgColour": "#FFFFFF", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "BLACK", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#F2F2F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#D8D8D8", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -88746,8 +88866,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -2, @@ -88770,7 +88890,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#7F7F7F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -88791,16 +88911,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -88824,171 +88944,75 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#EDDD3D", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "yellow", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "red", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#A893CC", + "Colour": "#3F3F3F", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#A893CC", - "BgColour": "#3F3F3F", + "Colour": "#525252", + "BgColour": "#525252", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "YELLOW", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#525252", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#8A8A8A", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -89020,8 +89044,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#525252", - "BgColour": "#525252", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { "Id": -2, @@ -89044,7 +89068,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#525252", + "Colour": "#9F9F9F", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -89065,16 +89089,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -89098,171 +89122,75 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#6897BB", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#808080", + "Colour": "yellow", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "red", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#84B977", + "Colour": "#2B2B2B", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#84B977", - "BgColour": "#2B2B2B", + "Colour": "#404040", + "BgColour": "#404040", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "YELLOW", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#404040", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#D0D0D0", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -89294,8 +89222,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#404040", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": -2, @@ -89318,7 +89246,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#404040", + "Colour": "#959595", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -89339,16 +89267,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Emacsen", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -89372,171 +89300,75 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#C59910", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#586E75", + "Colour": "yellow", "BgColour": "#234059", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "red", "BgColour": "#234059", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#DC322F", + "Colour": "#234059", "BgColour": "#234059", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#DC322F", - "BgColour": "#234059", + "Colour": "#395369", + "BgColour": "#395369", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "YELLOW", "BgColour": "#234059", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#395369", "BgColour": "#234059", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#758B8B", "BgColour": "#234059", "Size": -1 }, { @@ -89568,8 +89400,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#395369", - "BgColour": "#395369", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { "Id": -2, @@ -89592,7 +89424,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#395369", + "Colour": "#919FAC", "BgColour": "#234059", "Size": -1 }, { @@ -89613,16 +89445,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -89646,171 +89478,75 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "yellow", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "red", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#2F4F4F", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#2F4F4F", + "Colour": "#436060", + "BgColour": "#436060", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "YELLOW", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#436060", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D0D0D0", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -89842,8 +89578,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#436060", - "BgColour": "#436060", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { "Id": -2, @@ -89866,7 +89602,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#436060", + "Colour": "#97A7A7", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -89887,16 +89623,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -89920,171 +89656,75 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#ce5c00", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#888a85", + "Colour": "yellow", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "red", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#2e3436", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", + "Colour": "#42484A", + "BgColour": "#42484A", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "YELLOW", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#42484A", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#555753", "BgColour": "#2e3436", "Size": -1 }, { @@ -90116,8 +89756,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#42484A", - "BgColour": "#42484A", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { "Id": -2, @@ -90140,7 +89780,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#42484A", + "Colour": "#96999A", "BgColour": "#2e3436", "Size": -1 }, { @@ -90161,16 +89801,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "BlueHippo", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -90190,175 +89830,79 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#008080", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#1E90FF", - "BgColour": "#FFFFFF", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#FF7F50", + "Colour": "#FFFFFF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#FF7F50", - "BgColour": "#FFFFFF", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "BLACK", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#F2F2F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#708090", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -90390,8 +89934,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -2, @@ -90414,7 +89958,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#7F7F7F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -90435,16 +89979,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "My vim dark", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -90468,173 +90012,77 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "yellow", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "red", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#000000", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#191919", + "BgColour": "#191919", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "YELLOW", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#191919", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -90664,8 +90112,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#191919", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 }, { "Id": -2, @@ -90688,7 +90136,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#191919", + "Colour": "#7F7F7F", "BgColour": "#000000", "Size": -1 }, { @@ -90709,16 +90157,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Oblivion", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -90742,171 +90190,75 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#7FB347", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "yellow", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "red", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#1E1E1E", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#1E1E1E", + "Colour": "#343434", + "BgColour": "#343434", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "YELLOW", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#343434", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D0D0D0", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -90938,8 +90290,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#343434", - "BgColour": "#343434", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": -2, @@ -90962,7 +90314,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#343434", + "Colour": "#8E8E8E", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -90983,16 +90335,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "RecognEyes", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -91016,171 +90368,75 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#00E000", + "Colour": "yellow", "BgColour": "#101020", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "red", "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#101020", "BgColour": "#101020", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", - "BgColour": "#101020", + "Colour": "#272736", + "BgColour": "#272736", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "YELLOW", "BgColour": "#101020", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#272736", "BgColour": "#101020", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#2B91AF", "BgColour": "#101020", "Size": -1 }, { @@ -91212,8 +90468,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#272736", - "BgColour": "#272736", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": -2, @@ -91236,7 +90492,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#272736", + "Colour": "#87878F", "BgColour": "#101020", "Size": -1 }, { @@ -91257,16 +90513,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Roboticket", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -91286,175 +90542,79 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#AF0F91", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#295F94", - "BgColour": "#F5F5F5", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#566874", + "Colour": "#F5F5F5", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#566874", - "BgColour": "#F5F5F5", + "Colour": "#E8E8E8", + "BgColour": "#E8E8E8", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "BLACK", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#E8E8E8", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AFBFCF", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -91486,8 +90646,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", - "BgColour": "#E8E8E8", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": -2, @@ -91510,7 +90670,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", + "Colour": "#7A7A7A", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -91531,16 +90691,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -91564,171 +90724,75 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#C48CFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "yellow", "BgColour": "#272822", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "red", "BgColour": "#272822", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#272822", "BgColour": "#272822", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#3C3D38", + "BgColour": "#3C3D38", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "YELLOW", "BgColour": "#272822", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#3C3D38", "BgColour": "#272822", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#999999", "BgColour": "#272822", "Size": -1 }, { @@ -91760,8 +90824,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", - "BgColour": "#3C3D38", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": -2, @@ -91784,7 +90848,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", + "Colour": "#939390", "BgColour": "#272822", "Size": -1 }, { @@ -91805,16 +90869,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -91838,173 +90902,77 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#DE935F", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#969896", + "Colour": "yellow", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#969896", + "Colour": "red", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#1D1F21", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#CED1CF", - "BgColour": "#1D1F21", + "Colour": "#333537", + "BgColour": "#333537", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#CED1CF", - "BgColour": "#1D1F21", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "YELLOW", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#333537", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -92034,8 +91002,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#333537", - "BgColour": "#333537", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": -2, @@ -92058,7 +91026,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#333537", + "Colour": "#8E8F90", "BgColour": "#1D1F21", "Size": -1 }, { @@ -92079,16 +91047,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Vim Desert", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -92112,171 +91080,75 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#C64947", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "yellow", "BgColour": "#262626", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "red", "BgColour": "#262626", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", + "Colour": "#262626", "BgColour": "#262626", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", - "BgColour": "#262626", + "Colour": "#3B3B3B", + "BgColour": "#3B3B3B", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "YELLOW", "BgColour": "#262626", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#3B3B3B", "BgColour": "#262626", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#FFFE00", "BgColour": "#262626", "Size": -1 }, { @@ -92308,8 +91180,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", - "BgColour": "#3B3B3B", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { "Id": -2, @@ -92332,7 +91204,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", + "Colour": "#929292", "BgColour": "#262626", "Size": -1 }, { @@ -92353,16 +91225,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -92386,171 +91258,75 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#CF6A4C", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#888888", + "Colour": "yellow", "BgColour": "#151515", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "red", "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#151515", "BgColour": "#151515", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", + "Colour": "#2C2C2C", + "BgColour": "#2C2C2C", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "YELLOW", "BgColour": "#151515", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#2C2C2C", "BgColour": "#151515", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#605958", "BgColour": "#151515", "Size": -1 }, { @@ -92582,8 +91358,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", - "BgColour": "#2C2C2C", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { "Id": -2, @@ -92606,7 +91382,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", + "Colour": "#8A8A8A", "BgColour": "#151515", "Size": -1 }, { @@ -92627,16 +91403,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "One Dark Pro", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -92660,171 +91436,75 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#d19a66", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "yellow", "BgColour": "#282c34", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "red", "BgColour": "#282c34", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#282c34", "BgColour": "#282c34", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", + "Colour": "#3D4148", + "BgColour": "#3D4148", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#528bff", + "BgColour": "#ffffffc9", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#3D4148", "BgColour": "#282c34", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#495162", "BgColour": "#282c34", "Size": -1 }, { @@ -92856,8 +91536,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#3D4148", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { "Id": -2, @@ -92880,7 +91560,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", + "Colour": "#939599", "BgColour": "#282c34", "Size": -1 }, { @@ -92901,16 +91581,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -92934,171 +91614,75 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "yellow", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "red", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#000000", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", + "Colour": "#191919", + "BgColour": "#191919", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f8f8f0", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#191919", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#333333", "BgColour": "#000000", "Size": -1 }, { @@ -93130,8 +91714,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#191919", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": -2, @@ -93154,7 +91738,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#191919", + "Colour": "#7F7F7F", "BgColour": "#000000", "Size": -1 }, { @@ -93175,16 +91759,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Darkside-light", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -93204,175 +91788,79 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#7b5baf", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#c1721d", - "BgColour": "#e0e0e0", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#e0e0e0", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", + "Colour": "#D4D4D4", + "BgColour": "#D4D4D4", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#222222", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#D4D4D4", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#adadad", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -93404,8 +91892,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D4D4D4", - "BgColour": "#D4D4D4", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": -2, @@ -93428,7 +91916,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#D4D4D4", + "Colour": "#707070", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -93449,16 +91937,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Darkside", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -93482,171 +91970,75 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#8e69c9", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "yellow", "BgColour": "#222324", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "red", "BgColour": "#222324", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#222324", "BgColour": "#222324", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", + "Colour": "#383939", + "BgColour": "#383939", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f8f8f0", "BgColour": "#222324", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#383939", "BgColour": "#222324", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#545658", "BgColour": "#222324", "Size": -1 }, { @@ -93678,8 +92070,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#383939", - "BgColour": "#383939", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": -2, @@ -93702,7 +92094,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#383939", + "Colour": "#909191", "BgColour": "#222324", "Size": -1 }, { @@ -93723,16 +92115,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -93756,171 +92148,75 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "yellow", "BgColour": "#12100f", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#db784d", + "Colour": "red", "BgColour": "#12100f", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#12100f", "BgColour": "#12100f", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", + "Colour": "#292727", + "BgColour": "#292727", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8f8f0", "BgColour": "#12100f", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#292727", "BgColour": "#12100f", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4a413d", "BgColour": "#12100f", "Size": -1 }, { @@ -93952,8 +92248,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#292727", - "BgColour": "#292727", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { "Id": -2, @@ -93976,7 +92272,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#292727", + "Colour": "#888787", "BgColour": "#12100f", "Size": -1 }, { @@ -93997,16 +92293,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Earthsong-light", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -94026,175 +92322,79 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#ffffff", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ffffff", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#111111", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#F2F2F2", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#cccccc", "BgColour": "#ffffff", "Size": -1 }, { @@ -94226,8 +92426,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -2, @@ -94250,7 +92450,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#7F7F7F", "BgColour": "#ffffff", "Size": -1 }, { @@ -94271,16 +92471,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Earthsong", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -94304,171 +92504,75 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "yellow", "BgColour": "#36312c", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#db784d", + "Colour": "red", "BgColour": "#36312c", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#36312c", "BgColour": "#36312c", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", + "Colour": "#4A4541", + "BgColour": "#4A4541", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8f8f0", "BgColour": "#36312c", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#4A4541", "BgColour": "#36312c", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#6e645a", "BgColour": "#36312c", "Size": -1 }, { @@ -94500,8 +92604,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", - "BgColour": "#4A4541", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { "Id": -2, @@ -94524,7 +92628,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", + "Colour": "#9A9895", "BgColour": "#36312c", "Size": -1 }, { @@ -94545,16 +92649,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -94577,174 +92681,6 @@ "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#D3869B", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, - "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 17, - "Name": "Comment doc keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 18, - "Name": "Comment doc keyword error", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "User 1", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "User 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "User 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 19, - "Name": "User 4", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -94817,206 +92753,182 @@ "Colour": "#768390", "BgColour": "#22272e", "Size": -1 - }] - }, { - "Name": "sql", - "Theme": "Gruvbox Material Dark", - "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", - "Size": -1 }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", + "Colour": "yellow", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 4, - "Name": "Number", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#d3869b", - "BgColour": "#292828", + "Colour": "red", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 5, - "Name": "Word", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#22272e", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 8, - "Name": "SQL Plus", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#539bf5", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 9, - "Name": "SQL Plus prompt", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#909396", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 11, - "Name": "Identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#768390", + "BgColour": "#22272e", "Size": -1 + }] + }, { + "Name": "text", + "Theme": "Gruvbox Material Dark", + "Flags": 5, + "Id": 1, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 13, - "Name": "SQL Plus comment", + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#928374", + "Colour": "yellow", "BgColour": "#292828", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "red", "BgColour": "#292828", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#292828", "BgColour": "#292828", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", + "Colour": "#3E3D3D", + "BgColour": "#3E3D3D", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#3E3D3D", "BgColour": "#292828", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#7c6f64", "BgColour": "#292828", "Size": -1 }, { @@ -95048,8 +92960,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", - "BgColour": "#3E3D3D", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": -2, @@ -95072,7 +92984,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", + "Colour": "#949393", "BgColour": "#292828", "Size": -1 }, { @@ -95093,16 +93005,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Gruvbox", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -95126,173 +93038,77 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#928374", + "Colour": "yellow", "BgColour": "#383838", "Size": -1 }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#928374", + "Colour": "red", "BgColour": "#383838", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#383838", "BgColour": "#383838", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", + "Colour": "#4B4B4B", + "BgColour": "#4B4B4B", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#4B4B4B", "BgColour": "#383838", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -95322,8 +93138,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", - "BgColour": "#4B4B4B", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": -2, @@ -95346,7 +93162,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", + "Colour": "#9B9B9B", "BgColour": "#383838", "Size": -1 }, { @@ -95367,16 +93183,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -95400,171 +93216,75 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#324357", + "Colour": "yellow", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "red", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#080a0c", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", + "Colour": "#202224", + "BgColour": "#202224", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#f8f8f0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#202224", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#313d49", "BgColour": "#080a0c", "Size": -1 }, { @@ -95596,8 +93316,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#202224", - "BgColour": "#202224", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { "Id": -2, @@ -95620,7 +93340,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#202224", + "Colour": "#838485", "BgColour": "#080a0c", "Size": -1 }, { @@ -95641,16 +93361,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Legacy-light", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -95670,175 +93390,79 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#ffffff", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ffffff", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#222222", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#F2F2F2", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#cccccc", "BgColour": "#ffffff", "Size": -1 }, { @@ -95870,8 +93494,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -2, @@ -95894,7 +93518,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", + "Colour": "#7F7F7F", "BgColour": "#ffffff", "Size": -1 }, { @@ -95915,16 +93539,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Legacy", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -95948,171 +93572,75 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#c7f026", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#425972", + "Colour": "yellow", "BgColour": "#212933", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "red", "BgColour": "#212933", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#212933", "BgColour": "#212933", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", + "Colour": "#373E47", + "BgColour": "#373E47", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#f8f8f0", "BgColour": "#212933", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#373E47", "BgColour": "#212933", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 23, - "Name": "Quoted identifier", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#495b71", "BgColour": "#212933", "Size": -1 }, { @@ -96144,8 +93672,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#373E47", - "BgColour": "#373E47", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { "Id": -2, @@ -96168,7 +93696,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#373E47", + "Colour": "#909499", "BgColour": "#212933", "Size": -1 }, { @@ -96189,16 +93717,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Solarized+", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -96221,174 +93749,6 @@ "Colour": "#839496", "BgColour": "#002B36", "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#268BD2", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 16, - "Name": "Word (Set 2)", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 17, - "Name": "Comment doc keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 18, - "Name": "Comment doc keyword error", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 19, - "Name": "User 1", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 19, - "Name": "User 2", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 19, - "Name": "User 3", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 19, - "Name": "User 4", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -96461,208 +93821,184 @@ "Colour": "#4e6b6e", "BgColour": "#002B36", "Size": -1 - }] - }, { - "Name": "sql", - "Theme": "Tango Dark", - "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", - "Size": -1 }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", + "Colour": "yellow", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", + "Colour": "red", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 4, - "Name": "Number", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", - "BgColour": "#2e3434", + "Colour": "#002B36", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 5, - "Name": "Word", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", + "Colour": "#85efff", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 8, - "Name": "SQL Plus", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#7F959A", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 9, - "Name": "SQL Plus prompt", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 10, - "Name": "Operator", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#4e6b6e", + "BgColour": "#002B36", "Size": -1 + }] + }, { + "Name": "text", + "Theme": "Tango Dark", + "Flags": 5, + "Id": 1, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 11, - "Name": "Identifier", + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#888A85", + "Colour": "yellow", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#888A85", + "Colour": "red", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#2e3434", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#424848", + "BgColour": "#424848", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#ffffff", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#424848", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -96692,8 +94028,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#424848", - "BgColour": "#424848", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": -2, @@ -96716,7 +94052,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#424848", + "Colour": "#969999", "BgColour": "#2e3434", "Size": -1 }, { @@ -96737,16 +94073,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Tokyo Light", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -96766,177 +94102,81 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#8ca6a6", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#5842ff", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#8ca6a6", - "BgColour": "#faf1dc", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#8ca6a6", - "BgColour": "#faf1dc", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#faf1dc", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", + "Colour": "#EDE4D1", + "BgColour": "#EDE4D1", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#EDE4D1", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -96966,8 +94206,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", - "BgColour": "#EDE4D1", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": -2, @@ -96990,7 +94230,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", + "Colour": "#7D786E", "BgColour": "#faf1dc", "Size": -1 }, { @@ -97011,16 +94251,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Tokyo Night", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -97044,173 +94284,77 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#565f89", + "Colour": "yellow", "BgColour": "#24283b", "Size": -1 }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#565f89", + "Colour": "red", "BgColour": "#24283b", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#24283b", "BgColour": "#24283b", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", + "Colour": "#393D4E", + "BgColour": "#393D4E", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#393D4E", "BgColour": "#24283b", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -97240,8 +94384,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", - "BgColour": "#393D4E", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": -2, @@ -97264,7 +94408,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", + "Colour": "#91939D", "BgColour": "#24283b", "Size": -1 }, { @@ -97285,16 +94429,16 @@ "Size": -1 }] }, { - "Name": "sql", + "Name": "text", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 7, - "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", + "Id": 1, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.sql;*.sqlite", + "Extensions": "", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -97318,173 +94462,77 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 1, - "Name": "Comment line", - "Flags": 0, - "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 2, - "Name": "Comment block", - "Flags": 0, - "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 3, - "Name": "Comment doc", - "Flags": 0, - "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#82c4c4", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 5, - "Name": "Word", - "Flags": 0, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 6, - "Name": "String", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 7, - "Name": "Character", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 8, - "Name": "SQL Plus", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 9, - "Name": "SQL Plus prompt", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 10, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 11, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 13, - "Name": "SQL Plus comment", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "GREY", + "Colour": "yellow", "BgColour": "#343d46", "Size": -1 }, { - "Id": 15, - "Name": "Comment line doc", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "GREY", + "Colour": "red", "BgColour": "#343d46", "Size": -1 }, { - "Id": 16, - "Name": "Word (Set 2)", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#343d46", "BgColour": "#343d46", "Size": -1 }, { - "Id": 17, - "Name": "Comment doc keyword", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", + "Colour": "#485058", + "BgColour": "#485058", "Size": -1 }, { - "Id": 18, - "Name": "Comment doc keyword error", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 19, - "Name": "User 1", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 19, - "Name": "User 2", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#485058", "BgColour": "#343d46", "Size": -1 }, { - "Id": 19, - "Name": "User 3", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 19, - "Name": "User 4", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 - }, { - "Id": 23, - "Name": "Quoted identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -97514,8 +94562,8 @@ "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#485058", - "BgColour": "#485058", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { "Id": -2, @@ -97538,7 +94586,7 @@ "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#485058", + "Colour": "#999EA2", "BgColour": "#343d46", "Size": -1 }, { @@ -97559,28 +94607,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -97593,7 +94641,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -97601,18 +94649,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { @@ -97625,23 +94673,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#EC7600", @@ -97649,20 +94697,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#56AFD7", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8BFF", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#F35151", + "BgColour": "#282C34", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -97737,28 +94865,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Atom One Light", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -97771,7 +94899,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -97779,18 +94907,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -97803,23 +94931,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#50A14F", @@ -97827,20 +94955,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#4078F2", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -97915,28 +95123,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Xcode inspired", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -97949,7 +95157,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -97957,18 +95165,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -97980,41 +95188,121 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "Reference", + "Id": 5, + "Name": "Java keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Uuid", + "Flags": 0, + "FontDesc": "", + "Colour": "#340DD4", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#05314D", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#05314D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "Document", + "Id": 16, + "Name": "Methods", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Text", + "Id": 19, + "Name": "Classes", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "Error", + "Id": 26, + "Name": "Task Markers", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 9, - "Name": "Operator", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", @@ -98093,28 +95381,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -98127,7 +95415,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -98135,18 +95423,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -98159,23 +95447,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#0000C0", @@ -98183,20 +95471,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#0000C0", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#557F5F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9FBF", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9FBF", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#000099", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#7CA5D5", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#FF5809", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -98271,28 +95639,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -98305,7 +95673,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -98313,18 +95681,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -98337,23 +95705,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#CC9393", @@ -98361,20 +95729,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#A893CC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#A893CC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#F2F2DF", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#659F65", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#6699CC", + "BgColour": "#3F3F3F", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -98449,28 +95897,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -98483,26 +95931,26 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -98515,23 +95963,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#A5C25C", @@ -98539,20 +95987,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#629755", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#84B977", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#84B977", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC66D", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#CCDF32", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -98627,28 +96155,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Emacsen", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -98661,7 +96189,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -98669,18 +96197,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { @@ -98693,23 +96221,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#B58900", @@ -98717,20 +96245,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#B58900", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC322F", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC322F", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#2AA198", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#D33682", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#2B9DED", + "BgColour": "#234059", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -98805,28 +96413,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -98839,7 +96447,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -98847,18 +96455,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -98871,23 +96479,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", @@ -98895,20 +96503,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#D9E577", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#D9E577", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#CCDF32", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#2F4F4F", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -98983,28 +96671,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -99017,7 +96705,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -99025,18 +96713,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { @@ -99049,23 +96737,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#edd400", @@ -99073,20 +96761,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#888a85", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#888a85", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#888a85", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#CCDF32", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#729fcf", + "BgColour": "#2e3436", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -99161,28 +96929,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "BlueHippo", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -99195,7 +96963,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", @@ -99203,18 +96971,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -99227,23 +96995,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#C71585", @@ -99251,20 +97019,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF7F50", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF7F50", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#20B2AA", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF1493", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#D87093", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -99339,28 +97187,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "My vim dark", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -99373,7 +97221,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -99381,18 +97229,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { @@ -99405,42 +97253,122 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 6, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 7, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 8, + "Name": "Uuid", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 6, - "Name": "Document", + "Id": 16, + "Name": "Methods", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Text", + "Id": 19, + "Name": "Classes", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 8, - "Name": "Error", + "Id": 26, + "Name": "Task Markers", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 9, - "Name": "Operator", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { @@ -99517,28 +97445,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Oblivion", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -99551,7 +97479,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -99559,18 +97487,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -99583,23 +97511,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", @@ -99607,20 +97535,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#D9E577", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#D9E577", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#CCDF32", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -99695,28 +97703,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "RecognEyes", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -99729,7 +97737,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -99737,18 +97745,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { @@ -99761,23 +97769,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#DC78DC", @@ -99785,20 +97793,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#D9E577", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#D9E577", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#101020", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -99873,28 +97961,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Roboticket", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -99907,7 +97995,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -99915,18 +98003,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -99939,23 +98027,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#317ECC", @@ -99963,20 +98051,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#566874", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#566874", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#B05A65", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#295F94", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -100051,28 +98219,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -100085,7 +98253,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -100093,18 +98261,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { @@ -100117,23 +98285,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#ECE47E", @@ -100141,20 +98309,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#A7EC21", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -100229,28 +98477,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -100263,7 +98511,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -100271,18 +98519,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { @@ -100295,23 +98543,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#B5BD68", @@ -100319,20 +98567,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#CED1CF", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#CED1CF", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#81A2BE", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#CC6666", + "BgColour": "#1D1F21", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -100407,28 +98735,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Vim Desert", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -100441,7 +98769,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -100449,18 +98777,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { @@ -100473,23 +98801,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#FF8E8D", @@ -100497,20 +98825,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8E8D", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#67C3E7", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#997DC4", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#997DC4", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#997DC4", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#B6B193", + "BgColour": "#262626", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -100585,28 +98993,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -100619,7 +99027,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -100627,18 +99035,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { @@ -100651,23 +99059,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#99AD6A", @@ -100675,20 +99083,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -100763,28 +99251,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "One Dark Pro", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -100797,7 +99285,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -100805,18 +99293,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { @@ -100829,42 +99317,122 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 8, + "Name": "Uuid", + "Flags": 0, + "FontDesc": "", + "Colour": "#d19a66", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 10, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 8, - "Name": "Error", + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#5c6370", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#61afef", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 9, - "Name": "Operator", + "Id": 26, + "Name": "Task Markers", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { @@ -100941,28 +99509,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -100975,7 +99543,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -100983,18 +99551,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { @@ -101007,23 +99575,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", @@ -101031,20 +99599,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#68c244", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -101119,28 +99767,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Darkside-light", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -101153,7 +99801,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -101161,18 +99809,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -101185,23 +99833,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", @@ -101209,20 +99857,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -101297,28 +100025,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Darkside", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -101331,7 +100059,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -101339,18 +100067,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { @@ -101363,23 +100091,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", @@ -101387,20 +100115,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#68c244", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -101475,28 +100283,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -101509,7 +100317,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -101517,18 +100325,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { @@ -101541,23 +100349,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -101565,20 +100373,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -101653,28 +100541,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Earthsong-light", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -101687,7 +100575,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -101695,18 +100583,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { @@ -101719,23 +100607,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -101743,20 +100631,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -101831,28 +100799,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Earthsong", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -101865,7 +100833,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -101873,18 +100841,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { @@ -101897,23 +100865,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -101921,20 +100889,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -102009,28 +101057,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -102043,7 +101091,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -102051,18 +101099,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { @@ -102075,23 +101123,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#D8A657", @@ -102099,20 +101147,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B665", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -102187,28 +101315,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -102221,7 +101349,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -102229,18 +101357,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { @@ -102253,40 +101381,120 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8a657", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 8, + "Name": "Uuid", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3869b", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 10, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 8, - "Name": "Error", + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b665", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", "Flags": 0, "FontDesc": "", - "Colour": "RED", - "BgColour": "#292828", + "Colour": "#C7C7C7", + "BgColour": "#151515", "Size": -1 }, { - "Id": 9, - "Name": "Operator", - "Flags": 0, + "Id": 2, + "Name": "Variable", + "Flags": 16, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", @@ -102365,28 +101573,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Gruvbox", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -102399,7 +101607,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -102407,18 +101615,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { @@ -102431,23 +101639,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#b8bb26", @@ -102455,20 +101663,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#fdf4c1", + "BgColour": "#383838", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -102543,28 +101831,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -102577,7 +101865,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -102585,18 +101873,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { @@ -102609,23 +101897,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -102633,20 +101921,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -102721,28 +102089,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Legacy-light", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -102755,7 +102123,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -102763,18 +102131,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { @@ -102787,23 +102155,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -102811,20 +102179,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -102899,28 +102347,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Legacy", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -102933,7 +102381,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -102941,18 +102389,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { @@ -102965,23 +102413,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -102989,20 +102437,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -103077,28 +102605,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Solarized+", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -103111,7 +102639,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -103119,18 +102647,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { @@ -103143,23 +102671,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#CB4B16", @@ -103167,20 +102695,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB4B16", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#5b858b", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#2AA198", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -103255,28 +102863,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Tango Dark", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -103289,7 +102897,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -103297,18 +102905,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { @@ -103321,23 +102929,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#AD7FA8", @@ -103345,20 +102953,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#888A85", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#EED247", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -103433,28 +103121,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Tokyo Light", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -103467,26 +103155,26 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { @@ -103499,23 +103187,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#00b368", @@ -103523,20 +103211,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#9995b7", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#e64100", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -103611,28 +103379,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Tokyo Night", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -103645,7 +103413,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -103653,18 +103421,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { @@ -103677,23 +103445,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#9ece6a", @@ -103701,20 +103469,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#7aa2f7", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7C7C7", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#cfc9c2", + "BgColour": "#24283b", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -103789,28 +103637,28 @@ "Size": -1 }] }, { - "Name": "yaml", + "Name": "java", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 48, - "KeyWords0": "", + "Id": 3, + "KeyWords0": "abstract assert async await boolean break byte case catch char class const continue default do double else enum extends final finally float for future generic goto if implements import inner instanceof int interface long native new null outer package private protected public rest return short static super switch synchronized this throw throws transient try var void volatile while ", "KeyWords1": "", - "KeyWords2": "", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.yaml;*.yml;.clangd", - "SubstyleBase": -1, + "Extensions": "*.java", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -103823,7 +103671,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Line comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -103831,18 +103679,18 @@ "Size": -1 }, { "Id": 2, - "Name": "Identifier", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "Keyword", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { @@ -103855,23 +103703,23 @@ "Size": -1 }, { "Id": 5, - "Name": "Reference", + "Name": "Java keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 6, - "Name": "Document", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Text", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#acd1a8", @@ -103879,20 +103727,100 @@ "Size": -1 }, { "Id": 8, - "Name": "Error", + "Name": "Uuid", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 9, + "Name": "Preprocessor", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 10, "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 + }, { + "Id": 11, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 12, + "Name": "Open String", + "Flags": 0, + "FontDesc": "", + "Colour": "#acd1a8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 15, + "Name": "Javadoc line comment", + "Flags": 0, + "FontDesc": "", + "Colour": "GREY", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 17, + "Name": "Javadoc keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 18, + "Name": "Javadoc keyword error", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 16, + "Name": "Methods", + "Flags": 0, + "FontDesc": "", + "Colour": "#85add6", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 19, + "Name": "Classes", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 26, + "Name": "Task Markers", + "Flags": 0, + "FontDesc": "", + "Colour": "#82c4c4", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 2, + "Name": "Variable", + "Flags": 16, + "FontDesc": "", + "Colour": "#f97b58", + "BgColour": "#343d46", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -103967,16 +103895,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -103985,7 +103913,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -104001,7 +103929,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -104009,26 +103937,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { @@ -104036,39 +103964,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#56AFD7", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { @@ -104088,64 +104016,80 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#EC7600", @@ -104225,16 +104169,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Atom One Light", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -104243,7 +104187,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -104259,7 +104203,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -104267,26 +104211,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -104294,39 +104238,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#4078F2", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -104346,64 +104290,80 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#50A14F", @@ -104483,16 +104443,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Xcode inspired", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -104501,7 +104461,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -104517,7 +104477,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -104525,26 +104485,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -104552,36 +104512,36 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -104604,64 +104564,80 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#05314D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#05314D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#C81B28", @@ -104741,16 +104717,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -104759,7 +104735,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -104775,7 +104751,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -104783,26 +104759,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -104810,39 +104786,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#000099", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -104862,64 +104838,80 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#7F9FBF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#7F9FBF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#0000C0", @@ -104999,16 +104991,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -105017,7 +105009,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -105033,7 +105025,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -105041,26 +105033,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -105068,39 +105060,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2DF", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -105120,64 +105112,80 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#A893CC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#A893CC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#CC9393", @@ -105257,16 +105265,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -105275,7 +105283,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -105291,34 +105299,34 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -105326,39 +105334,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#FFC66D", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -105378,64 +105386,80 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#84B977", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#84B977", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#A5C25C", @@ -105515,16 +105539,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Emacsen", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -105533,7 +105557,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -105549,7 +105573,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -105557,26 +105581,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { @@ -105584,39 +105608,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { @@ -105636,64 +105660,80 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#DC322F", "BgColour": "#234059", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#DC322F", "BgColour": "#234059", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#B58900", @@ -105773,16 +105813,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -105791,7 +105831,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -105807,7 +105847,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -105815,26 +105855,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -105842,39 +105882,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -105894,64 +105934,80 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#D9E577", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D9E577", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", @@ -106031,16 +106087,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -106049,7 +106105,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -106065,7 +106121,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -106073,26 +106129,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { @@ -106100,39 +106156,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { @@ -106152,64 +106208,80 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#edd400", @@ -106289,16 +106361,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "BlueHippo", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -106307,7 +106379,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -106323,7 +106395,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#696969", @@ -106331,26 +106403,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -106358,39 +106430,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#20B2AA", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -106410,64 +106482,80 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#FF7F50", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#FF7F50", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#C71585", @@ -106547,16 +106635,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "My vim dark", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -106565,7 +106653,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -106581,7 +106669,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -106589,23 +106677,23 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", @@ -106616,36 +106704,36 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", @@ -106668,64 +106756,80 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", @@ -106805,16 +106909,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Oblivion", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -106823,7 +106927,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -106839,7 +106943,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -106847,26 +106951,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -106874,39 +106978,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -106926,64 +107030,80 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#D9E577", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D9E577", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", @@ -107063,16 +107183,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "RecognEyes", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -107081,7 +107201,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -107097,7 +107217,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -107105,26 +107225,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { @@ -107132,39 +107252,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { @@ -107184,64 +107304,80 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#D9E577", "BgColour": "#101020", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#D9E577", "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#DC78DC", @@ -107321,16 +107457,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Roboticket", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -107339,7 +107475,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -107355,7 +107491,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -107363,26 +107499,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -107390,39 +107526,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#B05A65", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -107442,64 +107578,80 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#566874", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#566874", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#317ECC", @@ -107579,16 +107731,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -107597,7 +107749,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -107613,7 +107765,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -107621,26 +107773,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { @@ -107648,39 +107800,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#A7EC21", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { @@ -107700,64 +107852,80 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF007F", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 3", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#ECE47E", @@ -107837,16 +108005,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -107855,7 +108023,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -107871,7 +108039,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -107879,26 +108047,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { @@ -107906,39 +108074,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#81A2BE", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { @@ -107958,64 +108126,80 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#CED1CF", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#CED1CF", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#B5BD68", @@ -108095,16 +108279,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Vim Desert", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -108113,7 +108297,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -108129,7 +108313,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -108137,26 +108321,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { @@ -108164,36 +108348,36 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -108216,64 +108400,80 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#997DC4", "BgColour": "#262626", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#997DC4", "BgColour": "#262626", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#FF8E8D", @@ -108353,16 +108553,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -108371,7 +108571,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -108387,7 +108587,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -108395,26 +108595,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { @@ -108422,39 +108622,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { @@ -108474,64 +108674,80 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#99AD6A", @@ -108611,16 +108827,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "One Dark Pro", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -108629,7 +108845,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -108645,7 +108861,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -108653,26 +108869,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { @@ -108680,39 +108896,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#61afef", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { @@ -108732,64 +108948,80 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#98c379", @@ -108869,16 +109101,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -108887,7 +109119,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -108903,7 +109135,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -108911,26 +109143,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { @@ -108938,39 +109170,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { @@ -108990,64 +109222,80 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", @@ -109127,16 +109375,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Darkside-light", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -109145,7 +109393,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -109161,7 +109409,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -109169,26 +109417,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -109196,39 +109444,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -109248,64 +109496,80 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", @@ -109385,16 +109649,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Darkside", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -109403,7 +109667,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -109419,7 +109683,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -109427,26 +109691,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { @@ -109454,39 +109718,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { @@ -109506,64 +109770,80 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", @@ -109643,16 +109923,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -109661,7 +109941,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -109677,7 +109957,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -109685,23 +109965,23 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -109712,39 +109992,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { @@ -109764,64 +110044,80 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -109901,16 +110197,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Earthsong-light", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -109919,7 +110215,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -109935,7 +110231,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -109943,23 +110239,23 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -109970,39 +110266,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { @@ -110022,64 +110318,80 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -110159,16 +110471,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Earthsong", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -110177,7 +110489,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -110193,7 +110505,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -110201,23 +110513,23 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -110228,39 +110540,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { @@ -110280,64 +110592,80 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -110417,16 +110745,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -110435,7 +110763,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -110451,7 +110779,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -110459,26 +110787,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { @@ -110486,39 +110814,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#A9B665", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { @@ -110538,64 +110866,80 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#D8A657", @@ -110675,16 +111019,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -110693,7 +111037,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -110709,7 +111053,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -110717,26 +111061,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { @@ -110744,39 +111088,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#a9b665", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { @@ -110796,64 +111140,80 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#d8a657", @@ -110933,16 +111293,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Gruvbox", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -110951,7 +111311,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -110967,7 +111327,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -110975,26 +111335,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { @@ -111002,39 +111362,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { @@ -111054,64 +111414,80 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#b8bb26", @@ -111191,16 +111567,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -111209,7 +111585,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -111225,7 +111601,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -111233,26 +111609,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { @@ -111260,39 +111636,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { @@ -111312,64 +111688,80 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -111449,16 +111841,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Legacy-light", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -111467,7 +111859,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -111483,7 +111875,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -111491,26 +111883,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { @@ -111518,39 +111910,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { @@ -111570,64 +111962,80 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -111707,16 +112115,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Legacy", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -111725,7 +112133,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -111741,7 +112149,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -111749,26 +112157,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { @@ -111776,39 +112184,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { @@ -111828,64 +112236,80 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -111965,16 +112389,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Solarized+", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -111983,7 +112407,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -111999,7 +112423,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -112007,26 +112431,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { @@ -112034,39 +112458,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { @@ -112086,64 +112510,80 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#CB4B16", @@ -112223,16 +112663,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Tango Dark", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -112241,7 +112681,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -112257,7 +112697,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -112265,26 +112705,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { @@ -112292,39 +112732,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#EED247", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { @@ -112344,64 +112784,80 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#AD7FA8", @@ -112481,16 +112937,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Tokyo Light", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -112499,7 +112955,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -112515,34 +112971,34 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { @@ -112550,39 +113006,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#e64100", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { @@ -112602,64 +113058,80 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#00b368", @@ -112739,16 +113211,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Tokyo Night", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -112757,7 +113229,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -112773,7 +113245,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -112781,26 +113253,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { @@ -112808,39 +113280,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#7aa2f7", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { @@ -112860,64 +113332,80 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#9ece6a", @@ -112997,16 +113485,16 @@ "Size": -1 }] }, { - "Name": "cobra", + "Name": "sql", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 2, - "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", + "Id": 7, + "KeyWords0": "absolute action add admin after aggregate alias all allocate alter and any are array as asc assertion at authorization before begin binary bit blob boolean both breadth by call cascade cascaded case cast catalog char character check class clob close collate collation column commit completion connect connection constraint constraints constructor continue corresponding create cross cube current current_date current_path current_role current_time current_timestamp current_user cursor cycle data date day deallocate dec decimal declare default deferrable deferred delete depth deref desc describe descriptor destroy destructor deterministic diagnostics dictionary disconnect distinct domain double drop dynamic each else end end-exec equals escape every except exception exec execute exists external false fetch first float for foreign found free from full function general get global go goto grant group grouping having host hour identity if ignore immediate in index indicator initialize initially inner inout input insert int integer intersect interval into is isolation iterate join key language large last lateral leading left less level like limit local localtime localtimestamp locator map match minute modifies modify module month names national natural nchar nclob new next no none not null numeric object of off old on only open operation option or order ordinality out outer output pad parameter parameters partial path postfix precision prefix preorder prepare preserve primary prior privileges procedure public read reads real recursive ref references referencing relative replace restrict result return returns revoke right role rollback rollup routine row rows savepoint schema scope scroll search second section select sequence session session_user set sets size smallint some| space specific specifictype sql sqlexception sqlstate sqlwarning start state statement static structure system_user table temporary terminate than then time timestamp timezone_hour timezone_minute to trailing transaction translation treat trigger true under union unique unknown unnest update usage user using value values varchar variable varying view when whenever where with without work write year zone", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.cobra;cob", + "Extensions": "*.sql;*.sqlite", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -113015,7 +113503,7 @@ "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { "index": -1, @@ -113031,7 +113519,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Comment line", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -113039,26 +113527,26 @@ "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "String", + "Name": "Comment doc", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Character", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { @@ -113066,39 +113554,39 @@ "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 }, { "Id": 6, - "Name": "Triple", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Double Triple", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 8, - "Name": "Class Name", + "Name": "SQL Plus", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 9, - "Name": "Def Name", + "Name": "SQL Plus prompt", "Flags": 0, "FontDesc": "", - "Colour": "#85add6", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { @@ -113118,64 +113606,80 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 12, - "Name": "Comment block", + "Id": 13, + "Name": "SQL Plus comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { - "Id": 13, - "Name": "String EOL", + "Id": 15, + "Name": "Comment line doc", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { - "Id": 14, - "Name": "Locals", + "Id": 16, + "Name": "Word (Set 2)", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 15, - "Name": "Decorator", + "Id": 17, + "Name": "Comment doc keyword", "Flags": 0, "FontDesc": "", "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 16, - "Name": "F-string", + "Id": 18, + "Name": "Comment doc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 17, - "Name": "F-character", + "Id": 19, + "Name": "User 1", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 18, - "Name": "F-triple", + "Id": 19, + "Name": "User 2", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 19, - "Name": "F-triple Double", + "Name": "User 3", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 19, + "Name": "User 4", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 23, + "Name": "Quoted identifier", "Flags": 0, "FontDesc": "", "Colour": "#acd1a8", @@ -113255,16 +113759,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -113289,108 +113793,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "RED", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#F35151", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#EC7600", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC235", - "BgColour": "#282C34", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -113465,16 +113937,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Atom One Light", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -113499,108 +113971,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#50A14F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#C18401", - "BgColour": "#FFFFFF", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -113675,16 +114115,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Xcode inspired", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -113709,108 +114149,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#C81B28", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#6F33A7", - "BgColour": "#FFFFFF", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -113885,16 +114293,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -113919,108 +114327,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF5809", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#0000C0", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#006600", - "BgColour": "#FFFFFF", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -114095,16 +114471,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -114129,108 +114505,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "RED", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC9393", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25B5B", - "BgColour": "#3F3F3F", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -114305,16 +114649,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -114339,108 +114683,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "RED", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#A5C25C", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#A9B7C6", - "BgColour": "#2B2B2B", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -114515,16 +114827,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Emacsen", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -114549,108 +114861,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "RED", "BgColour": "#234059", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#B58900", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#D5A920", - "BgColour": "#234059", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -114725,16 +115005,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -114759,108 +115039,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "RED", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#2F4F4F", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -114935,16 +115183,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -114969,108 +115217,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "RED", "BgColour": "#2e3436", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#edd400", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#bbbbbb", - "BgColour": "#2e3436", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -115145,16 +115361,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "BlueHippo", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -115179,108 +115395,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#C71585", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC0866", - "BgColour": "#FFFFFF", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -115355,16 +115539,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "My vim dark", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -115389,108 +115573,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "RED", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF00FF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FF00", - "BgColour": "#000000", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -115565,16 +115717,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Oblivion", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -115599,108 +115751,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "RED", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFC600", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#D25252", - "BgColour": "#1E1E1E", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -115775,16 +115895,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "RecognEyes", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -115809,108 +115929,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "RED", "BgColour": "#101020", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#DC78DC", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8080", - "BgColour": "#101020", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -115985,16 +116073,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Roboticket", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -116019,108 +116107,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "RED", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#317ECC", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#AB2525", - "BgColour": "#F5F5F5", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -116195,16 +116251,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -116229,108 +116285,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "RED", "BgColour": "#272822", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#ECE47E", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#52E3F6", - "BgColour": "#272822", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -116405,16 +116429,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -116439,108 +116463,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "RED", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#B5BD68", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#F0C674", - "BgColour": "#1D1F21", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -116615,16 +116607,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Vim Desert", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -116649,108 +116641,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "RED", "BgColour": "#262626", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8E8D", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#82F985", - "BgColour": "#262626", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -116825,16 +116785,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -116859,108 +116819,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "RED", "BgColour": "#151515", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#99AD6A", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFB964", - "BgColour": "#151515", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -117035,16 +116963,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "One Dark Pro", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -117069,55 +116997,55 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", "Colour": "#98c379", @@ -117125,52 +117053,20 @@ "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "RED", "BgColour": "#282c34", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#98c379", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -117245,16 +117141,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -117279,108 +117175,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "RED", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#000000", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -117455,16 +117319,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Darkside-light", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -117489,108 +117353,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "RED", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#4b8e30", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#15a2c1", - "BgColour": "#e0e0e0", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -117665,16 +117497,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Darkside", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -117699,108 +117531,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "RED", "BgColour": "#222324", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#f2d42c", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#1cc3e8", - "BgColour": "#222324", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -117875,16 +117675,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -117909,108 +117709,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "RED", "BgColour": "#12100f", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#12100f", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -118085,16 +117853,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Earthsong-light", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -118119,108 +117887,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "RED", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#ffffff", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -118295,16 +118031,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Earthsong", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -118329,108 +118065,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "RED", "BgColour": "#36312c", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#f8bb39", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#95cc5e", - "BgColour": "#36312c", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -118505,16 +118209,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -118539,108 +118243,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "RED", "BgColour": "#22272e", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8A657", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#7DAEA3", - "BgColour": "#22272e", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -118715,16 +118387,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -118749,108 +118421,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "RED", "BgColour": "#292828", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8a657", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#7daea3", - "BgColour": "#292828", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -118925,16 +118565,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Gruvbox", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -118959,108 +118599,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "RED", "BgColour": "#383838", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#b8bb26", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#fa5c4b", - "BgColour": "#383838", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -119135,16 +118743,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -119169,108 +118777,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "RED", "BgColour": "#080a0c", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#080a0c", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -119345,16 +118921,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Legacy-light", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -119379,108 +118955,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "RED", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#ffffff", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -119555,16 +119099,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Legacy", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -119589,108 +119133,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "RED", "BgColour": "#212933", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff410d", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#267fb5", - "BgColour": "#212933", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -119765,16 +119277,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Solarized+", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -119799,108 +119311,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "RED", "BgColour": "#002B36", "Size": -1 }, { "Id": 9, - "Name": "Scalar", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 10, - "Name": "Param", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB4B16", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -119975,16 +119455,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Tango Dark", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -120009,108 +119489,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "RED", "BgColour": "#2e3434", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD7FA8", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -120185,16 +119633,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Tokyo Light", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -120219,108 +119667,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "RED", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "RED", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#00b368", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#0094f0", - "BgColour": "#faf1dc", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -120395,16 +119811,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Tokyo Night", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -120429,108 +119845,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "RED", "BgColour": "#24283b", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#9ece6a", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff9e64", - "BgColour": "#24283b", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -120605,16 +119989,16 @@ "Size": -1 }] }, { - "Name": "script", + "Name": "yaml", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 62, - "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "Id": 48, + "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", + "Extensions": "*.yaml;*.yml;.clangd", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -120639,108 +120023,76 @@ "Size": -1 }, { "Id": 1, - "Name": "Error", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "PINK", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 2, - "Name": "Line comment", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Word (Set 0)", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "String", + "Name": "Reference", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 }, { "Id": 6, - "Name": "Character", + "Name": "Document", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Text", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 8, - "Name": "Identifier", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "RED", "BgColour": "#343d46", "Size": -1 }, { "Id": 9, - "Name": "Scalar", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 - }, { - "Id": 10, - "Name": "Param", - "Flags": 0, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 11, - "Name": "Backticks", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 13, - "Name": "Here Q", - "Flags": 0, - "FontDesc": "", - "Colour": "#acd1a8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 12, - "Name": "Here delim", - "Flags": 0, - "FontDesc": "", - "Colour": "#fac761", - "BgColour": "#343d46", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -120815,16 +120167,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Atom One-Dark", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -121073,16 +120425,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Atom One Light", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -121331,16 +120683,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Xcode inspired", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -121589,16 +120941,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Classic Eclipse", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -121847,16 +121199,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Dark Flash Builder", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -122105,16 +121457,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Intellij Dracula", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -122363,16 +121715,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Emacsen", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -122621,16 +121973,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Clasic Emacs", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -122879,16 +122231,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Gedit Original Oblivion", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -123137,16 +122489,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "BlueHippo", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -123395,16 +122747,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "My vim dark", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -123653,16 +123005,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Oblivion", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -123911,16 +123263,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "RecognEyes", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -124169,16 +123521,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Roboticket", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -124427,16 +123779,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Sublime Text 2", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -124685,16 +124037,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Tomorrow Night", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -124943,16 +124295,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Vim Desert", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -125201,16 +124553,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Vim Jellybeans Port", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -125459,16 +124811,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "One Dark Pro", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -125717,16 +125069,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Darkside-contrast", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -125975,16 +125327,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Darkside-light", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -126233,16 +125585,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Darkside", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -126491,16 +125843,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Earthsong-contrast", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -126749,16 +126101,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Earthsong-light", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -127007,16 +126359,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Earthsong", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -127265,16 +126617,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Github-Gruvbox-Theme", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -127523,16 +126875,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Gruvbox Material Dark", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -127781,16 +127133,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Gruvbox", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -128039,16 +127391,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Legacy-contrast", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -128297,16 +127649,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Legacy-light", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -128555,16 +127907,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Legacy", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -128813,16 +128165,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Solarized+", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -129071,16 +128423,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Tango Dark", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -129329,16 +128681,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Tokyo Light", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -129587,16 +128939,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Tokyo Night", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -129845,16 +129197,16 @@ "Size": -1 }] }, { - "Name": "python", + "Name": "cobra", "Theme": "Alacritty: Mariana", "Flags": 5, "Id": 2, - "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords0": "abstract adds all and any as assert base body bool branch break callable catch char class const continue cue decimal def do dynamic each else end ensure enum event every except expect extend extern fake false finally float for from get has if ignore implements implies import in inherits inlined inout int interface internal invariant is listen lock mixin must namespace new nil nonvirtual not number objc of old or out override partial pass passthrough post print private pro protected public raise ref require return same set shared sig stop struct success test this throw to to? trace true try uint use using var vari virtual where while yield", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.py;waf;wscript;wscript_build", + "Extensions": "*.cobra;cob", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -130103,16 +129455,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -130137,31 +129489,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "PINK", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#C678DD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#EC7600", @@ -130169,15 +129529,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", @@ -130185,58 +129545,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#C678DD", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { @@ -130313,16 +129665,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Atom One Light", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -130347,31 +129699,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#A626A4", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#50A14F", @@ -130379,15 +129739,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", @@ -130395,58 +129755,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#A626A4", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -130523,16 +129875,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Xcode inspired", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -130557,31 +129909,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#C81B28", @@ -130589,15 +129949,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -130605,58 +129965,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#B309A1", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -130733,16 +130085,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -130767,31 +130119,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F0055", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#0000C0", @@ -130799,15 +130159,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#333333", @@ -130815,58 +130175,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F0055", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -130943,16 +130295,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -130977,31 +130329,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "PINK", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#DFC47D", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#CC9393", @@ -131009,15 +130369,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", @@ -131025,58 +130385,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#DFC47D", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -131153,16 +130505,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -131187,31 +130539,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "PINK", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC7832", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#A5C25C", @@ -131219,15 +130579,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -131235,58 +130595,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC7832", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -131363,16 +130715,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Emacsen", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -131397,31 +130749,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "PINK", "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#678CB1", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#B58900", @@ -131429,15 +130789,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -131445,58 +130805,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#678CB1", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { @@ -131573,16 +130925,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -131607,31 +130959,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "PINK", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", @@ -131639,15 +130999,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", @@ -131655,58 +131015,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -131783,16 +131135,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -131817,31 +131169,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "PINK", "BgColour": "#2e3436", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#edd400", @@ -131849,15 +131209,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", @@ -131865,58 +131225,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { @@ -131993,16 +131345,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "BlueHippo", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -132027,31 +131379,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "RED", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#1E90FF", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#C71585", @@ -132059,15 +131419,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -132075,58 +131435,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#1E90FF", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -132203,16 +131555,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "My vim dark", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -132237,23 +131589,23 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "PINK", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", @@ -132261,7 +131613,15 @@ "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", @@ -132269,15 +131629,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", @@ -132285,58 +131645,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { @@ -132413,16 +131765,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Oblivion", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -132447,31 +131799,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "PINK", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", @@ -132479,15 +131839,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -132495,58 +131855,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -132623,16 +131975,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "RecognEyes", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -132657,31 +132009,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "PINK", "BgColour": "#101020", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#00D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#DC78DC", @@ -132689,15 +132049,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", @@ -132705,58 +132065,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#00D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { @@ -132833,16 +132185,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Roboticket", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -132867,31 +132219,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "RED", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#295F94", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#317ECC", @@ -132899,15 +132259,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#585858", @@ -132915,58 +132275,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#295F94", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -133043,16 +132395,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -133077,31 +132429,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "PINK", "BgColour": "#272822", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF007F", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#ECE47E", @@ -133109,15 +132469,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -133125,58 +132485,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF007F", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { @@ -133253,16 +132605,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -133287,31 +132639,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "PINK", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#B294BB", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#B5BD68", @@ -133319,15 +132679,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", @@ -133335,58 +132695,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#B294BB", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { @@ -133463,16 +132815,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Vim Desert", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -133497,31 +132849,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "PINK", "BgColour": "#262626", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#F6E06B", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#FF8E8D", @@ -133529,15 +132889,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -133545,58 +132905,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#F6E06B", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { @@ -133673,16 +133025,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -133707,31 +133059,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "PINK", "BgColour": "#151515", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#3070A0", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#99AD6A", @@ -133739,15 +133099,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -133755,58 +133115,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#3070A0", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { @@ -133883,16 +133235,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "One Dark Pro", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -133917,31 +133269,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "PINK", "BgColour": "#282c34", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#98c379", @@ -133949,7 +133309,7 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#98c379", @@ -133957,47 +133317,39 @@ "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", "Colour": "#98c379", @@ -134005,18 +133357,18 @@ "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { @@ -134093,16 +133445,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -134127,31 +133479,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "PINK", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", @@ -134159,15 +133519,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -134175,58 +133535,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { @@ -134303,16 +133655,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Darkside-light", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -134337,31 +133689,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "RED", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#c1721d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", @@ -134369,15 +133729,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", @@ -134385,58 +133745,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#c1721d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -134513,16 +133865,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Darkside", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -134547,31 +133899,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "PINK", "BgColour": "#222324", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", @@ -134579,15 +133939,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -134595,58 +133955,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { @@ -134723,16 +134075,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -134757,23 +134109,23 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "PINK", "BgColour": "#12100f", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -134781,7 +134133,15 @@ "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -134789,15 +134149,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -134805,58 +134165,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { @@ -134933,16 +134285,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Earthsong-light", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -134967,23 +134319,23 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "RED", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -134991,7 +134343,15 @@ "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -134999,15 +134359,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", @@ -135015,58 +134375,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { @@ -135143,16 +134495,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Earthsong", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -135177,23 +134529,23 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "PINK", "BgColour": "#36312c", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -135201,7 +134553,15 @@ "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", @@ -135209,15 +134569,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -135225,58 +134585,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { @@ -135353,16 +134705,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -135387,31 +134739,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "PINK", "BgColour": "#22272e", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#EA6962", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#D8A657", @@ -135419,74 +134779,66 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { @@ -135563,16 +134915,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -135597,31 +134949,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "PINK", "BgColour": "#292828", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#ea6962", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#d8a657", @@ -135629,15 +134989,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", @@ -135645,58 +135005,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#ea6962", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { @@ -135773,16 +135125,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Gruvbox", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -135807,31 +135159,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "PINK", "BgColour": "#383838", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#fe8019", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#b8bb26", @@ -135839,15 +135199,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", @@ -135855,58 +135215,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#fe8019", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { @@ -135983,16 +135335,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -136017,31 +135369,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "PINK", "BgColour": "#080a0c", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -136049,15 +135409,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -136065,58 +135425,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { @@ -136193,16 +135545,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Legacy-light", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -136227,31 +135579,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "RED", "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -136259,15 +135619,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", @@ -136275,58 +135635,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { @@ -136403,16 +135755,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Legacy", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -136437,31 +135789,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "PINK", "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", @@ -136469,15 +135829,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -136485,58 +135845,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { @@ -136613,16 +135965,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Solarized+", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -136647,31 +135999,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "PINK", "BgColour": "#002B36", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#CB4B16", @@ -136679,15 +136039,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -136695,58 +136055,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { @@ -136823,16 +136175,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Tango Dark", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -136857,31 +136209,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "PINK", "BgColour": "#2e3434", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#AD7FA8", @@ -136889,15 +136249,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", @@ -136905,58 +136265,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { @@ -137033,16 +136385,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Tokyo Light", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -137067,31 +136419,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "RED", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff5792", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#00b368", @@ -137099,15 +136459,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#343b58", @@ -137115,58 +136475,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff5792", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { @@ -137243,16 +136595,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Tokyo Night", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -137277,31 +136629,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "PINK", "BgColour": "#24283b", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#f7768e", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#9ece6a", @@ -137309,15 +136669,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", @@ -137325,58 +136685,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#f7768e", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { @@ -137453,16 +136805,16 @@ "Size": -1 }] }, { - "Name": "fortran", + "Name": "script", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 36, - "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", - "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", - "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "Id": 62, + "KeyWords0": "awk bzip cat cd chmod cp do done echo else exit fi find for function grep gunzip gzip if in local ls mkdir mv print printf pwd return rm rmdir switch tar then touch while xargs zip ", + "KeyWords1": "", + "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.f;*.f90", + "Extensions": "*.bash;*.sh;.tcsh;.bashrc;*.ksh;configure", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -137487,31 +136839,39 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Error", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "PINK", "BgColour": "#343d46", "Size": -1 }, { "Id": 2, - "Name": "Number", + "Name": "Line comment", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "String 1", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "String 2", + "Name": "Word (Set 0)", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8b6d8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 5, + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#acd1a8", @@ -137519,15 +136879,15 @@ "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Identifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", @@ -137535,58 +136895,50 @@ "Size": -1 }, { "Id": 8, - "Name": "Word", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 9, - "Name": "Word 2", + "Name": "Scalar", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 10, - "Name": "Word 3", + "Name": "Param", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 }, { "Id": 11, - "Name": "Pre processor", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8b6d8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 12, - "Name": "Operator 2", + "Name": "Backticks", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 13, - "Name": "Label", + "Name": "Here Q", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 14, - "Name": "Continuation", + "Id": 12, + "Name": "Here delim", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { @@ -137663,16 +137015,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -137681,7 +137033,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -137721,47 +137073,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#FFC235", @@ -137769,15 +137113,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#56AFD7", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", @@ -137785,18 +137129,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { @@ -137809,18 +137153,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { @@ -137897,16 +137273,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Atom One Light", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -137915,7 +137291,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -137955,47 +137331,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#C18401", @@ -138003,15 +137371,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#4078F2", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", @@ -138019,18 +137387,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -138043,18 +137411,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -138131,16 +137531,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Xcode inspired", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -138149,7 +137549,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -138189,47 +137589,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#6F33A7", @@ -138237,7 +137629,7 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -138245,7 +137637,7 @@ "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -138253,18 +137645,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -138277,18 +137669,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -138365,16 +137789,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -138383,7 +137807,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -138423,47 +137847,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#006600", @@ -138471,15 +137887,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#000099", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#333333", @@ -138487,18 +137903,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -138511,18 +137927,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#0000C0", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#0000C0", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#0000C0", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -138599,16 +138047,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -138617,7 +138065,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -138657,47 +138105,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#D25B5B", @@ -138705,15 +138145,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#F2F2DF", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", @@ -138721,18 +138161,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -138745,18 +138185,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -138833,16 +138305,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -138851,7 +138323,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -138891,47 +138363,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#A9B7C6", @@ -138939,15 +138403,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC66D", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -138955,18 +138419,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -138979,18 +138443,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -139067,16 +138563,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Emacsen", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -139085,7 +138581,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -139125,47 +138621,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#D5A920", @@ -139173,15 +138661,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#2AA198", "BgColour": "#234059", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -139189,18 +138677,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { @@ -139213,18 +138701,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#B58900", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#B58900", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#B58900", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { @@ -139301,16 +138821,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -139319,7 +138839,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -139359,47 +138879,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#D25252", @@ -139407,15 +138919,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#BED6FF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", @@ -139423,18 +138935,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -139447,18 +138959,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -139535,16 +139079,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -139553,7 +139097,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -139593,47 +139137,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#bbbbbb", @@ -139641,15 +139177,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#BED6FF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", @@ -139657,18 +139193,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { @@ -139681,18 +139217,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { @@ -139769,16 +139337,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "BlueHippo", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -139787,7 +139355,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -139827,47 +139395,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#CC0866", @@ -139875,15 +139435,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#20B2AA", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -139891,18 +139451,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -139915,18 +139475,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -140003,16 +139595,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "My vim dark", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -140021,7 +139613,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -140061,47 +139653,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#00FF00", @@ -140109,7 +139693,7 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", @@ -140117,7 +139701,7 @@ "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", @@ -140125,18 +139709,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { @@ -140149,18 +139733,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { @@ -140237,16 +139853,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Oblivion", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -140255,7 +139871,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -140295,47 +139911,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#D25252", @@ -140343,15 +139951,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#BED6FF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -140359,18 +139967,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -140383,18 +139991,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -140471,16 +140111,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "RecognEyes", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -140489,7 +140129,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -140529,47 +140169,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#FF8080", @@ -140577,15 +140209,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#BED6FF", "BgColour": "#101020", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", @@ -140593,18 +140225,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { @@ -140617,18 +140249,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { @@ -140705,16 +140369,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Roboticket", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -140723,7 +140387,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -140763,47 +140427,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#AB2525", @@ -140811,15 +140467,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#B05A65", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#585858", @@ -140827,18 +140483,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -140851,18 +140507,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -140939,16 +140627,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -140957,7 +140645,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -140997,47 +140685,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#52E3F6", @@ -141045,15 +140725,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#A7EC21", "BgColour": "#272822", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -141061,18 +140741,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { @@ -141085,18 +140765,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { @@ -141173,16 +140885,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -141191,7 +140903,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -141231,47 +140943,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#F0C674", @@ -141279,15 +140983,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#81A2BE", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", @@ -141295,18 +140999,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { @@ -141319,18 +141023,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { @@ -141407,16 +141143,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Vim Desert", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -141425,7 +141161,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -141465,47 +141201,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#82F985", @@ -141513,7 +141241,7 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -141521,7 +141249,7 @@ "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -141529,18 +141257,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { @@ -141553,18 +141281,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8E8D", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8E8D", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8E8D", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { @@ -141641,16 +141401,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -141659,7 +141419,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -141699,47 +141459,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#FFB964", @@ -141747,15 +141499,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#BED6FF", "BgColour": "#151515", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -141763,18 +141515,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { @@ -141787,18 +141539,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { @@ -141875,16 +141659,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "One Dark Pro", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -141893,7 +141677,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -141933,7 +141717,7 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#98c379", @@ -141941,39 +141725,31 @@ "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", @@ -141981,34 +141757,34 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#61afef", "BgColour": "#282c34", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { @@ -142021,18 +141797,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { @@ -142109,16 +141917,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -142127,7 +141935,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -142167,47 +141975,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", @@ -142215,15 +142015,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#68c244", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -142231,18 +142031,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { @@ -142255,18 +142055,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { @@ -142343,16 +142175,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Darkside-light", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -142361,7 +142193,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -142401,47 +142233,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#15a2c1", @@ -142449,15 +142273,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", @@ -142465,18 +142289,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -142489,18 +142313,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { @@ -142577,16 +142433,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Darkside", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -142595,7 +142451,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -142635,47 +142491,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#1cc3e8", @@ -142683,15 +142531,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#68c244", "BgColour": "#222324", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -142699,18 +142547,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { @@ -142723,18 +142571,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { @@ -142811,16 +142691,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -142829,7 +142709,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -142869,47 +142749,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", @@ -142917,15 +142789,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#60a365", "BgColour": "#12100f", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -142933,18 +142805,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { @@ -142957,18 +142829,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { @@ -143045,16 +142949,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Earthsong-light", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -143063,7 +142967,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -143103,47 +143007,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", @@ -143151,15 +143047,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#60a365", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", @@ -143167,18 +143063,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { @@ -143191,18 +143087,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { @@ -143279,16 +143207,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Earthsong", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -143297,7 +143225,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -143337,47 +143265,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#95cc5e", @@ -143385,15 +143305,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#60a365", "BgColour": "#36312c", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -143401,18 +143321,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { @@ -143425,18 +143345,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { @@ -143513,16 +143465,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -143531,7 +143483,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -143571,47 +143523,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#7DAEA3", @@ -143619,34 +143563,34 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#A9B665", "BgColour": "#22272e", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { @@ -143659,18 +143603,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { @@ -143747,16 +143723,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -143765,7 +143741,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -143805,47 +143781,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#7daea3", @@ -143853,15 +143821,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#a9b665", "BgColour": "#292828", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", @@ -143869,18 +143837,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { @@ -143893,18 +143861,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#7daea3", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8a657", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8a657", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8a657", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { @@ -143981,16 +143981,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Gruvbox", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -143999,7 +143999,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -144039,47 +144039,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#fa5c4b", @@ -144087,15 +144079,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", @@ -144103,18 +144095,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { @@ -144127,18 +144119,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { @@ -144215,16 +144239,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -144233,7 +144257,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -144273,47 +144297,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", @@ -144321,15 +144337,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ffb20d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -144337,18 +144353,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { @@ -144361,18 +144377,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { @@ -144449,16 +144497,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Legacy-light", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -144467,7 +144515,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -144507,47 +144555,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", @@ -144555,15 +144595,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ffb20d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", @@ -144571,18 +144611,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { @@ -144595,18 +144635,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { @@ -144683,16 +144755,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Legacy", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -144701,7 +144773,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -144741,47 +144813,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#267fb5", @@ -144789,15 +144853,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ffb20d", "BgColour": "#212933", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -144805,18 +144869,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { @@ -144829,18 +144893,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { @@ -144917,16 +145013,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Solarized+", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -144935,7 +145031,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -144975,47 +145071,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#859900", @@ -145023,15 +145111,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#2AA198", "BgColour": "#002B36", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -145039,18 +145127,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { @@ -145063,18 +145151,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB4B16", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB4B16", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB4B16", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { @@ -145151,16 +145271,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Tango Dark", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -145169,7 +145289,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -145209,47 +145329,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", @@ -145257,15 +145369,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#EED247", "BgColour": "#2e3434", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", @@ -145273,18 +145385,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { @@ -145297,18 +145409,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { @@ -145385,16 +145529,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Tokyo Light", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -145403,7 +145547,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -145443,47 +145587,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#0094f0", @@ -145491,15 +145627,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#e64100", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#343b58", @@ -145507,18 +145643,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { @@ -145531,18 +145667,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { @@ -145619,16 +145787,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Tokyo Night", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -145637,7 +145805,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -145677,47 +145845,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#ff9e64", @@ -145725,15 +145885,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#7aa2f7", "BgColour": "#24283b", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", @@ -145741,18 +145901,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { @@ -145765,18 +145925,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { @@ -145853,16 +146045,16 @@ "Size": -1 }] }, { - "Name": "assembly", + "Name": "python", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 34, - "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", - "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", - "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", - "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", - "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", - "Extensions": "*.asm;*.s;*.S", + "Id": 2, + "KeyWords0": "False None True and as assert async await break class continue def del elif else except exec finally for from global if import in is lambda not or pass print raise return self try while with yield ", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.py;waf;wscript;wscript_build", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -145871,7 +146063,7 @@ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -145911,47 +146103,39 @@ "Size": -1 }, { "Id": 4, - "Name": "Operator", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 6, - "Name": "CPU Instruction", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 7, - "Name": "Math Instruction", + "Id": 6, + "Name": "Triple", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Math Instruction", + "Name": "Double Triple", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 8, - "Name": "Register", + "Name": "Class Name", "Flags": 0, "FontDesc": "", "Colour": "#fac761", @@ -145959,15 +146143,15 @@ "Size": -1 }, { "Id": 9, - "Name": "Directive", + "Name": "Def Name", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#85add6", "BgColour": "#343d46", "Size": -1 }, { "Id": 10, - "Name": "Directive Operand", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", @@ -145975,18 +146159,18 @@ "Size": -1 }, { "Id": 11, - "Name": "Comment block", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 12, - "Name": "Character", + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { @@ -145999,18 +146183,50 @@ "Size": -1 }, { "Id": 14, - "Name": "Ext Instruction", + "Name": "Locals", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 }, { "Id": 15, - "Name": "Comment directive", + "Name": "Decorator", + "Flags": 0, + "FontDesc": "", + "Colour": "#fac761", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 16, + "Name": "F-string", + "Flags": 0, + "FontDesc": "", + "Colour": "#acd1a8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 17, + "Name": "F-character", + "Flags": 0, + "FontDesc": "", + "Colour": "#acd1a8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 18, + "Name": "F-triple", + "Flags": 0, + "FontDesc": "", + "Colour": "#acd1a8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 19, + "Name": "F-triple Double", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { @@ -146087,28 +146303,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -146121,7 +146337,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -146129,22 +146345,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7D8C93", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7D8C93", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -146152,31 +146352,23 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#C678DD", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -146184,7 +146376,7 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -146192,59 +146384,59 @@ "BgColour": "#282C34", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#56AFD7", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { @@ -146321,28 +146513,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Atom One Light", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -146355,7 +146547,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -146363,22 +146555,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -146386,31 +146562,23 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#A626A4", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -146418,7 +146586,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -146426,57 +146594,57 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#4078F2", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", @@ -146555,28 +146723,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Xcode inspired", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -146589,7 +146757,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -146597,22 +146765,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -146620,31 +146772,23 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#B309A1", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -146652,7 +146796,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -146660,57 +146804,57 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#05314D", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#05314D", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", @@ -146789,28 +146933,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -146823,7 +146967,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -146831,22 +146975,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -146854,31 +146982,23 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F0055", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -146886,7 +147006,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -146894,59 +147014,59 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#000099", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#7F9FBF", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#7F9FBF", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -147023,28 +147143,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -147057,7 +147177,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -147065,22 +147185,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -147088,31 +147192,23 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#DFC47D", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -147120,7 +147216,7 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -147128,59 +147224,59 @@ "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2DF", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#A893CC", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#A893CC", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -147257,28 +147353,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -147291,30 +147387,14 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 2, - "Name": "Single line comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 4, + "Id": 2, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -147322,31 +147402,23 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC7832", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -147354,7 +147426,7 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -147362,59 +147434,59 @@ "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#FFC66D", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#84B977", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#84B977", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -147491,28 +147563,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Emacsen", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -147525,7 +147597,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -147533,22 +147605,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -147556,31 +147612,23 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#678CB1", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -147588,7 +147636,7 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -147596,59 +147644,59 @@ "BgColour": "#234059", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#DC322F", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#DC322F", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { @@ -147725,28 +147773,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -147759,7 +147807,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -147767,22 +147815,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -147790,31 +147822,23 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -147822,7 +147846,7 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -147830,59 +147854,59 @@ "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -147959,28 +147983,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -147993,7 +148017,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -148001,22 +148025,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -148024,31 +148032,23 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -148056,7 +148056,7 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -148064,59 +148064,59 @@ "BgColour": "#2e3436", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { @@ -148193,28 +148193,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "BlueHippo", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -148227,62 +148227,38 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 4, - "Name": "Number", - "Flags": 0, - "FontDesc": "", - "Colour": "#008080", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "JavaScript keyword", + "Id": 2, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -148290,7 +148266,7 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -148298,59 +148274,59 @@ "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#20B2AA", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#FF7F50", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#FF7F50", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -148427,28 +148403,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "My vim dark", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -148461,7 +148437,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -148469,22 +148445,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -148492,31 +148452,23 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -148524,7 +148476,7 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -148532,59 +148484,59 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { @@ -148661,28 +148613,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Oblivion", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -148695,7 +148647,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -148703,22 +148655,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -148726,31 +148662,23 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -148758,7 +148686,7 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -148766,59 +148694,59 @@ "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -148895,28 +148823,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "RecognEyes", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -148929,7 +148857,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -148937,22 +148865,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -148960,31 +148872,23 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#00D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -148992,7 +148896,7 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -149000,59 +148904,59 @@ "BgColour": "#101020", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#D9E577", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { @@ -149129,28 +149033,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Roboticket", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -149163,7 +149067,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -149171,22 +149075,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -149194,31 +149082,23 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#295F94", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -149226,7 +149106,7 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -149234,59 +149114,59 @@ "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#B05A65", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#566874", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#566874", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -149363,28 +149243,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -149397,7 +149277,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -149405,22 +149285,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -149428,31 +149292,23 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF007F", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -149460,7 +149316,7 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -149468,57 +149324,57 @@ "BgColour": "#272822", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#A7EC21", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", @@ -149597,28 +149453,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -149631,7 +149487,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -149639,22 +149495,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -149662,31 +149502,23 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#B294BB", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -149694,7 +149526,7 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -149702,59 +149534,59 @@ "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#81A2BE", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#CED1CF", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#CED1CF", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { @@ -149831,28 +149663,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Vim Desert", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -149865,7 +149697,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -149873,22 +149705,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -149896,31 +149712,23 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#F6E06B", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -149928,7 +149736,7 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -149936,59 +149744,59 @@ "BgColour": "#262626", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#997DC4", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { @@ -150065,28 +149873,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -150099,7 +149907,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -150107,22 +149915,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -150130,31 +149922,23 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#3070A0", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -150162,7 +149946,7 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -150170,59 +149954,59 @@ "BgColour": "#151515", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { @@ -150299,28 +150083,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "One Dark Pro", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -150333,7 +150117,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -150341,22 +150125,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -150364,31 +150132,23 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -150396,7 +150156,7 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -150404,59 +150164,59 @@ "BgColour": "#282c34", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#61afef", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { @@ -150533,28 +150293,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -150567,7 +150327,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -150575,22 +150335,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -150598,31 +150342,23 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -150630,7 +150366,7 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -150638,57 +150374,57 @@ "BgColour": "#000000", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", @@ -150767,28 +150503,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Darkside-light", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -150801,7 +150537,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -150809,22 +150545,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -150832,31 +150552,23 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#c1721d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -150864,7 +150576,7 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -150872,57 +150584,57 @@ "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", @@ -151001,28 +150713,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Darkside", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -151034,63 +150746,39 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 1, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 4, - "Name": "Number", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", + "Id": 2, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -151098,7 +150786,7 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -151106,57 +150794,57 @@ "BgColour": "#222324", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", @@ -151235,28 +150923,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -151269,7 +150957,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -151277,22 +150965,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -151300,31 +150972,23 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -151332,7 +150996,7 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -151340,57 +151004,57 @@ "BgColour": "#12100f", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", @@ -151469,28 +151133,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Earthsong-light", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -151503,7 +151167,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -151511,22 +151175,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -151534,31 +151182,23 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -151566,7 +151206,7 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -151574,57 +151214,57 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", @@ -151703,28 +151343,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Earthsong", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -151737,7 +151377,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -151745,22 +151385,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -151768,31 +151392,23 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -151800,7 +151416,7 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -151808,57 +151424,57 @@ "BgColour": "#36312c", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", @@ -151937,28 +151553,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -151971,7 +151587,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -151979,22 +151595,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -152002,31 +151602,23 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -152034,7 +151626,7 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -152042,59 +151634,59 @@ "BgColour": "#22272e", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#A9B665", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { @@ -152171,28 +151763,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -152205,7 +151797,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -152213,22 +151805,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -152236,31 +151812,23 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#ea6962", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -152268,7 +151836,7 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -152276,57 +151844,57 @@ "BgColour": "#292828", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#a9b665", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", @@ -152405,28 +151973,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Gruvbox", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -152439,7 +152007,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -152447,22 +152015,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -152470,31 +152022,23 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#fe8019", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -152502,7 +152046,7 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -152510,59 +152054,59 @@ "BgColour": "#383838", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { @@ -152639,28 +152183,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -152673,7 +152217,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -152681,22 +152225,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -152704,31 +152232,23 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -152736,7 +152256,7 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -152744,57 +152264,57 @@ "BgColour": "#080a0c", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", @@ -152873,28 +152393,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Legacy-light", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -152907,7 +152427,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -152915,22 +152435,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -152938,31 +152442,23 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -152970,7 +152466,7 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -152978,57 +152474,57 @@ "BgColour": "#ffffff", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", @@ -153107,28 +152603,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Legacy", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -153141,7 +152637,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -153149,22 +152645,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -153172,31 +152652,23 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -153204,7 +152676,7 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -153212,57 +152684,57 @@ "BgColour": "#212933", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", @@ -153341,28 +152813,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Solarized+", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -153375,7 +152847,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -153383,22 +152855,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -153406,31 +152862,23 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -153438,7 +152886,7 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -153446,57 +152894,57 @@ "BgColour": "#002B36", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", @@ -153575,28 +153023,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Tango Dark", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -153609,7 +153057,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -153617,22 +153065,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -153640,31 +153072,23 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -153672,7 +153096,7 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -153680,59 +153104,59 @@ "BgColour": "#2e3434", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#EED247", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { @@ -153809,28 +153233,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Tokyo Light", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -153843,30 +153267,14 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 2, - "Name": "Single line comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#8ca6a6", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 4, + "Id": 2, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -153874,31 +153282,23 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff5792", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -153906,7 +153306,7 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -153914,59 +153314,59 @@ "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#e64100", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { @@ -154043,28 +153443,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Tokyo Night", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -154077,7 +153477,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -154085,22 +153485,6 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", @@ -154108,31 +153492,23 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#f7768e", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -154140,7 +153516,7 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -154148,59 +153524,59 @@ "BgColour": "#24283b", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#7aa2f7", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { @@ -154277,28 +153653,28 @@ "Size": -1 }] }, { - "Name": "javascript", + "Name": "fortran", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 3, - "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", - "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", - "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", - "KeyWords3": "Array Date Math NumberObject URL document window", + "Id": 36, + "KeyWords0": "access action advance allocatable allocate apostrophe assign assignment associate asynchronous backspace bind blank blockdata call case character class close common complex contains continue cycle data deallocate decimal default delim dimension direct do double doubleprecision dowhile else elseif elsewhere encoding end endassociate endblockdata enddo endfile endforall endfunction endif endinterface endmodule endprogram endselect endsubroutine endtype endwhere entry eor equivalence err errmsg exist exit external file flush fmt forall form format formatted function go goto id if implicit in include inout inquire integer intent interface intrinsic iolength iomsg iostat kind len logical module name named namelist nextrec nml none nullify number only open opened operator optional out pad parameter pass pause pending pointer pos position precision print private program protected public quote read readwrite real rec recl recursive result return rewind save select selectcase selecttype sequential sign size stat status stop stream subroutine target then to type unformatted unit use value volatile wait where while write", + "KeyWords1": "abs achar acos acosd adjustl adjustr aimag aimax0 aimin0 aint ajmax0 ajmin0 akmax0 akmin0 all allocated alog alog10 amax0 amax1 amin0 amin1 amod anint any asin asind associated atan atan2 atan2d atand bit_size bitest bitl bitlr bitrl bjtest bktest break btest cabs ccos cdabs cdcos cdexp cdlog cdsin cdsqrt ceiling cexp char clog cmplx conjg cos cosd cosh count cpu_time cshift csin csqrt dabs dacos dacosd dasin dasind datan datan2 datan2d datand date date_and_time dble dcmplx dconjg dcos dcosd dcosh dcotan ddim dexp dfloat dfloti dflotj dflotk digits dim dimag dint dlog dlog10 dmax1 dmin1 dmod dnint dot_product dprod dreal dsign dsin dsind dsinh dsqrt dtan dtand dtanh eoshift epsilon errsns exp exponent float floati floatj floatk floor fraction free huge iabs iachar iand ibclr ibits ibset ichar idate idim idint idnint ieor ifix iiabs iiand iibclr iibits iibset iidim iidint iidnnt iieor iifix iint iior iiqint iiqnnt iishft iishftc iisign ilen imax0 imax1 imin0 imin1 imod index inint inot int int1 int2 int4 int8 ior iqint iqnint ishft ishftc isign isnan izext jiand jibclr jibits jibset jidim jidint jidnnt jieor jifix jint jior jiqint jiqnnt jishft jishftc jisign jmax0 jmax1 jmin0 jmin1 jmod jnint jnot jzext kiabs kiand kibclr kibits kibset kidim kidint kidnnt kieor kifix kind kint kior kishft kishftc kisign kmax0 kmax1 kmin0 kmin1 kmod knint knot kzext lbound leadz len len_trim lenlge lge lgt lle llt log log10 logical lshift malloc matmul max max0 max1 maxexponent maxloc maxval merge min min0 min1 minexponent minloc minval mod modulo mvbits nearest nint not number_of_processors nworkers pack popcnt poppar precision present product radix random random_number random_seed range real repeat reshape rrspacing rshift scale scan secnds selected_int_kind selected_real_kind set_exponent shape sign sin sind sinh size sizeof sngl snglq spacing spread sqrt sum system_clock tan tand tanh tiny transfer transpose trim ubound unpack verify", + "KeyWords2": "cdabs cdcos cdexp cdlog cdsin cdsqrt cotan cotand dcmplx dconjg dcotan dcotand decode dimag dll_export dll_import doublecomplex dreal dvchk encode find flen flush getarg getcharqq getcl getdat getenv gettim hfix ibchng identifier imag int1 int2 int4 intc intrup invalop iostat_msg isha ishc ishl jfix lacfar locking locnear map nargs nbreak ndperr ndpexc offset ovefl peekcharqq precfill prompt qabs qacos qacosd qasin qasind qatan qatan2 qatand qcmplx qconjg qcos qcosd qcosh qdim qexp qext qextd qfloat qimag qlog qlog10 qmax1 qmin1 qmod qreal qsign qsin qsind qsinh qsqrt qtan qtand qtanh ran rand randu rewrite segment setdat settim system timer undfl union unlock val virtual volatile zabs zcos zexp zlog zsin zsqrt", + "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", - "SubstyleBase": 11, + "Extensions": "*.f;*.f90", + "SubstyleBase": -1, "WordSet": [{ - "index": 3, + "index": -1, "is_substyle": false }, { - "index": 1, + "index": -1, "is_substyle": false }, { - "index": 2, - "is_substyle": true + "index": -1, + "is_substyle": false }, { - "index": 4, + "index": -1, "is_substyle": false }], "Properties": [{ @@ -154311,7 +153687,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Block comment", + "Name": "Comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -154319,54 +153695,30 @@ "Size": -1 }, { "Id": 2, - "Name": "Single line comment", - "Flags": 0, - "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 3, - "Name": "Javadoc block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 4, "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 5, - "Name": "JavaScript keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { - "Id": 6, - "Name": "String", + "Id": 3, + "Name": "String 1", "Flags": 0, "FontDesc": "", "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 7, - "Name": "Character", + "Id": 4, + "Name": "String 2", "Flags": 0, "FontDesc": "", "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 10, + "Id": 6, "Name": "Operator", "Flags": 0, "FontDesc": "", @@ -154374,7 +153726,7 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 11, + "Id": 7, "Name": "Identifier", "Flags": 0, "FontDesc": "", @@ -154382,59 +153734,59 @@ "BgColour": "#343d46", "Size": -1 }, { - "Id": 12, - "Name": "Open String", + "Id": 8, + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 15, - "Name": "Javadoc single line comment", + "Id": 9, + "Name": "Word 2", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 16, - "Name": "JavaScript functions", + "Id": 10, + "Name": "Word 3", "Flags": 0, "FontDesc": "", - "Colour": "#85add6", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 19, - "Name": "JavaScript global classes", + "Id": 11, + "Name": "Pre processor", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 17, - "Name": "Javadoc keyword", + "Id": 12, + "Name": "Operator 2", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 18, - "Name": "Javadoc keyword error", + "Id": 13, + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 2, - "Name": "Variables", - "Flags": 16, + "Id": 14, + "Name": "Continuation", + "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { @@ -154511,16 +153863,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -154553,52 +153905,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C678DD", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#C678DD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#C678DD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC235", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#EC7600", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#C678DD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", + "BgColour": "#282C34", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -154673,16 +154097,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Atom One Light", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -154715,52 +154139,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#A626A4", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#A626A4", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#A626A4", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#C18401", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#50A14F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#A626A4", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -154835,16 +154331,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Xcode inspired", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -154877,52 +154373,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#B309A1", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#C81B28", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -154997,16 +154565,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -155039,52 +154607,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#7F0055", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F0055", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F0055", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#557F5F", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#0000C0", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#0000C0", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F0055", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#557F5F", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -155159,16 +154799,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -155201,52 +154841,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#DFC47D", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#DFC47D", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#DFC47D", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC9393", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#DFC47D", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -155321,16 +155033,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -155363,52 +155075,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#CC7832", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC7832", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC7832", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#629755", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#A5C25C", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC7832", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#808080", + "BgColour": "#2B2B2B", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -155483,16 +155267,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Emacsen", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -155525,52 +155309,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#678CB1", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#678CB1", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#678CB1", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#D5A920", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#B58900", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#B58900", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#678CB1", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", + "BgColour": "#234059", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -155645,16 +155501,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -155687,52 +155543,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -155807,16 +155735,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -155828,71 +155756,143 @@ "index": -1, "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 1, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#888a85", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 2, + "Name": "Number", + "Flags": 0, + "FontDesc": "", + "Colour": "#ce5c00", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 3, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#edd400", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 4, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 5, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 6, + "Name": "CPU Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 1, - "Name": "Comment", + "Id": 9, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 2, - "Name": "Word", + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 3, - "Name": "Label", + "Id": 11, + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 4, - "Name": "Hide (@)", + "Id": 12, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 5, - "Name": "Command", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 6, - "Name": "Identifier", + "Id": 14, + "Name": "Ext Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 7, - "Name": "Operator", + "Id": 15, + "Name": "Comment directive", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { @@ -155969,16 +155969,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "BlueHippo", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -156011,52 +156011,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#1E90FF", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#1E90FF", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#1E90FF", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#C71585", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#1E90FF", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#696969", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -156131,16 +156203,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "My vim dark", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -156173,52 +156245,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF00FF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", + "BgColour": "#000000", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -156293,16 +156437,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Oblivion", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -156335,52 +156479,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -156455,16 +156671,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "RecognEyes", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -156497,52 +156713,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#00D0D0", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#00D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#00D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8080", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#DC78DC", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#00D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", + "BgColour": "#101020", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -156617,16 +156905,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Roboticket", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -156659,52 +156947,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#295F94", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#295F94", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#295F94", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", "Flags": 0, "FontDesc": "", "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#295F94", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -156779,16 +157139,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -156821,52 +157181,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FF007F", + "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF007F", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF007F", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#52E3F6", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#ECE47E", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF007F", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -156941,16 +157373,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -156983,52 +157415,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#B294BB", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#B294BB", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#B294BB", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#F0C674", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#B294BB", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -157103,16 +157607,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Vim Desert", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -157145,52 +157649,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#F6E06B", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#F6E06B", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#F6E06B", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#67C3E7", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8E8D", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF8E8D", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#F6E06B", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#67C3E7", + "BgColour": "#262626", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -157265,16 +157841,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -157286,71 +157862,143 @@ "index": -1, "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 1, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 2, + "Name": "Number", + "Flags": 0, + "FontDesc": "", + "Colour": "#CF6A4C", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 3, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#99AD6A", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 4, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 5, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 6, + "Name": "CPU Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#3070A0", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#3070A0", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#3070A0", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { - "Id": 1, - "Name": "Comment", + "Id": 9, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 2, - "Name": "Word", + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { - "Id": 3, - "Name": "Label", + "Id": 11, + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 4, - "Name": "Hide (@)", + "Id": 12, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 5, - "Name": "Command", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#3070A0", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 6, - "Name": "Identifier", + "Id": 14, + "Name": "Ext Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { - "Id": 7, - "Name": "Operator", + "Id": 15, + "Name": "Comment directive", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { @@ -157427,16 +158075,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "One Dark Pro", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -157469,52 +158117,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", + "Flags": 0, + "FontDesc": "", + "Colour": "#abb2bf", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#5c6370", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#5c6370", + "BgColour": "#282c34", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -157589,16 +158309,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -157631,52 +158351,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#000000", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -157751,16 +158543,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Darkside-light", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -157793,52 +158585,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#c1721d", + "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#c1721d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#c1721d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#c1721d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -157913,16 +158777,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Darkside", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -157955,52 +158819,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f08d24", + "Colour": "#bababa", "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#1cc3e8", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#f2d42c", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#222324", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -158075,16 +159011,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -158117,52 +159053,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#12100f", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -158237,16 +159245,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Earthsong-light", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -158279,52 +159287,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -158399,16 +159479,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Earthsong", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -158441,52 +159521,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#db784d", + "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8bb39", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#7a7267", + "BgColour": "#36312c", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -158561,16 +159713,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -158603,50 +159755,122 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#EA6962", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#EA6962", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#EA6962", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#7DAEA3", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", + "Flags": 0, + "FontDesc": "", + "Colour": "#adbac7", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8A657", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#EA6962", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { @@ -158723,16 +159947,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -158752,63 +159976,135 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 1, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 2, + "Name": "Number", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3869b", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 3, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8a657", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 4, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 5, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 6, + "Name": "CPU Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#ea6962", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#ea6962", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#ea6962", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 1, - "Name": "Comment", + "Id": 9, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 2, - "Name": "Word", + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d4be98", "BgColour": "#292828", "Size": -1 }, { - "Id": 3, - "Name": "Label", + "Id": 11, + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { - "Id": 4, - "Name": "Hide (@)", + "Id": 12, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 5, - "Name": "Command", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#ea6962", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 6, - "Name": "Identifier", + "Id": 14, + "Name": "Ext Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { - "Id": 7, - "Name": "Operator", + "Id": 15, + "Name": "Comment directive", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { @@ -158885,16 +160181,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Gruvbox", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -158927,52 +160223,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#fe8019", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#fe8019", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#fe8019", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#fa5c4b", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#b8bb26", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#fe8019", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#383838", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -159047,16 +160415,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -159089,52 +160457,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#080a0c", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -159209,16 +160649,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Legacy-light", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -159251,52 +160691,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -159371,16 +160883,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Legacy", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -159413,52 +160925,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#748aa6", + "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff410d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -159533,16 +161117,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Solarized+", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -159575,52 +161159,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#839496", "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#5b858b", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB4B16", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#CB4B16", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#5b858b", + "BgColour": "#002B36", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -159695,16 +161351,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Tango Dark", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -159737,52 +161393,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#888A85", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#888A85", + "BgColour": "#2e3434", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -159857,16 +161585,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Tokyo Light", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -159899,52 +161627,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#ff5792", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff5792", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff5792", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#9995b7", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#00b368", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff5792", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#8ca6a6", + "BgColour": "#faf1dc", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -160019,16 +161819,16 @@ "Size": -1 }] }, { - "Name": "batch", + "Name": "assembly", "Theme": "Tokyo Night", "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -160061,52 +161861,124 @@ "Size": -1 }, { "Id": 2, - "Name": "Word", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "Label", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Hide (@)", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Command", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f7768e", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Identifier", + "Name": "CPU Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Operator", + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f7768e", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f7768e", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 8, + "Name": "Register", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff9e64", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 9, + "Name": "Directive", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 + }, { + "Id": 10, + "Name": "Directive Operand", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 11, + "Name": "Comment block", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 12, + "Name": "Character", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 13, + "Name": "String EOL", + "Flags": 0, + "FontDesc": "", + "Colour": "#9ece6a", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 14, + "Name": "Ext Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#f7768e", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 15, + "Name": "Comment directive", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", + "BgColour": "#24283b", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -160168,105 +162040,177 @@ "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 33, + "Name": "Line Numbers", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }] + }, { + "Name": "assembly", + "Theme": "Alacritty: Mariana", + "Flags": 5, + "Id": 34, + "KeyWords0": "aaa aad aam aas adc add and arpl bound bsf bsr bswap bt btc btr bts call callq cbw cdq cflush clc cld cli clts cmc cmova cmovae cmovb cmovbe cmovc cmove cmovg cmovge cmovl cmovle cmovna cmovnae cmovnb cmovnbe cmovnc cmovne cmovng cmovnge cmovnl cmovnle cmovno cmovnp cmovns cmovnz cmovo cmovp cmovpe cmovpo cmovs cmovz cmp cmps cmpsb cmpsd cmpsw cmpxchg cmpxchg486 cmpxchg8b cpuid cwd cwde daa das dec div emms enter esc femms hlt ibts icebp idiv imul in inc ins insb insd insw int int01 int03 int1 int3 into invd invlpg iret iretd iretdf iretf iretw ja jae jb jbe jc jcxz je jecxz jg jge jl jle jmp jna jnae jnb jnbe jnc jne jng jnge jnl jnle jno jnp jns jnz jo jp jpe jpo js jz lahf lar lds lea leave les lfs lgdt lgs lidt lldt lmsw loadall loadall286 lock lods lodsb lodsd lodsw loop loopd loope looped loopew loopne loopned loopnew loopnz loopnzd loopnzw loopw loopz loopzd loopzw lsl lss ltr mov movs movsb movsd movsw movsx movzx mul neg nop not or out outs outsb outsd outsw pop popa popad popaw popf popfd popfw push pusha pushad pushaw pushd pushf pushfd pushfw pushw rcl rcr rdmsr rdpmc rdshr rdtsc rep repe repne repnz repz ret retf retn retq rol ror rsdc rsldt rsm rsts sahf sal salc sar sbb scas scasb scasd scasw seta setae setb setbe setc sete setg setge setl setle setna setnae setnb setnbe setnc setne setng setnge setnl setnle setno setnp setns setnz seto setp setpe setpo sets setz sgdt shl shld shr shrd sidt sldt smi smint smintold smsw stc std sti stos stosb stosd stosw str sub svdc svldt svts syscall sysenter sysexit sysret test ud0 ud1 ud2 umov verr verw wait wbinvd wrmsr wrshr xadd xbts xchg xlat xlatb xor", + "KeyWords1": "f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisub fisubr fld fld1 fldcw fldenv fldenvd fldenvw fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnsaved fnsavew fnstcw fnstenv fnstenvd fnstenvw fnstsw fpatan fprem fprem1 fptan frndint frstor frstord frstorw fsave fsaved fsavew fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstenvd fstenvw fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomp fucompp fwait fxam fxch fxtract fyl2x fyl2xp1", + "KeyWords2": "ah al ax bh bl bp bx ch cl cr0 cr2 cr3 cr4 cs cx dh di dl dr0 dr1 dr2 dr3 dr6 dr7 ds dx eax ebp ebx ecx edi edx es esi esp fs gs mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 si sp ss st st0 st1 st2 st3 st4 st5 st6 st7 tr3 tr4 tr5 tr6 tr7 xmm0 xmm1 xmm2 xmm3 xmm4 xmm5 xmm6 xmm7", + "KeyWords3": "%arg %assign %define %elif %elifctk %elifdef %elifid %elifidn %elifidni %elifmacro %elifnctk %elifndef %elifnid %elifnidn %elifnidni %elifnmacro %elifnnum %elifnstr %elifnum %elifstr %else %endif %endmacro %endrep %error %exitrep %iassign %idefine %if %ifctk %ifdef %ifid %ifidn %ifidni %ifmacro %ifnctk %ifndef %ifnid %ifnidn %ifnidni %ifnmacro %ifnnum %ifnstr %ifnum %ifstr %imacro %include %line %local %macro %out %pop %push %rep %repl %rotate %stacksize %strlen %substr %undef %xdefine %xidefine .186 .286 .286c .286p .287 .386 .386c .386p .387 .486 .486p .8086 .8087 .alpha .break .code .const .continue .cref .data .data? .dosseg .else .elseif .endif .endw .err .err1 .err2 .errb .errdef .errdif .errdifi .erre .erridn .erridni .errnb .errndef .errnz .exit .fardata .fardata? .if .lall .lfcond .list .listall .listif .listmacro .listmacroall .model .msfloat .no87 .nocref .nolist .nolist .nolistif .nolistmacro .radix .repeat .sall .seq .sfcond .stack .startup .tfcond .type .until .untilcxz .while .xall .xcref .xlist absolute alias align align alignb assume at bits catstr comm comment common cpu db db dd dd df dosseg dq dq dt dt dup dw dw echo else elseif elseif1 elseif2 elseifb elseifdef elseifdif elseifdifi elseife elseifidn elseifidni elseifnb elseifndef end endif endm endp ends endstruc eq equ equ even exitm export extern extern externdef extrn for forc ge global goto group group gt high highword iend if if1 if2 ifb ifdef ifdif ifdifi ife ifidn ifidni ifnb ifndef import incbin include includelib instr invoke irp irpc istruc label le length lengthof local low lowword lroffset lt macro mask mod name ne offset opattr option org org page popcontext proc proto ptr public purge pushcontext record repeat rept resb resd resq rest resw section section seg segment short size sizeof sizestr struc struct struct substr subtitle subttl textequ this times title type typedef union use16 use32 while width", + "KeyWords4": "$ $ $$ %0 %1 %2 %3 %4 %5 %6 %7 %8 %9 .bss .data .text ? @b @f a16 a32 abs addr all assumes at basic byte byte c carry? casemap common compact cpu dotname dword dword emulator epilogue error export expr16 expr32 far far far16 far32 farstack flat flat flat forceframe fortran fword huge language large large listing ljmp loadds m510 medium memory near near near16 near32 nearstack nodotname noemulator nokeyword noljmp nom510 none nonunique nooldmacros nooldstructs noreadonly noscoped nosignextend nosplit nothing notpublic o16 o32 oldmacros oldstructs os_dos overflow? para parity? pascal private prologue qword radix readonly real10 real4 real8 req sbyte scoped sdword seq setif2 sign? small smallstack stdcall sword syscall tbyte tiny use16 use32 uses vararg word word wrt zero?", + "Extensions": "*.asm;*.s;*.S", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 1, + "Name": "Comment", + "Flags": 0, + "FontDesc": "", + "Colour": "GREY", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 2, + "Name": "Number", + "Flags": 0, + "FontDesc": "", + "Colour": "#82c4c4", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 3, + "Name": "String", + "Flags": 0, + "FontDesc": "", + "Colour": "#acd1a8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 4, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 5, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 6, + "Name": "CPU Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8b6d8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 7, + "Name": "Math Instruction", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8b6d8", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 7, + "Name": "Math Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#d8b6d8", + "BgColour": "#343d46", "Size": -1 - }] - }, { - "Name": "batch", - "Theme": "Alacritty: Mariana", - "Flags": 5, - "Id": 12, - "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.bat;*.batch", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", + "Id": 8, + "Name": "Register", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 1, - "Name": "Comment", + "Id": 9, + "Name": "Directive", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 2, - "Name": "Word", + "Id": 10, + "Name": "Directive Operand", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { - "Id": 3, - "Name": "Label", + "Id": 11, + "Name": "Comment block", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { - "Id": 4, - "Name": "Hide (@)", + "Id": 12, + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 5, - "Name": "Command", + "Id": 13, + "Name": "String EOL", "Flags": 0, "FontDesc": "", - "Colour": "#d8b6d8", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 6, - "Name": "Identifier", + "Id": 14, + "Name": "Ext Instruction", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 7, - "Name": "Operator", + "Id": 15, + "Name": "Comment directive", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { @@ -160343,28 +162287,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -160377,7 +162321,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -160385,7 +162329,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#7D8C93", @@ -160393,79 +162337,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFCD22", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#EC7600", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7D8C93", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#E0E2E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#F35151", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7D8C93", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", @@ -160473,55 +162385,47 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#C678DD", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#56AFD7", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#F35151", + "Colour": "#56AFD7", "BgColour": "#282C34", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", @@ -160529,18 +162433,18 @@ "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { @@ -160617,28 +162521,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Atom One Light", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -160651,7 +162555,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -160659,7 +162563,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#A0A1A7", @@ -160667,79 +162571,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#986801", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#50A14F", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#A0A1A7", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#A0A1A7", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", @@ -160747,7 +162619,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#383A42", @@ -160755,64 +162627,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#A626A4", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#4078F2", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#4078F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#383A42", "BgColour": "#FFFFFF", @@ -160891,28 +162755,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Xcode inspired", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -160925,7 +162789,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -160933,7 +162797,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#1D8711", @@ -160941,79 +162805,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#340DD4", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C81B28", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#1D8711", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#1D8711", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -161021,7 +162853,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -161029,64 +162861,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#B309A1", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#05314D", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#05314D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#000000", "BgColour": "#FFFFFF", @@ -161165,28 +162989,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -161199,7 +163023,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -161207,7 +163031,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#557F5F", @@ -161215,79 +163039,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF0000", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#0000C0", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#557F5F", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#333333", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF5809", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#557F5F", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#333333", @@ -161295,74 +163087,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F0055", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#000099", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#FF5809", + "Colour": "#000099", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#7F9FBF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#7F9FBF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#333333", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -161439,28 +163223,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -161473,7 +163257,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -161481,7 +163265,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#7F9F7F", @@ -161489,79 +163273,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#EDDD3D", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#CC9393", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7F9F7F", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#DDDDCC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#6699CC", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7F9F7F", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", @@ -161569,74 +163321,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#DFC47D", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2DF", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#6699CC", + "Colour": "#F2F2DF", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#A893CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#A893CC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { @@ -161713,28 +163457,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -161747,15 +163491,15 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#808080", @@ -161763,79 +163507,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#6897BB", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#A5C25C", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#629755", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#629755", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -161843,74 +163555,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC7832", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#FFC66D", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFC66D", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#84B977", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#84B977", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { @@ -161987,28 +163691,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Emacsen", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -162021,7 +163725,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -162029,7 +163733,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#586E75", @@ -162037,79 +163741,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C59910", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#B58900", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#586E75", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#2B9DED", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#586E75", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -162117,74 +163789,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#678CB1", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#2B9DED", + "Colour": "#2AA198", "BgColour": "#234059", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#DC322F", "BgColour": "#234059", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#DC322F", "BgColour": "#234059", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#839496", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { @@ -162261,28 +163925,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -162295,7 +163959,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -162303,7 +163967,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -162311,79 +163975,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#F5DEB3", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", @@ -162391,74 +164023,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#BED6FF", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#D9E577", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#D9E577", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { @@ -162535,28 +164159,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -162569,7 +164193,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -162577,7 +164201,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#888a85", @@ -162585,79 +164209,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#ce5c00", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#ce5c00", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#edd400", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888a85", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d3d7cf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#729fcf", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#888a85", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", @@ -162665,74 +164257,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#edd400", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#729fcf", + "Colour": "#BED6FF", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { @@ -162809,28 +164393,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "BlueHippo", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -162843,7 +164427,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", @@ -162851,7 +164435,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#696969", @@ -162859,79 +164443,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#008080", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C71585", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#696969", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#D87093", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#696969", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -162939,74 +164491,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#1E90FF", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#20B2AA", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#D87093", + "Colour": "#20B2AA", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#FF7F50", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#FF7F50", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#000000", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -163083,28 +164627,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "My vim dark", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -163117,7 +164661,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -163125,7 +164669,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#00FFFF", @@ -163133,79 +164677,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FF00FF", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00FFFF", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF8000", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#00FFFF", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", @@ -163213,74 +164725,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFF00", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#FF8000", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { @@ -163357,28 +164861,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Oblivion", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -163391,7 +164895,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -163399,7 +164903,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#C7DD0C", @@ -163407,79 +164911,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#7FB347", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#7FB347", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFC600", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#C7DD0C", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#C7DD0C", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -163487,74 +164959,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#1E1E1E", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#FFC600", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#C7DD0C", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#BED6FF", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#D9E577", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#D9E577", "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 }, { @@ -163631,28 +165095,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "RecognEyes", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -163665,7 +165129,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -163673,7 +165137,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#00E000", @@ -163681,79 +165145,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFF00", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#FFFF00", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#DC78DC", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#00E000", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#00E000", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D0D0D0", @@ -163761,74 +165193,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D0D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#00D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#DC78DC", "BgColour": "#101020", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#00E000", "BgColour": "#101020", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#BED6FF", "BgColour": "#101020", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#D9E577", "BgColour": "#101020", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#D9E577", "BgColour": "#101020", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 }, { @@ -163905,28 +165329,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Roboticket", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -163939,7 +165363,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -163947,7 +165371,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#AD95AF", @@ -163955,79 +165379,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#AF0F91", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#AF0F91", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#317ECC", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#AD95AF", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#55aa55", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#AD95AF", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#585858", @@ -164035,74 +165427,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#585858", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#295F94", - "BgColour": "#F5F5F5", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#B05A65", + "Colour": "#317ECC", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#AD95AF", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#55aa55", + "Colour": "#B05A65", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#566874", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#566874", "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#585858", + "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 }, { @@ -164179,28 +165563,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -164213,7 +165597,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -164221,7 +165605,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -164229,79 +165613,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C48CFF", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#C48CFF", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ECE47E", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -164309,7 +165661,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -164317,47 +165669,39 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#FF007F", - "BgColour": "#272822", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#A7EC21", + "Colour": "#ECE47E", "BgColour": "#272822", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#FFFFFF", "BgColour": "#272822", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#A7EC21", "BgColour": "#272822", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -164365,16 +165709,16 @@ "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#CFBFAD", "BgColour": "#272822", @@ -164453,28 +165797,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -164487,7 +165831,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -164495,7 +165839,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#969896", @@ -164503,79 +165847,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#DE935F", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#DE935F", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#B5BD68", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#969896", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#CC6666", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#969896", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#C5C8C6", @@ -164583,74 +165895,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#C5C8C6", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#B294BB", - "BgColour": "#1D1F21", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#81A2BE", + "Colour": "#B5BD68", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#969896", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#CC6666", + "Colour": "#81A2BE", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#CED1CF", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#CED1CF", "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 }, { @@ -164727,28 +166031,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Vim Desert", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -164761,7 +166065,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -164769,7 +166073,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#67C3E7", @@ -164777,79 +166081,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C64947", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#C64947", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FF8E8D", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#67C3E7", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#B6B193", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#67C3E7", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", @@ -164857,74 +166129,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#F6E06B", - "BgColour": "#262626", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#FF8E8D", "BgColour": "#262626", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#67C3E7", "BgColour": "#262626", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#B6B193", + "Colour": "#FFFFFF", "BgColour": "#262626", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#997DC4", "BgColour": "#262626", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#997DC4", "BgColour": "#262626", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 }, { @@ -165001,28 +166265,28 @@ "Size": -1 }] }, { - "Name": "tcl", - "Theme": "Vim Jellybeans Port", - "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Name": "javascript", + "Theme": "Vim Jellybeans Port", + "Flags": 5, + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -165035,7 +166299,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -165043,7 +166307,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#888888", @@ -165051,79 +166315,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#CF6A4C", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#CF6A4C", "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#99AD6A", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888888", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#79ABFF", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#888888", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", @@ -165131,74 +166363,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#D8D8D8", "BgColour": "#151515", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#3070A0", - "BgColour": "#151515", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#BED6FF", + "Colour": "#99AD6A", "BgColour": "#151515", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#79ABFF", + "Colour": "#BED6FF", "BgColour": "#151515", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#888888", "BgColour": "#151515", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 }, { @@ -165275,28 +166499,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "One Dark Pro", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -165309,7 +166533,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -165317,7 +166541,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#5c6370", @@ -165325,79 +166549,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#d19a66", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#d19a66", "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#98c379", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 6, - "Name": "Operator", + "Name": "String", "Flags": 0, "FontDesc": "", "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", - "Flags": 0, - "FontDesc": "", - "Colour": "#5c6370", - "BgColour": "#282c34", - "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#e06c75", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#5c6370", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#98c379", @@ -165405,74 +166597,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#abb2bf", "BgColour": "#282c34", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#c678dd", - "BgColour": "#282c34", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#61afef", + "Colour": "#98c379", "BgColour": "#282c34", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#c678dd", + "Colour": "#5c6370", "BgColour": "#282c34", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#e06c75", + "Colour": "#61afef", "BgColour": "#282c34", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 }, { @@ -165549,28 +166733,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -165583,7 +166767,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -165591,7 +166775,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -165599,79 +166783,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#8e69c9", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -165679,7 +166831,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -165687,64 +166839,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#000000", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#f2d42c", "BgColour": "#000000", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#000000", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#68c244", "BgColour": "#000000", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#bababa", "BgColour": "#000000", @@ -165823,28 +166967,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Darkside-light", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -165857,7 +167001,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -165865,7 +167009,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -165873,79 +167017,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#7b5baf", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#7b5baf", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#4b8e30", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", @@ -165953,7 +167065,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#222324", @@ -165961,64 +167073,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#c1721d", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#494b4d", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#4b8e30", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#222324", "BgColour": "#e0e0e0", @@ -166097,28 +167201,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Darkside", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -166131,7 +167235,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -166139,7 +167243,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#494b4d", @@ -166147,79 +167251,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#8e69c9", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#8e69c9", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f2d42c", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#494b4d", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#494b4d", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -166227,7 +167299,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -166235,64 +167307,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#f08d24", - "BgColour": "#222324", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#68c244", + "Colour": "#f2d42c", "BgColour": "#222324", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#494b4d", "BgColour": "#222324", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#68c244", "BgColour": "#222324", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#bababa", "BgColour": "#222324", @@ -166371,28 +167435,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -166405,7 +167469,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -166413,7 +167477,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -166421,79 +167485,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -166501,7 +167533,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -166509,64 +167541,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#12100f", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#f8bb39", "BgColour": "#12100f", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#12100f", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#60a365", "BgColour": "#12100f", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#12100f", @@ -166645,28 +167669,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Earthsong-light", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -166679,7 +167703,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -166687,7 +167711,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#d6cab9", @@ -166695,79 +167719,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#d6cab9", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#d6cab9", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", @@ -166775,7 +167767,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", @@ -166783,64 +167775,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#f8bb39", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#d6cab9", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#60a365", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#4d463e", "BgColour": "#ffffff", @@ -166919,28 +167903,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Earthsong", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -166953,7 +167937,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -166961,7 +167945,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#7a7267", @@ -166969,79 +167953,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#f8bb39", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#7a7267", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#7a7267", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -167049,7 +168001,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -167057,64 +168009,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#db784d", - "BgColour": "#36312c", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#60a365", + "Colour": "#f8bb39", "BgColour": "#36312c", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#7a7267", "BgColour": "#36312c", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#60a365", "BgColour": "#36312c", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#ebd1b7", "BgColour": "#36312c", @@ -167193,28 +168137,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -167227,7 +168171,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -167235,7 +168179,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -167243,79 +168187,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#D3869B", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#D3869B", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#D8A657", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#D4BE98", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D4BE98", @@ -167323,74 +168235,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#adbac7", "BgColour": "#22272e", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#EA6962", - "BgColour": "#22272e", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#A9B665", + "Colour": "#D8A657", "BgColour": "#22272e", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#928374", "BgColour": "#22272e", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#D4BE98", + "Colour": "#A9B665", "BgColour": "#22272e", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#D4BE98", "BgColour": "#22272e", "Size": -1 }, { @@ -167467,28 +168371,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -167501,7 +168405,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -167509,7 +168413,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -167517,79 +168421,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#d3869b", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#d3869b", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d8a657", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", @@ -167597,7 +168469,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", @@ -167605,64 +168477,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#ea6962", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#a9b665", + "Colour": "#d8a657", "BgColour": "#292828", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#928374", "BgColour": "#292828", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#a9b665", "BgColour": "#292828", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#d4be98", "BgColour": "#292828", @@ -167741,28 +168605,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Gruvbox", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -167775,7 +168639,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -167783,7 +168647,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#928374", @@ -167791,79 +168655,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#b8bb26", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#928374", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#fdf4c1", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#928374", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#EBDBB2", @@ -167871,74 +168703,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#EBDBB2", "BgColour": "#383838", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#fe8019", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#fdf4c1", + "Colour": "#b8bb26", "BgColour": "#383838", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#928374", "BgColour": "#383838", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 }, { @@ -168015,28 +168839,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -168049,7 +168873,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -168057,7 +168881,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -168065,79 +168889,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#c7f026", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -168145,7 +168937,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -168153,64 +168945,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#080a0c", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#ff410d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ffb20d", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#080a0c", @@ -168289,28 +169073,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Legacy-light", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -168323,7 +169107,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -168331,7 +169115,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#324357", @@ -168339,79 +169123,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#c7f026", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#324357", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#324357", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", @@ -168419,7 +169171,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#444444", @@ -168427,64 +169179,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#ffffff", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#ff410d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#324357", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#ffb20d", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#444444", "BgColour": "#ffffff", @@ -168563,28 +169307,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Legacy", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -168597,7 +169341,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -168605,7 +169349,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#425972", @@ -168613,79 +169357,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#c7f026", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#c7f026", "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#ff410d", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#425972", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#425972", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -168693,7 +169405,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -168701,64 +169413,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#748aa6", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#ffb20d", + "Colour": "#ff410d", "BgColour": "#212933", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#425972", "BgColour": "#212933", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#ffb20d", "BgColour": "#212933", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#aec2e0", "BgColour": "#212933", @@ -168837,28 +169541,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Solarized+", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -168871,7 +169575,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -168879,7 +169583,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#5b858b", @@ -168887,79 +169591,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#268BD2", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#268BD2", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#CB4B16", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#5b858b", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#5b858b", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -168967,7 +169639,7 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -168975,64 +169647,56 @@ "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#859900", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#2AA198", + "Colour": "#CB4B16", "BgColour": "#002B36", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#859900", + "Colour": "#5b858b", "BgColour": "#002B36", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#2AA198", "BgColour": "#002B36", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", "Colour": "#839496", "BgColour": "#002B36", @@ -169111,28 +169775,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Tango Dark", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -169145,7 +169809,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -169153,7 +169817,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#888A85", @@ -169161,79 +169825,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#83E158", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#83E158", "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AD7FA8", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#888A85", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#888A85", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#eeeeec", @@ -169241,74 +169873,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#eeeeec", "BgColour": "#2e3434", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#6FA0CB", - "BgColour": "#2e3434", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#EED247", + "Colour": "#AD7FA8", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#6FA0CB", + "Colour": "#888A85", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#EED247", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 }, { @@ -169385,28 +170009,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Tokyo Light", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -169419,15 +170043,15 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#8ca6a6", @@ -169435,79 +170059,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#5842ff", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#5842ff", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#00b368", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#9995b7", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#9995b7", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#f49725", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#8ca6a6", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#343b58", @@ -169515,74 +170107,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#343b58", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#ff5792", - "BgColour": "#faf1dc", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#e64100", + "Colour": "#00b368", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#9995b7", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#f49725", + "Colour": "#e64100", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 }, { @@ -169659,28 +170243,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Tokyo Night", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -169693,7 +170277,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -169701,7 +170285,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "#565f89", @@ -169709,79 +170293,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#9ece6a", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "#565f89", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#cfc9c2", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "#565f89", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#a9b1d6", @@ -169789,74 +170341,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#a9b1d6", "BgColour": "#24283b", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#f7768e", - "BgColour": "#24283b", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#7aa2f7", + "Colour": "#9ece6a", "BgColour": "#24283b", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#565f89", "BgColour": "#24283b", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#cfc9c2", + "Colour": "#7aa2f7", "BgColour": "#24283b", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 }, { @@ -169933,28 +170477,28 @@ "Size": -1 }] }, { - "Name": "tcl", + "Name": "javascript", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 25, - "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", - "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", - "KeyWords2": "", - "KeyWords3": "", + "Id": 3, + "KeyWords0": "NaN StringtoString abstract any arguments as async await boolean break byte case catch char class const constructor continue debugger declare default delete do double else enum eval export extends false final finally float for from function get goto if implements import in instanceof int interface let long module native new null number of package private protected prototype public readonly require return set short static string super switch symbol synchronized this throw throws transient true try type typeof undefined var void volatile while with yield ", + "KeyWords1": "NaN NumberObject URL activeElement addEventListener adoptNode anchors applets baseURI body close cookie createAttribute createComment createDocumentFragment createElement createTextNode doctype documentElement documentMode documentURI domConfig domain embeds forms getElementById getElementsByClassName getElementsByName getElementsByTagName hasFocus head images implementation importNode inputEncoding lastModified links name normalize normalizeDocument open querySelectorquerySelectorAll readyState referrer removeEventListener renameNode scripts strictErrorChecking title valueOf write writeln", + "KeyWords2": "a addindex addtogroup anchor arg attention author b brief bug c callergraph callgraph category class code cond copybrief copydetails copydoc date def defgroup deprecated details dir dontinclude dot dotfile e else elseif em endcode endcond enddot endhtmlonly endif endlatexonly endlink endmanonly endmsc endverbatim endxmlonly enum example exception extends file fn headerfile hideinitializer htmlinclude htmlonly if ifnot image implements include includelineno ingroup interface internal invariant latexonly li line link mainpage manonly memberof msc n name namespace nosubgrouping note overload p package page par paragraph param post pre private privatesection property protected protectedsection protocol public publicsection ref relates relatesalso remarks return retval sa section see showinitializer since skip skipline struct subpage subsection subsubsection test throw todo tparam typedef union until var verbatim verbinclude version warning weakgroup xmlonly xrefitem", + "KeyWords3": "Array Date Math NumberObject URL document window", "KeyWords4": "", - "Extensions": "*.tcl", - "SubstyleBase": -1, + "Extensions": "*.javascript;*.js;*.qml;*.ts;*.tsx;*.wxcp", + "SubstyleBase": 11, "WordSet": [{ - "index": -1, + "index": 3, "is_substyle": false }, { "index": 1, "is_substyle": false }, { - "index": -1, - "is_substyle": false + "index": 2, + "is_substyle": true }, { - "index": -1, + "index": 4, "is_substyle": false }], "Properties": [{ @@ -169967,7 +170511,7 @@ "Size": -1 }, { "Id": 1, - "Name": "Comment", + "Name": "Block comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -169975,7 +170519,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Comment line", + "Name": "Single line comment", "Flags": 0, "FontDesc": "", "Colour": "GREY", @@ -169983,79 +170527,47 @@ "Size": -1 }, { "Id": 3, - "Name": "Number", + "Name": "Javadoc block comment", "Flags": 0, "FontDesc": "", - "Colour": "#82c4c4", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Word in quote", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#82c4c4", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "In quote", + "Name": "JavaScript keyword", "Flags": 0, "FontDesc": "", - "Colour": "#acd1a8", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 6, - "Name": "Operator", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 21, - "Name": "Block comment", - "Flags": 0, - "FontDesc": "", - "Colour": "GREY", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 20, - "Name": "Comment box", + "Name": "String", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 7, - "Name": "Identifier", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 8, - "Name": "Substitution", - "Flags": 0, - "FontDesc": "", - "Colour": "#f97b58", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 9, - "Name": "Sub brace", + "Name": "Character", "Flags": 0, "FontDesc": "", - "Colour": "GREY", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { "Id": 10, - "Name": "Modifier", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d8dee9", @@ -170063,74 +170575,66 @@ "Size": -1 }, { "Id": 11, - "Name": "Expand", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#d8dee9", "BgColour": "#343d46", "Size": -1 }, { "Id": 12, - "Name": "Keyword", - "Flags": 0, - "FontDesc": "", - "Colour": "#d8b6d8", - "BgColour": "#343d46", - "Size": -1 - }, { - "Id": 13, - "Name": "Function", + "Name": "Open String", "Flags": 0, "FontDesc": "", - "Colour": "#85add6", + "Colour": "#acd1a8", "BgColour": "#343d46", "Size": -1 }, { - "Id": 14, - "Name": "Class", + "Id": 15, + "Name": "Javadoc single line comment", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "GREY", "BgColour": "#343d46", "Size": -1 }, { - "Id": 15, - "Name": "Variable", + "Id": 16, + "Name": "JavaScript functions", "Flags": 0, "FontDesc": "", - "Colour": "#f97b58", + "Colour": "#85add6", "BgColour": "#343d46", "Size": -1 }, { - "Id": 16, - "Name": "Word 5", + "Id": 19, + "Name": "JavaScript global classes", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 17, - "Name": "Word 6", + "Name": "Javadoc keyword", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 18, - "Name": "Word 7", + "Name": "Javadoc keyword error", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { - "Id": 19, - "Name": "Word 8", - "Flags": 0, + "Id": 2, + "Name": "Variables", + "Flags": 16, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 }, { @@ -170207,16 +170711,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -170249,36 +170753,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FFC235", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#E0E2E4", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#C678DD", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -170353,16 +170873,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Atom One Light", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -170395,31 +170915,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#C18401", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#383A42", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#A626A4", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#383A42", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#383A42", @@ -170499,16 +171035,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Xcode inspired", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -170541,31 +171077,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#6F33A7", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#B309A1", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#000000", @@ -170645,16 +171197,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Classic Eclipse", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -170687,36 +171239,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#006600", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#006600", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F0055", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -170791,16 +171359,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -170833,36 +171401,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#D25B5B", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#DDDDCC", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#DFC47D", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -170937,16 +171521,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -170979,36 +171563,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#A9B7C6", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#CC7832", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -171083,16 +171683,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Emacsen", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -171125,36 +171725,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#D5A920", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#678CB1", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#234059", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -171229,16 +171845,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -171271,36 +171887,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#F5DEB3", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -171375,16 +172007,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -171417,36 +172049,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#bbbbbb", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#bbbbbb", "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#FFFFFF", "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#2e3436", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -171521,16 +172169,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "BlueHippo", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -171563,36 +172211,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#CC0866", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#1E90FF", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -171667,16 +172331,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "My vim dark", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -171709,36 +172373,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#00FF00", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFF00", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -171813,16 +172493,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Oblivion", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -171855,36 +172535,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#D25252", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#D25252", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFFFFF", "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", "BgColour": "#1E1E1E", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -171959,16 +172655,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "RecognEyes", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -172001,36 +172697,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FF8080", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#FF8080", "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", + "Colour": "#00D0D0", "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#00D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", "BgColour": "#101020", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -172105,16 +172817,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Roboticket", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -172147,36 +172859,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#AB2525", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#AB2525", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#585858", + "Colour": "#295F94", "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#295F94", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#55aa55", "BgColour": "#F5F5F5", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -172251,16 +172979,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Sublime Text 2", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -172293,31 +173021,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#52E3F6", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#52E3F6", "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", + "Colour": "#FF007F", "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF007F", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#CFBFAD", @@ -172397,16 +173141,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Tomorrow Night", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -172439,36 +173183,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#F0C674", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#F0C674", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", + "Colour": "#B294BB", "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#B294BB", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#CC6666", "BgColour": "#1D1F21", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -172543,16 +173303,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Vim Desert", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -172585,36 +173345,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#82F985", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#82F985", "BgColour": "#262626", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", + "Colour": "#F6E06B", "BgColour": "#262626", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#F6E06B", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#B6B193", "BgColour": "#262626", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -172689,16 +173465,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -172731,36 +173507,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#FFB964", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#FFB964", "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", + "Colour": "#3070A0", "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#3070A0", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#79ABFF", "BgColour": "#151515", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -172835,16 +173627,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "One Dark Pro", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -172877,7 +173669,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#c678dd", @@ -172885,28 +173677,44 @@ "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", + "Colour": "#c678dd", "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#c678dd", + "BgColour": "#282c34", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#e06c75", "BgColour": "#282c34", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#98c379", + "BgColour": "#282c34", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -172981,16 +173789,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Darkside-contrast", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -173023,31 +173831,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -173127,16 +173951,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Darkside-light", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -173169,31 +173993,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#15a2c1", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#15a2c1", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#222324", + "Colour": "#c1721d", "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#c1721d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#222324", @@ -173273,16 +174113,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Darkside", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -173315,31 +174155,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#1cc3e8", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#1cc3e8", "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", + "Colour": "#f08d24", "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#f08d24", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#bababa", @@ -173419,16 +174275,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Earthsong-contrast", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -173461,31 +174317,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#12100f", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#12100f", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#12100f", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -173565,16 +174437,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Earthsong-light", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -173607,31 +174479,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#95cc5e", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", + "Colour": "#db784d", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#4d463e", @@ -173711,16 +174599,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Earthsong", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -173753,31 +174641,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#95cc5e", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#95cc5e", "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", + "Colour": "#db784d", "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#db784d", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#ebd1b7", @@ -173857,16 +174761,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -173899,31 +174803,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#7DAEA3", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#7DAEA3", "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", + "Colour": "#EA6962", "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#EA6962", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#D4BE98", @@ -174003,16 +174923,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Gruvbox Material Dark", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -174045,31 +174965,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#7daea3", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#7daea3", "BgColour": "#292828", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", + "Colour": "#ea6962", "BgColour": "#292828", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#ea6962", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d4be98", @@ -174149,16 +175085,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Gruvbox", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -174191,36 +175127,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#fa5c4b", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fa5c4b", "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", + "Colour": "#fe8019", "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#fe8019", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#fdf4c1", "BgColour": "#383838", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -174295,16 +175247,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Legacy-contrast", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -174337,31 +175289,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#080a0c", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#080a0c", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -174441,16 +175409,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Legacy-light", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -174483,31 +175451,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#267fb5", "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#444444", + "Colour": "#748aa6", "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#444444", @@ -174587,16 +175571,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Legacy", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -174629,31 +175613,47 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#267fb5", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#267fb5", "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", + "Colour": "#748aa6", "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#aec2e0", @@ -174733,16 +175733,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Solarized+", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -174775,7 +175775,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#859900", @@ -174783,23 +175783,39 @@ "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#839496", + "Colour": "#859900", "BgColour": "#002B36", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#859900", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#839496", + "BgColour": "#002B36", + "Size": -1 + }, { + "Id": 7, + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#839496", @@ -174879,16 +175895,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Tango Dark", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -174921,7 +175937,7 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", "Colour": "#6FA0CB", @@ -174929,28 +175945,44 @@ "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", + "Colour": "#6FA0CB", "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#FFFFFF", "BgColour": "#2e3434", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -175025,16 +176057,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Tokyo Light", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -175067,36 +176099,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#0094f0", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#0094f0", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", + "Colour": "#ff5792", "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#ff5792", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#f49725", "BgColour": "#faf1dc", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -175171,16 +176219,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Tokyo Night", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -175213,36 +176261,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#ff9e64", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#ff9e64", "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", + "Colour": "#f7768e", "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#f7768e", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#cfc9c2", "BgColour": "#24283b", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -175317,16 +176381,16 @@ "Size": -1 }] }, { - "Name": "properties", + "Name": "batch", "Theme": "Alacritty: Mariana", "Flags": 5, - "Id": 9, - "KeyWords0": "", + "Id": 12, + "KeyWords0": "break call cd chcp chdir choice cls color com con copy country ctty date defined del dir do echo else erase errorlevel exist exit for goto if in loadfix loadhigh lpt md mkdir move not nul off path pause prompt rd rem ren rename rmdir set shift start time type ver verify vol", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "Extensions": "*.bat;*.batch", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -175359,36 +176423,52 @@ "Size": -1 }, { "Id": 2, - "Name": "Section", + "Name": "Word", "Flags": 0, "FontDesc": "", - "Colour": "#fac761", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 3, - "Name": "Assignment", + "Name": "Label", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#fac761", "BgColour": "#343d46", "Size": -1 }, { "Id": 4, - "Name": "Default Value", + "Name": "Hide (@)", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", + "Colour": "#d8b6d8", "BgColour": "#343d46", "Size": -1 }, { "Id": 5, - "Name": "Key", + "Name": "Command", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8b6d8", + "BgColour": "#343d46", + "Size": -1 + }, { + "Id": 6, + "Name": "Identifier", "Flags": 0, "FontDesc": "", "Colour": "#f97b58", "BgColour": "#343d46", "Size": -1 + }, { + "Id": 7, + "Name": "Operator", + "Flags": 0, + "FontDesc": "", + "Colour": "#d8dee9", + "BgColour": "#343d46", + "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -175463,22 +176543,22 @@ "Size": -1 }] }, { - "Name": "errorlist", + "Name": "tcl", "Theme": "Atom One-Dark", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -175497,332 +176577,172 @@ "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FFCD22", "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#EC7600", "BgColour": "#282C34", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#E0E2E4", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", + "BgColour": "#282C34", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#7D8C93", "BgColour": "#282C34", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C678DD", "BgColour": "#282C34", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#56AFD7", "BgColour": "#282C34", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FFC235", "BgColour": "#282C34", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#F35151", "BgColour": "#282C34", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", + "Name": "Word 7", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", "Colour": "#E0E2E4", "BgColour": "#282C34", "Size": -1 - }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#282C34", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#282C34", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -175897,798 +176817,204 @@ "Size": -1 }] }, { - "Name": "errorlist", + "Name": "tcl", "Theme": "Atom One Light", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.log", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Python error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "GCC like error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "MSVC error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "CMD error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Diff line changed", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Diff line added", - "Flags": 0, - "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Diff line deleted", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Diff line message", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 14, - "Name": "PHP error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#325CC0", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#7A3E9D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#B24B45", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#56973C", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#466CC6", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#8751A6", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#198FB9", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "black", - "BgColour": "red", - "Size": -1 - }, { - "Id": 37, - "Name": "Indent Guide", - "Flags": 0, - "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": -1, - "Name": "Fold Margin", - "Flags": 0, - "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", - "Size": -1 - }, { - "Id": -2, - "Name": "Text Selection", - "Flags": 0, - "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", - "Size": -1 - }, { - "Id": -3, - "Name": "Caret Colour", - "Flags": 0, - "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": -4, - "Name": "Whitespace", - "Flags": 0, - "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 38, - "Name": "Calltip", - "Flags": 0, - "FontDesc": "", - "Colour": "#383A42", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 33, - "Name": "Line Numbers", - "Flags": 0, - "FontDesc": "", - "Colour": "#999999", - "BgColour": "#FFFFFF", - "Size": -1 - }] - }, { - "Name": "errorlist", - "Theme": "Xcode inspired", - "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Python error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "GCC like error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 3, - "Name": "MSVC error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 4, - "Name": "CMD error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 10, - "Name": "Diff line changed", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 11, - "Name": "Diff line added", - "Flags": 0, - "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 12, - "Name": "Diff line deleted", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 13, - "Name": "Diff line message", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 14, - "Name": "PHP error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#986801", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#50A14F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#325CC0", + "Colour": "#A0A1A7", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#7A3E9D", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#A626A4", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", + "Colour": "#4078F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#C18401", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#B24B45", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#56973C", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#466CC6", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#8751A6", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#198FB9", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -176752,7 +177078,7 @@ "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#383A42", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -176765,22 +177091,22 @@ "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Classic Eclipse", + "Name": "tcl", + "Theme": "Xcode inspired", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -176799,330 +177125,444 @@ "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#340DD4", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#C81B28", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#1D8711", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#B309A1", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#6F33A7", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "black", + "BgColour": "cyan", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "black", + "BgColour": "red", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#FFFFFF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", + "Size": -1 + }, { + "Id": -2, + "Name": "Text Selection", + "Flags": 0, + "FontDesc": "", + "Colour": "#484848", + "BgColour": "#BDD8F2", + "Size": -1 + }, { + "Id": -3, + "Name": "Caret Colour", + "Flags": 0, + "FontDesc": "", + "Colour": "BLACK", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#F2F2F2", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#333333", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#999999", "BgColour": "#FFFFFF", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Classic Eclipse", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#FF0000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", + "Colour": "#0000C0", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#325CC0", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#7A3E9D", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#557F5F", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#B24B45", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#56973C", + "Colour": "#FF5809", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#466CC6", + "Colour": "#7F0055", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#8751A6", + "Colour": "#000099", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#198FB9", + "Colour": "#006600", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#FF5809", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 17, + "Name": "Word 6", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 18, + "Name": "Word 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", + "BgColour": "#FFFFFF", + "Size": -1 + }, { + "Id": 19, + "Name": "Word 8", + "Flags": 0, + "FontDesc": "", + "Colour": "#333333", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -177199,22 +177639,22 @@ "Size": -1 }] }, { - "Name": "errorlist", + "Name": "tcl", "Theme": "Dark Flash Builder", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -177233,332 +177673,172 @@ "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#EDDD3D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#CC9393", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#7F9F7F", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#DFC47D", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#F2F2DF", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#D25B5B", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#6699CC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", + "Name": "Word 7", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", "Colour": "#DDDDCC", "BgColour": "#3F3F3F", "Size": -1 - }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#3F3F3F", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#3F3F3F", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -177633,22 +177913,22 @@ "Size": -1 }] }, { - "Name": "errorlist", + "Name": "tcl", "Theme": "Intellij Dracula", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -177667,332 +177947,172 @@ "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#6897BB", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#A5C25C", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#629755", + "BgColour": "#2B2B2B", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#629755", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#808080", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#CC7832", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#FFC66D", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#A9B7C6", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#79ABFF", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", + "Name": "Word 7", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", "Colour": "#D8D8D8", "BgColour": "#2B2B2B", "Size": -1 - }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#2B2B2B", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#2B2B2B", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -178067,22 +178187,22 @@ "Size": -1 }] }, { - "Name": "errorlist", + "Name": "tcl", "Theme": "Emacsen", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -178101,332 +178221,172 @@ "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C59910", "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#B58900", "BgColour": "#234059", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#839496", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", + "BgColour": "#234059", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#586E75", "BgColour": "#234059", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#678CB1", "BgColour": "#234059", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#2AA198", "BgColour": "#234059", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#D5A920", "BgColour": "#234059", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#2B9DED", "BgColour": "#234059", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", + "Name": "Word 7", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", "Colour": "#839496", "BgColour": "#234059", "Size": -1 - }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#234059", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#234059", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -178501,22 +178461,22 @@ "Size": -1 }] }, { - "Name": "errorlist", + "Name": "tcl", "Theme": "Clasic Emacs", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -178535,332 +178495,172 @@ "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#7FB347", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FFC600", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#C7DD0C", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FFFFFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#BED6FF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#D25252", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#79ABFF", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", + "Name": "Word 7", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", "Colour": "#F5DEB3", "BgColour": "#2F4F4F", "Size": -1 - }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#2F4F4F", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#2F4F4F", - "Size": -1 }, { "Id": 34, "Name": "Brace match", @@ -178935,22 +178735,22 @@ "Size": -1 }] }, { - "Name": "errorlist", + "Name": "tcl", "Theme": "Gedit Original Oblivion", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -178969,764 +178769,444 @@ "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", + "Colour": "#888a85", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", + "Colour": "#888a85", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", + "Colour": "#ce5c00", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", + "Colour": "#729fcf", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", + "Colour": "#edd400", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 10, - "Name": "Diff line changed", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 11, - "Name": "Diff line added", - "Flags": 0, - "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 12, - "Name": "Diff line deleted", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 13, - "Name": "Diff line message", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 14, - "Name": "PHP error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", + "Name": "Operator", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#d3d7cf", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#2E3436", - "Size": -1 - }, { - "Id": 34, - "Name": "Brace match", - "Flags": 2, - "FontDesc": "", - "Colour": "yellow", - "BgColour": "#2e3436", - "Size": -1 - }, { - "Id": 35, - "Name": "Brace bad match", - "Flags": 2, - "FontDesc": "", - "Colour": "red", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 37, - "Name": "Indent Guide", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#2e3436", + "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": -1, - "Name": "Fold Margin", - "Flags": 0, - "FontDesc": "", - "Colour": "#42484A", - "BgColour": "#42484A", - "Size": -1 - }, { - "Id": -2, - "Name": "Text Selection", - "Flags": 0, - "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", - "Size": -1 - }, { - "Id": -3, - "Name": "Caret Colour", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": -4, - "Name": "Whitespace", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#42484A", + "Colour": "#888a85", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 38, - "Name": "Calltip", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", "Colour": "#d3d7cf", "BgColour": "#2e3436", "Size": -1 }, { - "Id": 33, - "Name": "Line Numbers", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#555753", + "Colour": "#729fcf", "BgColour": "#2e3436", "Size": -1 - }] - }, { - "Name": "errorlist", - "Theme": "BlueHippo", - "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", - "KeyWords2": "", - "KeyWords3": "", - "KeyWords4": "", - "Extensions": "*.log", - "SubstyleBase": -1, - "WordSet": [{ - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }, { - "index": -1, - "is_substyle": false - }], - "Properties": [{ - "Id": 0, - "Name": "Default", - "Flags": 0, - "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 1, - "Name": "Python error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 2, - "Name": "GCC like error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 }, { - "Id": 3, - "Name": "MSVC error message", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#FFFFFF", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 4, - "Name": "CMD error message", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#BED6FF", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 5, - "Name": "Borland error message", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 6, - "Name": "Perl error message", + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#729fcf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 7, - "Name": ".NET error message", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FFFFFF", + "Colour": "yellow", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "red", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#2e3436", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#42484A", + "BgColour": "#42484A", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "YELLOW", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#42484A", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 19, - "Name": "HTML tidy style", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#555753", + "BgColour": "#2e3436", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "BlueHippo", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 20, - "Name": "Java stack", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#6D6D6D", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#008080", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#C71585", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#000000", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#325CC0", + "Colour": "#696969", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#7A3E9D", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#1E90FF", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", + "Colour": "#20B2AA", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#808080", + "Colour": "#CC0866", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#B24B45", + "Colour": "#D87093", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#56973C", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#466CC6", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#8751A6", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#198FB9", + "Colour": "#000000", "BgColour": "#FFFFFF", "Size": -1 }, { @@ -179803,22 +179283,22 @@ "Size": -1 }] }, { - "Name": "errorlist", + "Name": "tcl", "Theme": "My vim dark", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -179837,331 +179317,445 @@ "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FF00FF", "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C0C0C0", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#00FFFF", "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FFFF00", "BgColour": "#000000", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#00FF00", "BgColour": "#000000", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#FF8000", "BgColour": "#000000", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", + "Colour": "#000000", "BgColour": "#000000", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#191919", + "BgColour": "#191919", + "Size": -1 + }, { + "Id": -2, + "Name": "Text Selection", + "Flags": 0, + "FontDesc": "", + "Colour": "#404040", + "BgColour": "#CC9900", + "Size": -1 + }, { + "Id": -3, + "Name": "Caret Colour", + "Flags": 0, + "FontDesc": "", + "Colour": "YELLOW", "BgColour": "#000000", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", + "Colour": "#191919", "BgColour": "#000000", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", + "Colour": "#C0C0C0", "BgColour": "#000000", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Oblivion", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#000000", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#7FB347", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#000000", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#000000", + "Colour": "#FFC600", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#000000", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#000000", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#000000", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#000000", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#000000", + "Colour": "#FFFFFF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#000000", + "Colour": "#BED6FF", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#000000", + "Colour": "#D25252", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 17, + "Name": "Word 6", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 18, + "Name": "Word 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", + "Size": -1 + }, { + "Id": 19, + "Name": "Word 8", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 34, @@ -180169,7 +179763,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#000000", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 35, @@ -180177,23 +179771,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#000000", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#000000", + "Colour": "#1E1E1E", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#191919", + "Colour": "#343434", + "BgColour": "#343434", "Size": -1 }, { "Id": -2, @@ -180209,50 +179803,50 @@ "Flags": 0, "FontDesc": "", "Colour": "YELLOW", - "BgColour": "#000000", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#000000", + "Colour": "#343434", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#D0D0D0", + "BgColour": "#1E1E1E", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Oblivion", + "Name": "tcl", + "Theme": "RecognEyes", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -180266,427 +179860,541 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#00E000", + "BgColour": "#101020", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#00E000", + "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#FFFF00", + "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#79ABFF", + "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#DC78DC", + "BgColour": "#101020", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#00E000", + "BgColour": "#101020", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#79ABFF", + "BgColour": "#101020", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1E1E1E", + "Colour": "#00E000", + "BgColour": "#101020", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#1E1E1E", + "Colour": "#79ABFF", + "BgColour": "#101020", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#00D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1E1E1E", + "Colour": "#BED6FF", + "BgColour": "#101020", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#FF8080", + "BgColour": "#101020", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#79ABFF", + "BgColour": "#101020", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#101020", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1E1E1E", + "Colour": "#101020", + "BgColour": "#101020", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#272736", + "BgColour": "#272736", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#1E1E1E", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "YELLOW", + "BgColour": "#101020", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#272736", + "BgColour": "#101020", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1E1E1E", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#2B91AF", + "BgColour": "#101020", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Roboticket", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 40, - "Name": "ANSI escape black", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#1E1E1E", + "Colour": "#6D6D6D", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1E1E1E", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#1E1E1E", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#1E1E1E", + "Colour": "#AF0F91", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#1E1E1E", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#1E1E1E", + "Colour": "#317ECC", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1E1E1E", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#1E1E1E", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#1E1E1E", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#1E1E1E", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 8, + "Name": "Substitution", + "Flags": 0, + "FontDesc": "", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 9, + "Name": "Sub brace", + "Flags": 0, + "FontDesc": "", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 10, + "Name": "Modifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#585858", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 11, + "Name": "Expand", + "Flags": 0, + "FontDesc": "", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 12, + "Name": "Keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#295F94", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 13, + "Name": "Function", + "Flags": 0, + "FontDesc": "", + "Colour": "#B05A65", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 14, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#1E1E1E", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#1E1E1E", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#1E1E1E", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#1E1E1E", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#1E1E1E", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#1E1E1E", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#1E1E1E", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#1E1E1E", - "BgColour": "#1E1E1E", + "Colour": "#F5F5F5", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#343434", - "BgColour": "#343434", + "Colour": "#E8E8E8", + "BgColour": "#E8E8E8", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#1E1E1E", + "Colour": "BLACK", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#343434", - "BgColour": "#1E1E1E", + "Colour": "#E8E8E8", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#1E1E1E", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#1E1E1E", + "Colour": "#AFBFCF", + "BgColour": "#F5F5F5", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "RecognEyes", + "Name": "tcl", + "Theme": "Sublime Text 2", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -180700,336 +180408,176 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#FFFFFF", + "BgColour": "#272822", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#FFFFFF", + "BgColour": "#272822", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#C48CFF", + "BgColour": "#272822", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#ECE47E", + "BgColour": "#272822", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#272822", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#101020", + "Colour": "#FFFFFF", + "BgColour": "#272822", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#FF007F", + "BgColour": "#272822", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#101020", + "Colour": "#A7EC21", + "BgColour": "#272822", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#52E3F6", + "BgColour": "#272822", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", - "Flags": 0, - "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#101020", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 34, @@ -181037,7 +180585,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#101020", + "BgColour": "#272822", "Size": -1 }, { "Id": 35, @@ -181045,23 +180593,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#101020", + "BgColour": "#272822", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#101020", - "BgColour": "#101020", + "Colour": "#272822", + "BgColour": "#272822", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#272736", - "BgColour": "#272736", + "Colour": "#3C3D38", + "BgColour": "#3C3D38", "Size": -1 }, { "Id": -2, @@ -181077,50 +180625,50 @@ "Flags": 0, "FontDesc": "", "Colour": "YELLOW", - "BgColour": "#101020", + "BgColour": "#272822", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#272736", - "BgColour": "#101020", + "Colour": "#3C3D38", + "BgColour": "#272822", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D0D0D0", - "BgColour": "#101020", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#2B91AF", - "BgColour": "#101020", + "Colour": "#999999", + "BgColour": "#272822", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Roboticket", + "Name": "tcl", + "Theme": "Tomorrow Night", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -181134,427 +180682,541 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#969896", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#969896", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#DE935F", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#CC6666", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#B5BD68", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#969896", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#CC6666", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#F5F5F5", + "Colour": "#969896", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#F5F5F5", + "Colour": "#CC6666", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#B294BB", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#F5F5F5", + "Colour": "#81A2BE", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#F0C674", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#CC6666", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#1D1F21", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#F5F5F5", + "Colour": "#1D1F21", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "#333537", + "BgColour": "#333537", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#F5F5F5", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "YELLOW", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#333537", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Vim Desert", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 40, - "Name": "ANSI escape black", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#F5F5F5", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#F5F5F5", + "Colour": "#67C3E7", + "BgColour": "#262626", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#F5F5F5", + "Colour": "#67C3E7", + "BgColour": "#262626", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#F5F5F5", + "Colour": "#C64947", + "BgColour": "#262626", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#325CC0", - "BgColour": "#F5F5F5", + "Colour": "#B6B193", + "BgColour": "#262626", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#7A3E9D", - "BgColour": "#F5F5F5", + "Colour": "#FF8E8D", + "BgColour": "#262626", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#F5F5F5", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#F5F5F5", + "Colour": "#67C3E7", + "BgColour": "#262626", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#F5F5F5", + "Colour": "#67C3E7", + "BgColour": "#262626", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#F5F5F5", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#B24B45", - "BgColour": "#F5F5F5", + "Colour": "#B6B193", + "BgColour": "#262626", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#56973C", - "BgColour": "#F5F5F5", + "Colour": "#67C3E7", + "BgColour": "#262626", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#466CC6", - "BgColour": "#F5F5F5", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#8751A6", - "BgColour": "#F5F5F5", + "Colour": "#B6B193", + "BgColour": "#262626", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#198FB9", - "BgColour": "#F5F5F5", + "Colour": "#F6E06B", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 13, + "Name": "Function", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 14, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#82F985", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#B6B193", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 17, + "Name": "Word 6", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 18, + "Name": "Word 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", + "Size": -1 + }, { + "Id": 19, + "Name": "Word 8", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#262626", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#262626", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#F5F5F5", - "BgColour": "#F5F5F5", + "Colour": "#262626", + "BgColour": "#262626", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", - "BgColour": "#E8E8E8", + "Colour": "#3B3B3B", + "BgColour": "#3B3B3B", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "BLACK", - "BgColour": "#F5F5F5", + "Colour": "YELLOW", + "BgColour": "#262626", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E8E8E8", - "BgColour": "#F5F5F5", + "Colour": "#3B3B3B", + "BgColour": "#262626", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#585858", - "BgColour": "#F5F5F5", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#AFBFCF", - "BgColour": "#F5F5F5", + "Colour": "#FFFE00", + "BgColour": "#262626", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Sublime Text 2", + "Name": "tcl", + "Theme": "Vim Jellybeans Port", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -181568,336 +181230,450 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#888888", + "BgColour": "#151515", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#888888", + "BgColour": "#151515", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#CF6A4C", + "BgColour": "#151515", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#79ABFF", + "BgColour": "#151515", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#99AD6A", + "BgColour": "#151515", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 8, + "Name": "Substitution", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 9, + "Name": "Sub brace", + "Flags": 0, + "FontDesc": "", + "Colour": "#888888", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 10, + "Name": "Modifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 11, + "Name": "Expand", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 12, + "Name": "Keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#3070A0", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 13, + "Name": "Function", + "Flags": 0, + "FontDesc": "", + "Colour": "#BED6FF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 14, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#FFB964", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#79ABFF", + "BgColour": "#151515", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#272822", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#272822", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#272822", + "Colour": "yellow", + "BgColour": "#151515", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "red", + "BgColour": "#151515", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#272822", + "Colour": "#151515", + "BgColour": "#151515", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#2C2C2C", + "BgColour": "#2C2C2C", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "YELLOW", + "BgColour": "#151515", "Size": -1 }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#2C2C2C", + "BgColour": "#151515", "Size": -1 }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 19, - "Name": "HTML tidy style", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#605958", + "BgColour": "#151515", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "One Dark Pro", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 20, - "Name": "Java stack", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#272822", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#5c6370", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#272822", + "Colour": "#5c6370", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#d19a66", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#e06c75", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#272822", + "Colour": "#98c379", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#98c379", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#272822", + "Colour": "#5c6370", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#272822", + "Colour": "#5c6370", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#272822", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#272822", + "Colour": "#e06c75", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#272822", + "Colour": "#5c6370", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#272822", + "Colour": "#98c379", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#272822", + "Colour": "#e06c75", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#272822", + "Colour": "#c678dd", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#272822", + "Colour": "#61afef", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#272822", + "Colour": "#c678dd", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#272822", + "Colour": "#e06c75", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#272822", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#272822", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#272822", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#272822", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { "Id": 34, @@ -181905,7 +181681,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#272822", + "BgColour": "#282c34", "Size": -1 }, { "Id": 35, @@ -181913,23 +181689,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#272822", + "BgColour": "#282c34", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#272822", - "BgColour": "#272822", + "Colour": "#282c34", + "BgColour": "#282c34", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", - "BgColour": "#3C3D38", + "Colour": "#3D4148", + "BgColour": "#3D4148", "Size": -1 }, { "Id": -2, @@ -181944,51 +181720,51 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#272822", + "Colour": "#528bff", + "BgColour": "#ffffffc9", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3C3D38", - "BgColour": "#272822", + "Colour": "#3D4148", + "BgColour": "#282c34", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#CFBFAD", - "BgColour": "#272822", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#999999", - "BgColour": "#272822", + "Colour": "#495162", + "BgColour": "#282c34", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Tomorrow Night", + "Name": "tcl", + "Theme": "Darkside-contrast", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -182002,427 +181778,541 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#494b4d", + "BgColour": "#000000", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#494b4d", + "BgColour": "#000000", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#8e69c9", + "BgColour": "#000000", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#f2d42c", + "BgColour": "#000000", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#000000", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1D1F21", + "Colour": "#494b4d", + "BgColour": "#000000", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#f08d24", + "BgColour": "#000000", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1D1F21", + "Colour": "#68c244", + "BgColour": "#000000", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#1cc3e8", + "BgColour": "#000000", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#000000", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1D1F21", + "Colour": "#000000", + "BgColour": "#000000", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#191919", + "BgColour": "#191919", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#1D1F21", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#f8f8f0", + "BgColour": "#000000", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#191919", + "BgColour": "#000000", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1D1F21", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#333333", + "BgColour": "#000000", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Darkside-light", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 40, - "Name": "ANSI escape black", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#1D1F21", + "Colour": "#6D6D6D", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#1D1F21", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#1D1F21", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#1D1F21", + "Colour": "#7b5baf", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#1D1F21", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#1D1F21", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#1D1F21", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#1D1F21", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#1D1F21", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#1D1F21", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#1D1F21", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#1D1F21", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#1D1F21", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#1D1F21", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#1D1F21", + "Colour": "#c1721d", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 13, + "Name": "Function", + "Flags": 0, + "FontDesc": "", + "Colour": "#4b8e30", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 14, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 17, + "Name": "Word 6", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 18, + "Name": "Word 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", + "Size": -1 + }, { + "Id": 19, + "Name": "Word 8", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#1D1F21", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#1D1F21", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#1D1F21", - "BgColour": "#1D1F21", + "Colour": "#e0e0e0", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#333537", - "BgColour": "#333537", + "Colour": "#D4D4D4", + "BgColour": "#D4D4D4", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#1D1F21", + "Colour": "#222222", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#333537", - "BgColour": "#1D1F21", + "Colour": "#D4D4D4", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#C5C8C6", - "BgColour": "#1D1F21", + "Colour": "#adadad", + "BgColour": "#e0e0e0", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Vim Desert", + "Name": "tcl", + "Theme": "Darkside", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -182436,336 +182326,450 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#494b4d", + "BgColour": "#222324", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#494b4d", + "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#8e69c9", + "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#f2d42c", + "BgColour": "#222324", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#494b4d", + "BgColour": "#222324", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#262626", + "Colour": "#494b4d", + "BgColour": "#222324", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#f08d24", + "BgColour": "#222324", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#262626", + "Colour": "#68c244", + "BgColour": "#222324", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#1cc3e8", + "BgColour": "#222324", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 19, + "Name": "Word 8", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", + "Flags": 0, + "FontDesc": "", + "Colour": "#222324", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": -1, + "Name": "Fold Margin", + "Flags": 0, + "FontDesc": "", + "Colour": "#383939", + "BgColour": "#383939", + "Size": -1 + }, { + "Id": -2, + "Name": "Text Selection", + "Flags": 0, + "FontDesc": "", + "Colour": "#404040", + "BgColour": "#CC9900", + "Size": -1 + }, { + "Id": -3, + "Name": "Caret Colour", + "Flags": 0, + "FontDesc": "", + "Colour": "#f8f8f0", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": -4, + "Name": "Whitespace", + "Flags": 0, + "FontDesc": "", + "Colour": "#383939", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 38, + "Name": "Calltip", + "Flags": 0, + "FontDesc": "", + "Colour": "#bababa", + "BgColour": "#222324", + "Size": -1 + }, { + "Id": 33, + "Name": "Line Numbers", + "Flags": 0, + "FontDesc": "", + "Colour": "#545658", + "BgColour": "#222324", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Earthsong-contrast", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false + }, { + "index": 1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 20, - "Name": "Java stack", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#7a7267", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#262626", + "Colour": "#7a7267", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#f8bb39", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#262626", + "Colour": "#f8bb39", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#262626", + "Colour": "#7a7267", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#262626", + "Colour": "#7a7267", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#262626", + "Colour": "#7a7267", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#262626", + "Colour": "#db784d", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#262626", + "Colour": "#60a365", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#262626", + "Colour": "#95cc5e", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { "Id": 34, @@ -182773,7 +182777,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#262626", + "BgColour": "#12100f", "Size": -1 }, { "Id": 35, @@ -182781,23 +182785,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#262626", + "BgColour": "#12100f", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#262626", - "BgColour": "#262626", + "Colour": "#12100f", + "BgColour": "#12100f", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", - "BgColour": "#3B3B3B", + "Colour": "#292727", + "BgColour": "#292727", "Size": -1 }, { "Id": -2, @@ -182812,51 +182816,51 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#262626", + "Colour": "#f8f8f0", + "BgColour": "#12100f", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3B3B3B", - "BgColour": "#262626", + "Colour": "#292727", + "BgColour": "#12100f", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#FFFFFF", - "BgColour": "#262626", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#FFFE00", - "BgColour": "#262626", + "Colour": "#4a413d", + "BgColour": "#12100f", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Vim Jellybeans Port", + "Name": "tcl", + "Theme": "Earthsong-light", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -182870,336 +182874,450 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#6D6D6D", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#d6cab9", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#d6cab9", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#f8bb39", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#f8bb39", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#d6cab9", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#151515", + "Colour": "#d6cab9", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#db784d", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#151515", + "Colour": "#60a365", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#95cc5e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "black", + "BgColour": "cyan", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "black", + "BgColour": "red", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#151515", + "Colour": "#ffffff", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#151515", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#111111", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#F2F2F2", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#151515", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#cccccc", + "BgColour": "#ffffff", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Earthsong", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 40, - "Name": "ANSI escape black", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#151515", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#151515", + "Colour": "#7a7267", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#151515", + "Colour": "#7a7267", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#151515", + "Colour": "#f8bb39", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#151515", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#151515", + "Colour": "#f8bb39", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#151515", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#151515", + "Colour": "#7a7267", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#151515", + "Colour": "#7a7267", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#151515", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#151515", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#151515", + "Colour": "#7a7267", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#151515", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#151515", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#151515", + "Colour": "#db784d", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 13, + "Name": "Function", + "Flags": 0, + "FontDesc": "", + "Colour": "#60a365", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 14, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#95cc5e", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 17, + "Name": "Word 6", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 18, + "Name": "Word 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", + "Size": -1 + }, { + "Id": 19, + "Name": "Word 8", + "Flags": 0, + "FontDesc": "", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { "Id": 34, @@ -183207,7 +183325,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#151515", + "BgColour": "#36312c", "Size": -1 }, { "Id": 35, @@ -183215,23 +183333,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#151515", + "BgColour": "#36312c", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#151515", - "BgColour": "#151515", + "Colour": "#36312c", + "BgColour": "#36312c", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", - "BgColour": "#2C2C2C", + "Colour": "#4A4541", + "BgColour": "#4A4541", "Size": -1 }, { "Id": -2, @@ -183246,51 +183364,51 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "YELLOW", - "BgColour": "#151515", + "Colour": "#f8f8f0", + "BgColour": "#36312c", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#2C2C2C", - "BgColour": "#151515", + "Colour": "#4A4541", + "BgColour": "#36312c", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#D8D8D8", - "BgColour": "#151515", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#605958", - "BgColour": "#151515", + "Colour": "#6e645a", + "BgColour": "#36312c", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "One Dark Pro", + "Name": "tcl", + "Theme": "Github-Gruvbox-Theme", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -183304,336 +183422,450 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#928374", + "BgColour": "#22272e", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#928374", + "BgColour": "#22272e", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#D3869B", + "BgColour": "#22272e", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#D4BE98", + "BgColour": "#22272e", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#D8A657", + "BgColour": "#22272e", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#D4BE98", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#22272e", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#D4BE98", + "BgColour": "#22272e", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#282C34", + "Colour": "#928374", + "BgColour": "#22272e", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#282C34", + "Colour": "#D4BE98", + "BgColour": "#22272e", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#282C34", + "Colour": "#D4BE98", + "BgColour": "#22272e", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#EA6962", + "BgColour": "#22272e", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#282C34", + "Colour": "#A9B665", + "BgColour": "#22272e", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#7DAEA3", + "BgColour": "#22272e", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#D4BE98", + "BgColour": "#22272e", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#22272e", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#282C34", + "Colour": "#22272e", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#383C42", + "BgColour": "#383C42", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#282C34", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#539bf5", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#383C42", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#282C34", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#768390", + "BgColour": "#22272e", + "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Gruvbox Material Dark", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false + }, { + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#282C34", + "Colour": "#928374", + "BgColour": "#292828", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#282C34", + "Colour": "#928374", + "BgColour": "#292828", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#282C34", + "Colour": "#d3869b", + "BgColour": "#292828", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#282C34", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#282C34", + "Colour": "#d8a657", + "BgColour": "#292828", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#282C34", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#282C34", + "Colour": "#928374", + "BgColour": "#292828", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 7, + "Name": "Identifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 8, + "Name": "Substitution", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 9, + "Name": "Sub brace", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 10, + "Name": "Modifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 11, + "Name": "Expand", + "Flags": 0, + "FontDesc": "", + "Colour": "#d4be98", + "BgColour": "#292828", + "Size": -1 + }, { + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#282C34", + "Colour": "#ea6962", + "BgColour": "#292828", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#282C34", + "Colour": "#a9b665", + "BgColour": "#292828", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#282C34", + "Colour": "#7daea3", + "BgColour": "#292828", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#282C34", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#282C34", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#282C34", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#282C34", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#282C34", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": 34, @@ -183641,7 +183873,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#282c34", + "BgColour": "#292828", "Size": -1 }, { "Id": 35, @@ -183649,23 +183881,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#282c34", + "BgColour": "#292828", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#282c34", - "BgColour": "#282c34", + "Colour": "#292828", + "BgColour": "#292828", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#3D4148", + "Colour": "#3E3D3D", + "BgColour": "#3E3D3D", "Size": -1 }, { "Id": -2, @@ -183680,51 +183912,51 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#528bff", - "BgColour": "#ffffffc9", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3D4148", - "BgColour": "#282c34", + "Colour": "#3E3D3D", + "BgColour": "#292828", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#abb2bf", - "BgColour": "#282c34", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#495162", - "BgColour": "#282c34", + "Colour": "#7c6f64", + "BgColour": "#292828", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Darkside-contrast", + "Name": "tcl", + "Theme": "Gruvbox", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -183738,336 +183970,450 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#928374", + "BgColour": "#383838", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#928374", + "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#fdf4c1", + "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#b8bb26", + "BgColour": "#383838", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#928374", + "BgColour": "#383838", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#fdf4c1", + "BgColour": "#383838", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#000000", + "Colour": "#928374", + "BgColour": "#383838", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#000000", + "Colour": "#fdf4c1", + "BgColour": "#383838", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#fe8019", + "BgColour": "#383838", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#000000", + "Colour": "#fdf4c1", + "BgColour": "#383838", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#fa5c4b", + "BgColour": "#383838", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#fdf4c1", + "BgColour": "#383838", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#383838", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#000000", + "Colour": "#383838", + "BgColour": "#383838", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#4B4B4B", + "BgColour": "#4B4B4B", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#4B4B4B", + "BgColour": "#383838", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Legacy-contrast", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 40, - "Name": "ANSI escape black", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#000000", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#000000", + "Colour": "#324357", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#000000", + "Colour": "#324357", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#000000", + "Colour": "#c7f026", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#000000", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#000000", + "Colour": "#ff410d", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#000000", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#324357", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#000000", + "Colour": "#324357", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#000000", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#000000", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#000000", + "Colour": "#324357", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#000000", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#000000", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#000000", + "Colour": "#748aa6", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 13, + "Name": "Function", + "Flags": 0, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 14, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 17, + "Name": "Word 6", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 18, + "Name": "Word 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", + "Size": -1 + }, { + "Id": 19, + "Name": "Word 8", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 34, @@ -184075,7 +184421,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#000000", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 35, @@ -184083,23 +184429,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#000000", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#000000", + "Colour": "#080a0c", + "BgColour": "#080a0c", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#191919", + "Colour": "#202224", + "BgColour": "#202224", "Size": -1 }, { "Id": -2, @@ -184115,50 +184461,50 @@ "Flags": 0, "FontDesc": "", "Colour": "#f8f8f0", - "BgColour": "#000000", + "BgColour": "#080a0c", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#191919", - "BgColour": "#000000", + "Colour": "#202224", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#000000", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#333333", - "BgColour": "#000000", + "Colour": "#313d49", + "BgColour": "#080a0c", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Darkside-light", + "Name": "tcl", + "Theme": "Legacy-light", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -184173,335 +184519,175 @@ "Flags": 0, "FontDesc": "", "Colour": "#6D6D6D", - "BgColour": "#e0e0e0", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#324357", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#324357", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#c7f026", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#ff410d", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#324357", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#E0E0E0", + "Colour": "#324357", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#748aa6", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#E0E0E0", + "Colour": "#ffb20d", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#267fb5", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 21, - "Name": "Value", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 22, - "Name": "GCC 'included from'", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", - "Flags": 0, - "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", - "Size": -1 - }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, - "FontDesc": "", - "Colour": "#000000", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 42, - "Name": "ANSI escape green", - "Flags": 0, - "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 43, - "Name": "ANSI escape brown", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 44, - "Name": "ANSI escape blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#325CC0", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 45, - "Name": "ANSI escape magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#7A3E9D", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 46, - "Name": "ANSI escape cyan", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 48, - "Name": "ANSI escape dark grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 49, - "Name": "ANSI escape bright red", - "Flags": 0, - "FontDesc": "", - "Colour": "#B24B45", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 50, - "Name": "ANSI escape bright green", - "Flags": 0, - "FontDesc": "", - "Colour": "#56973C", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 52, - "Name": "ANSI escape bright blue", - "Flags": 0, - "FontDesc": "", - "Colour": "#466CC6", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 53, - "Name": "ANSI escape bright magenta", - "Flags": 0, - "FontDesc": "", - "Colour": "#8751A6", - "BgColour": "#E0E0E0", - "Size": -1 - }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#198FB9", - "BgColour": "#E0E0E0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 34, @@ -184524,16 +184710,16 @@ "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#e0e0e0", - "BgColour": "#e0e0e0", + "Colour": "#ffffff", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#D4D4D4", - "BgColour": "#D4D4D4", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, @@ -184549,50 +184735,50 @@ "Flags": 0, "FontDesc": "", "Colour": "#222222", - "BgColour": "#e0e0e0", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#D4D4D4", - "BgColour": "#e0e0e0", + "Colour": "#F2F2F2", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#e0e0e0", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#adadad", - "BgColour": "#e0e0e0", + "Colour": "#cccccc", + "BgColour": "#ffffff", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Darkside", + "Name": "tcl", + "Theme": "Legacy", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -184606,336 +184792,450 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#425972", + "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#425972", + "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#c7f026", + "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#ff410d", + "BgColour": "#212933", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 8, + "Name": "Substitution", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 9, + "Name": "Sub brace", + "Flags": 0, + "FontDesc": "", + "Colour": "#425972", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 10, + "Name": "Modifier", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 11, + "Name": "Expand", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 12, + "Name": "Keyword", + "Flags": 0, + "FontDesc": "", + "Colour": "#748aa6", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 13, + "Name": "Function", + "Flags": 0, + "FontDesc": "", + "Colour": "#ffb20d", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 14, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#267fb5", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#222324", + "Colour": "yellow", + "BgColour": "#212933", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "red", + "BgColour": "#212933", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#222324", + "Colour": "#212933", + "BgColour": "#212933", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#373E47", + "BgColour": "#373E47", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#f8f8f0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#373E47", + "BgColour": "#212933", "Size": -1 }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 19, - "Name": "HTML tidy style", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#495b71", + "BgColour": "#212933", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Solarized+", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 20, - "Name": "Java stack", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#5b858b", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#222324", + "Colour": "#5b858b", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#268BD2", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#222324", + "Colour": "#CB4B16", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#222324", + "Colour": "#5b858b", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#222324", + "Colour": "#5b858b", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#222324", + "Colour": "#5b858b", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#222324", + "Colour": "#859900", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#222324", + "Colour": "#2AA198", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#222324", + "Colour": "#859900", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { "Id": 34, @@ -184943,7 +185243,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#222324", + "BgColour": "#002B36", "Size": -1 }, { "Id": 35, @@ -184951,23 +185251,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#222324", + "BgColour": "#002B36", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#222324", - "BgColour": "#222324", + "Colour": "#002B36", + "BgColour": "#002B36", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#383939", - "BgColour": "#383939", + "Colour": "#19404A", + "BgColour": "#19404A", "Size": -1 }, { "Id": -2, @@ -184982,51 +185282,51 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#222324", + "Colour": "#85efff", + "BgColour": "#002B36", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#383939", - "BgColour": "#222324", + "Colour": "#19404A", + "BgColour": "#002B36", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#bababa", - "BgColour": "#222324", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#545658", - "BgColour": "#222324", + "Colour": "#4e6b6e", + "BgColour": "#002B36", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Earthsong-contrast", + "Name": "tcl", + "Theme": "Tango Dark", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -185040,427 +185340,541 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#888A85", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#888A85", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#83E158", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#AD7FA8", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#888A85", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#888A85", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#12100F", + "Colour": "#888A85", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#12100F", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#12100F", + "Colour": "#EED247", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#2e3434", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#12100F", + "Colour": "#2e3434", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#424848", + "BgColour": "#424848", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#12100F", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#ffffff", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#424848", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Tokyo Light", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 40, - "Name": "ANSI escape black", + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#12100F", + "Colour": "#6D6D6D", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#12100F", + "Colour": "#8ca6a6", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#12100F", + "Colour": "#8ca6a6", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#12100F", + "Colour": "#5842ff", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#12100F", + "Colour": "#f49725", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#12100F", + "Colour": "#00b368", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#12100F", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#12100F", + "Colour": "#9995b7", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#12100F", + "Colour": "#9995b7", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#12100F", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#12100F", + "Colour": "#f49725", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#12100F", + "Colour": "#8ca6a6", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#12100F", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#12100F", + "Colour": "#f49725", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#12100F", + "Colour": "#ff5792", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 13, + "Name": "Function", + "Flags": 0, + "FontDesc": "", + "Colour": "#e64100", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 14, + "Name": "Class", + "Flags": 0, + "FontDesc": "", + "Colour": "#0094f0", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 15, + "Name": "Variable", + "Flags": 0, + "FontDesc": "", + "Colour": "#f49725", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 16, + "Name": "Word 5", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 17, + "Name": "Word 6", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 18, + "Name": "Word 7", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", + "Size": -1 + }, { + "Id": 19, + "Name": "Word 8", + "Flags": 0, + "FontDesc": "", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#12100f", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#12100f", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#12100f", - "BgColour": "#12100f", + "Colour": "#faf1dc", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#292727", - "BgColour": "#292727", + "Colour": "#EDE4D1", + "BgColour": "#EDE4D1", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#12100f", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#292727", - "BgColour": "#12100f", + "Colour": "#EDE4D1", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#12100f", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#4a413d", - "BgColour": "#12100f", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Earthsong-light", + "Name": "tcl", + "Theme": "Tokyo Night", "Flags": 5, - "Id": 10, - "KeyWords0": "", - "KeyWords1": "", + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.tcl", "SubstyleBase": -1, "WordSet": [{ "index": -1, "is_substyle": false }, { - "index": -1, + "index": 1, "is_substyle": false }, { "index": -1, @@ -185474,421 +185888,535 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#ffffff", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#565f89", + "BgColour": "#24283b", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#565f89", + "BgColour": "#24283b", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#ff9e64", + "BgColour": "#24283b", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#cfc9c2", + "BgColour": "#24283b", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#9ece6a", + "BgColour": "#24283b", "Size": -1 }, { "Id": 6, - "Name": "Perl error message", + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 21, + "Name": "Block comment", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 20, + "Name": "Comment box", + "Flags": 0, + "FontDesc": "", + "Colour": "#565f89", + "BgColour": "#24283b", "Size": -1 }, { "Id": 7, - "Name": ".NET error message", + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": 8, - "Name": "LUA error message", + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#cfc9c2", + "BgColour": "#24283b", "Size": -1 }, { "Id": 9, - "Name": "CTags line", + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#565f89", + "BgColour": "#24283b", "Size": -1 }, { "Id": 10, - "Name": "Diff line changed", + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": 11, - "Name": "Diff line added", + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FFFFFF", + "Colour": "#cfc9c2", + "BgColour": "#24283b", "Size": -1 }, { "Id": 12, - "Name": "Diff line deleted", + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#f7768e", + "BgColour": "#24283b", "Size": -1 }, { "Id": 13, - "Name": "Diff line message", + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#7aa2f7", + "BgColour": "#24283b", "Size": -1 }, { "Id": 14, - "Name": "PHP error message", + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#ff9e64", + "BgColour": "#24283b", "Size": -1 }, { "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#cfc9c2", + "BgColour": "#24283b", "Size": -1 }, { "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { "Id": 19, - "Name": "HTML tidy style", + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 34, + "Name": "Brace match", + "Flags": 2, + "FontDesc": "", + "Colour": "yellow", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, + "FontDesc": "", + "Colour": "red", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 37, + "Name": "Indent Guide", + "Flags": 0, + "FontDesc": "", + "Colour": "#24283b", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": -1, + "Name": "Fold Margin", + "Flags": 0, + "FontDesc": "", + "Colour": "#393D4E", + "BgColour": "#393D4E", + "Size": -1 + }, { + "Id": -2, + "Name": "Text Selection", + "Flags": 0, + "FontDesc": "", + "Colour": "#404040", + "BgColour": "#CC9900", + "Size": -1 + }, { + "Id": -3, + "Name": "Caret Colour", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": -4, + "Name": "Whitespace", + "Flags": 0, + "FontDesc": "", + "Colour": "#393D4E", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 38, + "Name": "Calltip", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", + "Size": -1 + }, { + "Id": 33, + "Name": "Line Numbers", + "Flags": 0, + "FontDesc": "", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 + }] + }, { + "Name": "tcl", + "Theme": "Alacritty: Mariana", + "Flags": 5, + "Id": 25, + "KeyWords0": "break catch cd continue for foreach if proc return set switch unknown unset while", + "KeyWords1": "append array assert assert_equal assert_error assert_match close concat eof error eval exec exit expr file flush format gets glob global history incr info join lappend library lindex linsert list llength lrange lreplace lsearch lsort open pid puts pwd read regexp regsub rename scan seek source split string subst tclvars tell test time trace uplevel upvar vwait", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.tcl", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false + }, { + "index": 1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false }, { - "Id": 20, - "Name": "Java stack", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "GREY", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 2, + "Name": "Comment line", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", + "Colour": "GREY", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 3, + "Name": "Number", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "#82c4c4", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 4, + "Name": "Word in quote", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#f97b58", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 5, + "Name": "In quote", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#acd1a8", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 6, + "Name": "Operator", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 21, + "Name": "Block comment", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "GREY", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 20, + "Name": "Comment box", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "GREY", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 7, + "Name": "Identifier", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FFFFFF", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": 8, + "Name": "Substitution", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", + "Colour": "#f97b58", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": 9, + "Name": "Sub brace", "Flags": 0, "FontDesc": "", - "Colour": "#325CC0", - "BgColour": "#FFFFFF", + "Colour": "GREY", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 10, + "Name": "Modifier", "Flags": 0, "FontDesc": "", - "Colour": "#7A3E9D", - "BgColour": "#FFFFFF", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 11, + "Name": "Expand", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#f97b58", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 12, + "Name": "Keyword", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", + "Colour": "#d8b6d8", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 13, + "Name": "Function", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", + "Colour": "#85add6", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "Id": 14, + "Name": "Class", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", + "Colour": "#fac761", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 15, + "Name": "Variable", "Flags": 0, "FontDesc": "", - "Colour": "#B24B45", - "BgColour": "#FFFFFF", + "Colour": "#f97b58", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 16, + "Name": "Word 5", "Flags": 0, "FontDesc": "", - "Colour": "#56973C", - "BgColour": "#FFFFFF", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 17, + "Name": "Word 6", "Flags": 0, "FontDesc": "", - "Colour": "#466CC6", - "BgColour": "#FFFFFF", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 18, + "Name": "Word 7", "Flags": 0, "FontDesc": "", - "Colour": "#8751A6", - "BgColour": "#FFFFFF", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 19, + "Name": "Word 8", "Flags": 0, "FontDesc": "", - "Colour": "#198FB9", - "BgColour": "#FFFFFF", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#343d46", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#343d46", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", - "BgColour": "#ffffff", + "Colour": "#343d46", + "BgColour": "#343d46", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#485058", + "BgColour": "#485058", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#111111", - "BgColour": "#ffffff", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#ffffff", + "Colour": "#485058", + "BgColour": "#343d46", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#4d463e", - "BgColour": "#ffffff", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#cccccc", - "BgColour": "#ffffff", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Earthsong", + "Name": "properties", + "Theme": "Atom One-Dark", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -185908,421 +186436,425 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#E0E2E4", + "BgColour": "#282C34", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#7D8C93", + "BgColour": "#282C34", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#FFC235", + "BgColour": "#282C34", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#E0E2E4", + "BgColour": "#282C34", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#E0E2E4", + "BgColour": "#282C34", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#F35151", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "yellow", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#36312C", + "Colour": "red", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#36312C", + "Colour": "#282C34", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#36312C", + "Colour": "#3D4148", + "BgColour": "#3D4148", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#36312C", + "Colour": "YELLOW", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#3D4148", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#E0E2E4", + "BgColour": "#282C34", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#81969A", + "BgColour": "#282C34", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Atom One Light", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#36312C", + "Colour": "#A0A1A7", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#C18401", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#36312C", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#36312C", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#36312C", + "Colour": "#FFFFFF", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#36312C", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#36312C", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#36312C", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#36312C", + "Colour": "#F2F2F2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#36312C", + "Colour": "#383A42", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#36312C", + "Colour": "#999999", + "BgColour": "#FFFFFF", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Xcode inspired", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#36312C", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#36312C", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#36312C", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#36312C", + "Colour": "#1D8711", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#36312C", + "Colour": "#6F33A7", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#36312C", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#36312C", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#36312C", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#36312c", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#36312c", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#36312c", - "BgColour": "#36312c", + "Colour": "#FFFFFF", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", - "BgColour": "#4A4541", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#36312c", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A4541", - "BgColour": "#36312c", + "Colour": "#F2F2F2", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#ebd1b7", - "BgColour": "#36312c", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#6e645a", - "BgColour": "#36312c", + "Colour": "#999999", + "BgColour": "#FFFFFF", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Github-Gruvbox-Theme", + "Name": "properties", + "Theme": "Classic Eclipse", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -186342,336 +186874,340 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#557F5F", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#006600", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#FF5809", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#22272E", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#22272E", + "Colour": "#FFFFFF", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#22272E", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#22272E", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#F2F2F2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#333333", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#D8D8D8", + "BgColour": "#FFFFFF", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Dark Flash Builder", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#22272E", + "Colour": "#7F9F7F", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#D25B5B", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#22272E", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#6699CC", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#22272E", + "Colour": "yellow", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "red", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#22272E", + "Colour": "#3F3F3F", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#22272E", + "Colour": "#525252", + "BgColour": "#525252", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#22272E", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#22272E", + "Colour": "YELLOW", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#22272E", + "Colour": "#525252", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#22272E", + "Colour": "#DDDDCC", + "BgColour": "#3F3F3F", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#22272E", + "Colour": "#8A8A8A", + "BgColour": "#3F3F3F", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Intellij Dracula", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#22272E", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#22272E", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#22272E", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#22272E", + "Colour": "#808080", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#22272E", + "Colour": "#A9B7C6", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#22272E", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#22272E", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#22272E", + "Colour": "#79ABFF", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 34, @@ -186679,7 +187215,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#22272e", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 35, @@ -186687,23 +187223,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#22272e", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#22272e", - "BgColour": "#22272e", + "Colour": "#2B2B2B", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#383C42", - "BgColour": "#383C42", + "Colour": "#404040", + "BgColour": "#404040", "Size": -1 }, { "Id": -2, @@ -186718,45 +187254,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#539bf5", - "BgColour": "#22272e", + "Colour": "YELLOW", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#383C42", - "BgColour": "#22272e", + "Colour": "#404040", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#adbac7", - "BgColour": "#22272e", + "Colour": "#D8D8D8", + "BgColour": "#2B2B2B", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#768390", - "BgColour": "#22272e", + "Colour": "#D0D0D0", + "BgColour": "#2B2B2B", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Gruvbox Material Dark", + "Name": "properties", + "Theme": "Emacsen", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -186776,336 +187312,340 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#586E75", + "BgColour": "#234059", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#D5A920", + "BgColour": "#234059", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#2B9DED", + "BgColour": "#234059", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "yellow", + "BgColour": "#234059", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#292828", + "Colour": "red", + "BgColour": "#234059", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#292828", + "Colour": "#234059", + "BgColour": "#234059", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#292828", + "Colour": "#395369", + "BgColour": "#395369", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#292828", + "Colour": "YELLOW", + "BgColour": "#234059", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#395369", + "BgColour": "#234059", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#839496", + "BgColour": "#234059", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#758B8B", + "BgColour": "#234059", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Clasic Emacs", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#292828", + "Colour": "#C7DD0C", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#D25252", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#292828", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#79ABFF", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#292828", + "Colour": "yellow", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "red", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#292828", + "Colour": "#2F4F4F", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#292828", + "Colour": "#436060", + "BgColour": "#436060", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#292828", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#292828", + "Colour": "YELLOW", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#292828", + "Colour": "#436060", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#292828", + "Colour": "#F5DEB3", + "BgColour": "#2F4F4F", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#292828", + "Colour": "#D0D0D0", + "BgColour": "#2F4F4F", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Gedit Original Oblivion", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#292828", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#292828", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#292828", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#292828", + "Colour": "#888a85", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#292828", + "Colour": "#bbbbbb", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#292828", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#292828", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#292828", + "Colour": "#729fcf", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 34, @@ -187113,7 +187653,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#292828", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 35, @@ -187121,23 +187661,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#292828", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#292828", - "BgColour": "#292828", + "Colour": "#2e3436", + "BgColour": "#2e3436", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", - "BgColour": "#3E3D3D", + "Colour": "#42484A", + "BgColour": "#42484A", "Size": -1 }, { "Id": -2, @@ -187152,45 +187692,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "YELLOW", + "BgColour": "#2e3436", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#3E3D3D", - "BgColour": "#292828", + "Colour": "#42484A", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#d4be98", - "BgColour": "#292828", + "Colour": "#d3d7cf", + "BgColour": "#2e3436", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#7c6f64", - "BgColour": "#292828", + "Colour": "#555753", + "BgColour": "#2e3436", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Gruvbox", + "Name": "properties", + "Theme": "BlueHippo", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -187210,336 +187750,340 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#6D6D6D", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#696969", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#CC0866", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#D87093", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#383838", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#383838", + "Colour": "#FFFFFF", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#383838", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#383838", + "Colour": "BLACK", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#F2F2F2", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#000000", + "BgColour": "#FFFFFF", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#708090", + "BgColour": "#FFFFFF", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "My vim dark", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#383838", + "Colour": "#00FFFF", + "BgColour": "#000000", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#00FF00", + "BgColour": "#000000", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", - "BgColour": "#383838", - "Size": -1 - }, { - "Id": 23, - "Name": "ANSI escape sequence", - "Flags": 0, - "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "BgColour": "#000000", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#383838", + "Colour": "#FF8000", + "BgColour": "#000000", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "yellow", + "BgColour": "#000000", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#383838", + "Colour": "red", + "BgColour": "#000000", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#383838", + "Colour": "#000000", + "BgColour": "#000000", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#383838", + "Colour": "#191919", + "BgColour": "#191919", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#383838", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#383838", + "Colour": "YELLOW", + "BgColour": "#000000", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#383838", + "Colour": "#191919", + "BgColour": "#000000", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#383838", + "Colour": "#C0C0C0", + "BgColour": "#000000", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", "Colour": "#C0C0C0", - "BgColour": "#383838", + "BgColour": "#000000", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Oblivion", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#383838", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#383838", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#383838", + "Colour": "#C7DD0C", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#383838", + "Colour": "#D25252", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#383838", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#383838", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#383838", + "Colour": "#79ABFF", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 34, @@ -187547,7 +188091,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#383838", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 35, @@ -187555,23 +188099,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#383838", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#383838", - "BgColour": "#383838", + "Colour": "#1E1E1E", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", - "BgColour": "#4B4B4B", + "Colour": "#343434", + "BgColour": "#343434", "Size": -1 }, { "Id": -2, @@ -187586,45 +188130,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "YELLOW", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4B4B4B", - "BgColour": "#383838", + "Colour": "#343434", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#D8D8D8", + "BgColour": "#1E1E1E", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#EBDBB2", - "BgColour": "#383838", + "Colour": "#D0D0D0", + "BgColour": "#1E1E1E", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Legacy-contrast", + "Name": "properties", + "Theme": "RecognEyes", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -187644,336 +188188,340 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#00E000", + "BgColour": "#101020", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#FF8080", + "BgColour": "#101020", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", - "Size": -1 - }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", - "Size": -1 - }, { - "Id": 9, - "Name": "CTags line", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#080A0C", + "Colour": "#79ABFF", + "BgColour": "#101020", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#080A0C", + "Colour": "yellow", + "BgColour": "#101020", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#080A0C", + "Colour": "red", + "BgColour": "#101020", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#101020", + "BgColour": "#101020", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#080A0C", + "Colour": "#272736", + "BgColour": "#272736", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "YELLOW", + "BgColour": "#101020", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#272736", + "BgColour": "#101020", "Size": -1 }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#D0D0D0", + "BgColour": "#101020", "Size": -1 }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#2B91AF", + "BgColour": "#101020", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Roboticket", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#080A0C", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 21, - "Name": "Value", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#6D6D6D", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#080A0C", + "Colour": "#AD95AF", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#AB2525", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#080A0C", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "#55aa55", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#080A0C", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#080A0C", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#080A0C", + "Colour": "#F5F5F5", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#080A0C", + "Colour": "#E8E8E8", + "BgColour": "#E8E8E8", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#080A0C", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#080A0C", + "Colour": "BLACK", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#080A0C", + "Colour": "#E8E8E8", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#080A0C", + "Colour": "#585858", + "BgColour": "#F5F5F5", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#080A0C", + "Colour": "#AFBFCF", + "BgColour": "#F5F5F5", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Sublime Text 2", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#080A0C", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#080A0C", + "Colour": "#FFFFFF", + "BgColour": "#272822", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#080A0C", + "Colour": "#52E3F6", + "BgColour": "#272822", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#080A0C", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#080A0C", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#080A0C", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 34, @@ -187981,7 +188529,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#080a0c", + "BgColour": "#272822", "Size": -1 }, { "Id": 35, @@ -187989,23 +188537,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#080a0c", + "BgColour": "#272822", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#080a0c", - "BgColour": "#080a0c", + "Colour": "#272822", + "BgColour": "#272822", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#202224", - "BgColour": "#202224", + "Colour": "#3C3D38", + "BgColour": "#3C3D38", "Size": -1 }, { "Id": -2, @@ -188020,45 +188568,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#080a0c", + "Colour": "YELLOW", + "BgColour": "#272822", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#202224", - "BgColour": "#080a0c", + "Colour": "#3C3D38", + "BgColour": "#272822", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#080a0c", + "Colour": "#CFBFAD", + "BgColour": "#272822", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#313d49", - "BgColour": "#080a0c", + "Colour": "#999999", + "BgColour": "#272822", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Legacy-light", + "Name": "properties", + "Theme": "Tomorrow Night", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -188078,421 +188626,425 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#ffffff", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#969896", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#F0C674", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#CC6666", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "yellow", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "red", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", + "Colour": "#1D1F21", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FFFFFF", + "Colour": "#333537", + "BgColour": "#333537", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "YELLOW", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#333537", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#C5C8C6", + "BgColour": "#1D1F21", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Vim Desert", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#67C3E7", + "BgColour": "#262626", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#82F985", + "BgColour": "#262626", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#B6B193", + "BgColour": "#262626", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "yellow", + "BgColour": "#262626", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "red", + "BgColour": "#262626", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FFFFFF", + "Colour": "#262626", + "BgColour": "#262626", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FFFFFF", + "Colour": "#3B3B3B", + "BgColour": "#3B3B3B", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FFFFFF", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", + "Colour": "YELLOW", + "BgColour": "#262626", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#325CC0", - "BgColour": "#FFFFFF", + "Colour": "#3B3B3B", + "BgColour": "#262626", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#7A3E9D", - "BgColour": "#FFFFFF", + "Colour": "#FFFFFF", + "BgColour": "#262626", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FFFFFF", + "Colour": "#FFFE00", + "BgColour": "#262626", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Vim Jellybeans Port", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FFFFFF", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FFFFFF", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#B24B45", - "BgColour": "#FFFFFF", + "Colour": "#888888", + "BgColour": "#151515", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#56973C", - "BgColour": "#FFFFFF", + "Colour": "#FFB964", + "BgColour": "#151515", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#466CC6", - "BgColour": "#FFFFFF", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#8751A6", - "BgColour": "#FFFFFF", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#198FB9", - "BgColour": "#FFFFFF", + "Colour": "#79ABFF", + "BgColour": "#151515", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "cyan", + "Colour": "yellow", + "BgColour": "#151515", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "black", - "BgColour": "red", + "Colour": "red", + "BgColour": "#151515", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", - "BgColour": "#ffffff", + "Colour": "#151515", + "BgColour": "#151515", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#F2F2F2", + "Colour": "#2C2C2C", + "BgColour": "#2C2C2C", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#484848", - "BgColour": "#BDD8F2", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#222222", - "BgColour": "#ffffff", + "Colour": "YELLOW", + "BgColour": "#151515", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#F2F2F2", - "BgColour": "#ffffff", + "Colour": "#2C2C2C", + "BgColour": "#151515", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#444444", - "BgColour": "#ffffff", + "Colour": "#D8D8D8", + "BgColour": "#151515", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#cccccc", - "BgColour": "#ffffff", + "Colour": "#605958", + "BgColour": "#151515", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Legacy", + "Name": "properties", + "Theme": "One Dark Pro", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -188512,421 +189064,425 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#5c6370", + "BgColour": "#282c34", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#c678dd", + "BgColour": "#282c34", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#e06c75", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "yellow", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#212933", + "Colour": "red", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#212933", + "Colour": "#282c34", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#212933", + "Colour": "#3D4148", + "BgColour": "#3D4148", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#212933", + "Colour": "#528bff", + "BgColour": "#ffffffc9", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#3D4148", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#abb2bf", + "BgColour": "#282c34", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#495162", + "BgColour": "#282c34", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Darkside-contrast", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#212933", + "Colour": "#494b4d", + "BgColour": "#000000", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#1cc3e8", + "BgColour": "#000000", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#212933", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#212933", + "Colour": "yellow", + "BgColour": "#000000", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "red", + "BgColour": "#000000", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#212933", + "Colour": "#000000", + "BgColour": "#000000", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#212933", + "Colour": "#191919", + "BgColour": "#191919", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#212933", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#212933", + "Colour": "#f8f8f0", + "BgColour": "#000000", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#212933", + "Colour": "#191919", + "BgColour": "#000000", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#212933", + "Colour": "#bababa", + "BgColour": "#000000", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#212933", + "Colour": "#333333", + "BgColour": "#000000", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Darkside-light", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#212933", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#212933", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#212933", + "Colour": "#6D6D6D", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#212933", + "Colour": "#494b4d", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#212933", + "Colour": "#15a2c1", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#212933", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#212933", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#212933", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#212933", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#212933", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#212933", - "BgColour": "#212933", + "Colour": "#e0e0e0", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#373E47", - "BgColour": "#373E47", + "Colour": "#D4D4D4", + "BgColour": "#D4D4D4", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#f8f8f0", - "BgColour": "#212933", + "Colour": "#222222", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#373E47", - "BgColour": "#212933", + "Colour": "#D4D4D4", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#aec2e0", - "BgColour": "#212933", + "Colour": "#222324", + "BgColour": "#e0e0e0", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#495b71", - "BgColour": "#212933", + "Colour": "#adadad", + "BgColour": "#e0e0e0", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Solarized+", + "Name": "properties", + "Theme": "Darkside", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -188946,421 +189502,425 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#494b4d", + "BgColour": "#222324", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#1cc3e8", + "BgColour": "#222324", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "yellow", + "BgColour": "#222324", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#002B36", + "Colour": "red", + "BgColour": "#222324", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#002B36", + "Colour": "#222324", + "BgColour": "#222324", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#002B36", + "Colour": "#383939", + "BgColour": "#383939", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#002B36", + "Colour": "#f8f8f0", + "BgColour": "#222324", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#383939", + "BgColour": "#222324", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#bababa", + "BgColour": "#222324", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#545658", + "BgColour": "#222324", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Earthsong-contrast", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#002B36", + "Colour": "#7a7267", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#95cc5e", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#002B36", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#002B36", + "Colour": "yellow", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "red", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#002B36", + "Colour": "#12100f", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#002B36", + "Colour": "#292727", + "BgColour": "#292727", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#002B36", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#002B36", + "Colour": "#f8f8f0", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#002B36", + "Colour": "#292727", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#002B36", + "Colour": "#ebd1b7", + "BgColour": "#12100f", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#002B36", + "Colour": "#4a413d", + "BgColour": "#12100f", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Earthsong-light", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#002B36", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#002B36", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#002B36", + "Colour": "#6D6D6D", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#002B36", + "Colour": "#d6cab9", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#002B36", + "Colour": "#95cc5e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#002B36", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#002B36", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#002B36", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 34, "Name": "Brace match", "Flags": 2, "FontDesc": "", - "Colour": "yellow", - "BgColour": "#002B36", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { "Id": 35, "Name": "Brace bad match", "Flags": 2, "FontDesc": "", - "Colour": "red", - "BgColour": "#002B36", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#002B36", - "BgColour": "#002B36", + "Colour": "#ffffff", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#19404A", - "BgColour": "#19404A", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#404040", - "BgColour": "#CC9900", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { "Id": -3, "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#85efff", - "BgColour": "#002B36", + "Colour": "#111111", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#19404A", - "BgColour": "#002B36", + "Colour": "#F2F2F2", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#839496", - "BgColour": "#002B36", + "Colour": "#4d463e", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#4e6b6e", - "BgColour": "#002B36", + "Colour": "#cccccc", + "BgColour": "#ffffff", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Tango Dark", + "Name": "properties", + "Theme": "Earthsong", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -189380,336 +189940,340 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#7a7267", + "BgColour": "#36312c", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#95cc5e", + "BgColour": "#36312c", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "yellow", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3434", + "Colour": "red", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2E3434", + "Colour": "#36312c", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#2E3434", + "Colour": "#4A4541", + "BgColour": "#4A4541", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3434", + "Colour": "#f8f8f0", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#4A4541", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#ebd1b7", + "BgColour": "#36312c", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#6e645a", + "BgColour": "#36312c", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Github-Gruvbox-Theme", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3434", + "Colour": "#928374", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#7DAEA3", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2E3434", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#D4BE98", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3434", + "Colour": "yellow", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "red", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#2E3434", + "Colour": "#22272e", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#2E3434", + "Colour": "#383C42", + "BgColour": "#383C42", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#2E3434", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2E3434", + "Colour": "#539bf5", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#2E3434", + "Colour": "#383C42", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#2E3434", + "Colour": "#adbac7", + "BgColour": "#22272e", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#2E3434", + "Colour": "#768390", + "BgColour": "#22272e", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Gruvbox Material Dark", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2E3434", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#2E3434", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#2E3434", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#2E3434", + "Colour": "#928374", + "BgColour": "#292828", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#2E3434", + "Colour": "#7daea3", + "BgColour": "#292828", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#2E3434", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#2E3434", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#2E3434", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": 34, @@ -189717,7 +190281,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#2e3434", + "BgColour": "#292828", "Size": -1 }, { "Id": 35, @@ -189725,23 +190289,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#2e3434", + "BgColour": "#292828", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#2e3434", - "BgColour": "#2e3434", + "Colour": "#292828", + "BgColour": "#292828", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#424848", - "BgColour": "#424848", + "Colour": "#3E3D3D", + "BgColour": "#3E3D3D", "Size": -1 }, { "Id": -2, @@ -189756,45 +190320,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#ffffff", - "BgColour": "#2e3434", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#424848", - "BgColour": "#2e3434", + "Colour": "#3E3D3D", + "BgColour": "#292828", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#d4be98", + "BgColour": "#292828", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#eeeeec", - "BgColour": "#2e3434", + "Colour": "#7c6f64", + "BgColour": "#292828", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Tokyo Light", + "Name": "properties", + "Theme": "Gruvbox", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -189814,336 +190378,340 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#6D6D6D", - "BgColour": "#faf1dc", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#928374", + "BgColour": "#383838", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#fa5c4b", + "BgColour": "#383838", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", - "Size": -1 - }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", - "Size": -1 - }, { - "Id": 9, - "Name": "CTags line", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FAF1DC", + "Colour": "#fdf4c1", + "BgColour": "#383838", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FAF1DC", + "Colour": "yellow", + "BgColour": "#383838", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FAF1DC", + "Colour": "red", + "BgColour": "#383838", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#383838", + "BgColour": "#383838", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FAF1DC", + "Colour": "#4B4B4B", + "BgColour": "#4B4B4B", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#4B4B4B", + "BgColour": "#383838", "Size": -1 }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#EBDBB2", + "BgColour": "#383838", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Legacy-contrast", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", - "Flags": 0, - "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 20, - "Name": "Java stack", - "Flags": 0, - "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FAF1DC", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 21, - "Name": "Value", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FAF1DC", + "Colour": "#324357", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#267fb5", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FAF1DC", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#000000", - "BgColour": "#FAF1DC", + "Colour": "yellow", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#AA3731", - "BgColour": "#FAF1DC", + "Colour": "red", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#448C27", - "BgColour": "#FAF1DC", + "Colour": "#080a0c", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FAF1DC", + "Colour": "#202224", + "BgColour": "#202224", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#325CC0", - "BgColour": "#FAF1DC", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#7A3E9D", - "BgColour": "#FAF1DC", + "Colour": "#f8f8f0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#0083B2", - "BgColour": "#FAF1DC", + "Colour": "#202224", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 47, - "Name": "ANSI escape grey", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FAF1DC", + "Colour": "#aec2e0", + "BgColour": "#080a0c", "Size": -1 }, { - "Id": 51, - "Name": "ANSI escape yellow", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#CB9000", - "BgColour": "#FAF1DC", + "Colour": "#313d49", + "BgColour": "#080a0c", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Legacy-light", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }, { + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#808080", - "BgColour": "#FAF1DC", + "Colour": "#6D6D6D", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#B24B45", - "BgColour": "#FAF1DC", + "Colour": "#324357", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#56973C", - "BgColour": "#FAF1DC", + "Colour": "#267fb5", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#466CC6", - "BgColour": "#FAF1DC", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#8751A6", - "BgColour": "#FAF1DC", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#198FB9", - "BgColour": "#FAF1DC", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 34, @@ -190166,16 +190734,16 @@ "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#faf1dc", - "BgColour": "#faf1dc", + "Colour": "#ffffff", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", - "BgColour": "#EDE4D1", + "Colour": "#F2F2F2", + "BgColour": "#F2F2F2", "Size": -1 }, { "Id": -2, @@ -190190,45 +190758,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#222222", + "BgColour": "#ffffff", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#EDE4D1", - "BgColour": "#faf1dc", + "Colour": "#F2F2F2", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#444444", + "BgColour": "#ffffff", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#343b58", - "BgColour": "#faf1dc", + "Colour": "#cccccc", + "BgColour": "#ffffff", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Tokyo Night", + "Name": "properties", + "Theme": "Legacy", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -190248,336 +190816,340 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#425972", + "BgColour": "#212933", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#267fb5", + "BgColour": "#212933", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "yellow", + "BgColour": "#212933", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#24283B", + "Colour": "red", + "BgColour": "#212933", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#24283B", + "Colour": "#212933", + "BgColour": "#212933", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#24283B", + "Colour": "#373E47", + "BgColour": "#373E47", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#24283B", + "Colour": "#f8f8f0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#373E47", + "BgColour": "#212933", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#aec2e0", + "BgColour": "#212933", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#495b71", + "BgColour": "#212933", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Solarized+", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#24283B", + "Colour": "#5b858b", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#859900", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#24283B", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#24283B", + "Colour": "yellow", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "red", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#24283B", + "Colour": "#002B36", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#24283B", + "Colour": "#19404A", + "BgColour": "#19404A", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#24283B", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#24283B", + "Colour": "#85efff", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#24283B", + "Colour": "#19404A", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#24283B", + "Colour": "#839496", + "BgColour": "#002B36", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#24283B", + "Colour": "#4e6b6e", + "BgColour": "#002B36", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Tango Dark", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#24283B", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#24283B", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#24283B", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#24283B", + "Colour": "#888A85", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#24283B", + "Colour": "#6FA0CB", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#24283B", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#24283B", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#24283B", + "Colour": "#FFFFFF", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 34, @@ -190585,7 +191157,7 @@ "Flags": 2, "FontDesc": "", "Colour": "yellow", - "BgColour": "#24283b", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 35, @@ -190593,23 +191165,23 @@ "Flags": 2, "FontDesc": "", "Colour": "red", - "BgColour": "#24283b", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 37, "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#24283b", - "BgColour": "#24283b", + "Colour": "#2e3434", + "BgColour": "#2e3434", "Size": -1 }, { "Id": -1, "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", - "BgColour": "#393D4E", + "Colour": "#424848", + "BgColour": "#424848", "Size": -1 }, { "Id": -2, @@ -190624,45 +191196,45 @@ "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#ffffff", + "BgColour": "#2e3434", "Size": -1 }, { "Id": -4, "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#393D4E", - "BgColour": "#24283b", + "Colour": "#424848", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 38, "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }, { "Id": 33, "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#a9b1d6", - "BgColour": "#24283b", + "Colour": "#eeeeec", + "BgColour": "#2e3434", "Size": -1 }] }, { - "Name": "errorlist", - "Theme": "Alacritty: Mariana", + "Name": "properties", + "Theme": "Tokyo Light", "Flags": 5, - "Id": 10, + "Id": 9, "KeyWords0": "", "KeyWords1": "", "KeyWords2": "", "KeyWords3": "", "KeyWords4": "", - "Extensions": "*.log", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", "SubstyleBase": -1, "WordSet": [{ "index": -1, @@ -190682,336 +191254,340 @@ "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#6D6D6D", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 1, - "Name": "Python error message", + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#8ca6a6", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 2, - "Name": "GCC like error message", + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#0094f0", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 3, - "Name": "MSVC error message", + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 4, - "Name": "CMD error message", + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { "Id": 5, - "Name": "Borland error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", - "Size": -1 - }, { - "Id": 6, - "Name": "Perl error message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", - "Size": -1 - }, { - "Id": 7, - "Name": ".NET error message", + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#f49725", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 8, - "Name": "LUA error message", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "black", + "BgColour": "cyan", "Size": -1 }, { - "Id": 9, - "Name": "CTags line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#343D46", + "Colour": "black", + "BgColour": "red", "Size": -1 }, { - "Id": 10, - "Name": "Diff line changed", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#343D46", + "Colour": "#faf1dc", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 11, - "Name": "Diff line added", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#343D46", + "Colour": "#EDE4D1", + "BgColour": "#EDE4D1", "Size": -1 }, { - "Id": 12, - "Name": "Diff line deleted", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#484848", + "BgColour": "#BDD8F2", "Size": -1 }, { - "Id": 13, - "Name": "Diff line message", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#343D46", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 14, - "Name": "PHP error message", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#EDE4D1", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 15, - "Name": "Essential Lahey Fortran error message", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 }, { - "Id": 16, - "Name": "Intel Fortran Compiler error/warning message", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#343b58", + "BgColour": "#faf1dc", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Tokyo Night", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 17, - "Name": "Intel Fortran Compiler v8.0 error/warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 18, - "Name": "Absoft Pro Fortran 90/95 v8.2 error and/or warning message", - "Flags": 0, - "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 19, - "Name": "HTML tidy style", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 20, - "Name": "Java stack", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#343D46", + "Colour": "#565f89", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 21, - "Name": "Value", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#ff9e64", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 22, - "Name": "GCC 'included from'", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#343D46", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 23, - "Name": "ANSI escape sequence", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#d8dee9", - "BgColour": "#343d46", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 24, - "Name": "ANSI escape sequence unknown", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#cfc9c2", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 25, - "Name": "GCC code excerpt and pointer to issue", - "Flags": 0, + "Id": 34, + "Name": "Brace match", + "Flags": 2, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#343D46", + "Colour": "yellow", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 26, - "Name": "Bash diagnostic line", - "Flags": 0, + "Id": 35, + "Name": "Brace bad match", + "Flags": 2, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "red", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 40, - "Name": "ANSI escape black", + "Id": 37, + "Name": "Indent Guide", "Flags": 0, "FontDesc": "", - "Colour": "#0E1415", - "BgColour": "#343D46", + "Colour": "#24283b", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 41, - "Name": "ANSI escape red", + "Id": -1, + "Name": "Fold Margin", "Flags": 0, "FontDesc": "", - "Colour": "#E25D56", - "BgColour": "#343D46", + "Colour": "#393D4E", + "BgColour": "#393D4E", "Size": -1 }, { - "Id": 42, - "Name": "ANSI escape green", + "Id": -2, + "Name": "Text Selection", "Flags": 0, "FontDesc": "", - "Colour": "#73CA50", - "BgColour": "#343D46", + "Colour": "#404040", + "BgColour": "#CC9900", "Size": -1 }, { - "Id": 43, - "Name": "ANSI escape brown", + "Id": -3, + "Name": "Caret Colour", "Flags": 0, "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#343D46", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 44, - "Name": "ANSI escape blue", + "Id": -4, + "Name": "Whitespace", "Flags": 0, "FontDesc": "", - "Colour": "#4A88E4", - "BgColour": "#343D46", + "Colour": "#393D4E", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 45, - "Name": "ANSI escape magenta", + "Id": 38, + "Name": "Calltip", "Flags": 0, "FontDesc": "", - "Colour": "#915CAF", - "BgColour": "#343D46", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 }, { - "Id": 46, - "Name": "ANSI escape cyan", + "Id": 33, + "Name": "Line Numbers", "Flags": 0, "FontDesc": "", - "Colour": "#23ACDD", - "BgColour": "#343D46", + "Colour": "#a9b1d6", + "BgColour": "#24283b", "Size": -1 + }] + }, { + "Name": "properties", + "Theme": "Alacritty: Mariana", + "Flags": 5, + "Id": 9, + "KeyWords0": "", + "KeyWords1": "", + "KeyWords2": "", + "KeyWords3": "", + "KeyWords4": "", + "Extensions": "*.ini;*.properties;*.desktop;*.toml", + "SubstyleBase": -1, + "WordSet": [{ + "index": -1, + "is_substyle": false }, { - "Id": 47, - "Name": "ANSI escape grey", - "Flags": 0, - "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#343D46", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 51, - "Name": "ANSI escape yellow", - "Flags": 0, - "FontDesc": "", - "Colour": "#E9BF57", - "BgColour": "#343D46", - "Size": -1 + "index": -1, + "is_substyle": false }, { - "Id": 48, - "Name": "ANSI escape dark grey", + "index": -1, + "is_substyle": false + }], + "Properties": [{ + "Id": 0, + "Name": "Default", "Flags": 0, "FontDesc": "", - "Colour": "#C0C0C0", - "BgColour": "#343D46", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 49, - "Name": "ANSI escape bright red", + "Id": 1, + "Name": "Comment", "Flags": 0, "FontDesc": "", - "Colour": "#E46D66", - "BgColour": "#343D46", + "Colour": "GREY", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 50, - "Name": "ANSI escape bright green", + "Id": 2, + "Name": "Section", "Flags": 0, "FontDesc": "", - "Colour": "#81CF61", - "BgColour": "#343D46", + "Colour": "#fac761", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 52, - "Name": "ANSI escape bright blue", + "Id": 3, + "Name": "Assignment", "Flags": 0, "FontDesc": "", - "Colour": "#5C93E6", - "BgColour": "#343D46", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 53, - "Name": "ANSI escape bright magenta", + "Id": 4, + "Name": "Default Value", "Flags": 0, "FontDesc": "", - "Colour": "#9C6CB7", - "BgColour": "#343D46", + "Colour": "#d8dee9", + "BgColour": "#343d46", "Size": -1 }, { - "Id": 54, - "Name": "ANSI escape bright cyan", + "Id": 5, + "Name": "Key", "Flags": 0, "FontDesc": "", - "Colour": "#39B4E0", - "BgColour": "#343D46", + "Colour": "#f97b58", + "BgColour": "#343d46", "Size": -1 }, { "Id": 34, diff --git a/submodules/lexilla b/submodules/lexilla new file mode 160000 index 0000000000..e64c971c76 --- /dev/null +++ b/submodules/lexilla @@ -0,0 +1 @@ +Subproject commit e64c971c76764edc2b25a92968f3be4bcf8ceade