Update
This commit is contained in:
@@ -11,40 +11,31 @@ SETLOCAL ENABLEDELAYEDEXPANSION
|
||||
|
||||
:: Define ANSI Colors
|
||||
SET "OFF=[0m"
|
||||
SET "RED=[31m"
|
||||
SET "RED=[91m"
|
||||
SET "GREEN=[32m"
|
||||
SET "YELLOW=[33m"
|
||||
SET "BLUE=[94m"
|
||||
SET "CYAN=[96m"
|
||||
|
||||
:: Clearing vars and setting defaults
|
||||
SET "fps=15"
|
||||
SET "mode=1"
|
||||
SET "dither=0"
|
||||
SET "scale=-1"
|
||||
SET "filetype=gif"
|
||||
SET "webp_lossy="
|
||||
SET "webp_lossy_def=75"
|
||||
SET "loglevel=error"
|
||||
:: Clearing all variables
|
||||
SET "scale="
|
||||
SET "fps="
|
||||
SET "mode="
|
||||
SET "dither="
|
||||
SET "bayerscale="
|
||||
SET "colormax="
|
||||
SET "filetype="
|
||||
SET "start_time="
|
||||
SET "end_time="
|
||||
SET "webp_lossy="
|
||||
SET "colormax="
|
||||
SET "version="
|
||||
SET "build="
|
||||
SET "errorswitch="
|
||||
SET "picswitch="
|
||||
SET "loglevel="
|
||||
|
||||
:: Assign input and output
|
||||
:: Check input
|
||||
SET input="%~1"
|
||||
SET output=%~dpn1
|
||||
|
||||
:: Input file validation
|
||||
IF NOT EXIST %input% (
|
||||
ECHO %RED%Input file not found: %input%%OFF%
|
||||
GOTO :EOF
|
||||
)
|
||||
|
||||
:: Setting the path to the Working Directory
|
||||
SET WD=%TEMP%\VID2ANI
|
||||
|
||||
@@ -70,22 +61,29 @@ IF NOT "%~1" =="" (
|
||||
IF "%~1" =="-s" SET "start_time=%~2" & SHIFT
|
||||
IF "%~1" =="-e" SET "end_time=%~2" & SHIFT
|
||||
IF "%~1" =="-c" SET "colormax=%~2" & SHIFT
|
||||
:: IF "%~1" =="-l" SET "webp_lossy=%~2" & SHIFT
|
||||
IF "%~1" =="-l" (IF "%2" == "" ( SET "webp_lossy=%webp_lossy_def%"
|
||||
) ELSE IF 1%2 NEQ +1%~2 ( SET "webp_lossy=%webp_lossy_def%"
|
||||
) ELSE ( SET "webp_lossy=%~2" & SHIFT )
|
||||
)
|
||||
IF "%~1" =="-l" SET "webp_lossy=%~2" & SHIFT
|
||||
IF "%~1" =="-v" SET "loglevel=%~2" & SHIFT
|
||||
IF "%~1" =="-k" SET "errorswitch=1"
|
||||
IF "%~1" =="-p" SET "picswitch=1"
|
||||
SHIFT & GOTO :varin
|
||||
)
|
||||
GOTO :help_check_2
|
||||
|
||||
:help_check_2
|
||||
:: Noob proofing the script to prevent it from breaking should critical settings not be defined
|
||||
IF NOT DEFINED scale SET "scale=-1"
|
||||
IF NOT DEFINED fps SET "fps=15"
|
||||
IF NOT DEFINED mode SET "mode=1"
|
||||
IF NOT DEFINED dither SET "dither=0"
|
||||
IF NOT DEFINED filetype SET "filetype=gif"
|
||||
IF NOT DEFINED loglevel SET "loglevel=error"
|
||||
|
||||
GOTO :safchek
|
||||
|
||||
:safchek
|
||||
:: Setting a clear range of acceptable setting values and noob proofing bayerscale
|
||||
|
||||
:: Validate output file extension
|
||||
:: Output file type
|
||||
echo %filetype% | findstr /r "\<gif\> \<png\> \<apng\> \<webp\>" >nul
|
||||
IF %errorlevel% NEQ 0 (
|
||||
ECHO %RED%Not a valid file type: %filetype%%OFF%
|
||||
@@ -230,7 +228,7 @@ ffmpeg -v %loglevel% %trim% -i %input% -vf "%filters%,%encode%%mcol%" -y "%palet
|
||||
|
||||
:: Checking if the palette file is in the Working Directory, if not cleaning up
|
||||
IF NOT EXIST "%WD%\palette_00001.png" (
|
||||
ECHO %RED%Palette generation failed: %palette% not found.%OFF%
|
||||
ECHO %RED%Failed to generate palette file%OFF%
|
||||
GOTO :cleanup
|
||||
)
|
||||
|
||||
@@ -283,11 +281,11 @@ ffmpeg -v %loglevel% %trim% -i %input% -thread_queue_size 512 -i "%palette%" -la
|
||||
|
||||
:: Checking if file was created and cleaning up if not
|
||||
IF NOT EXIST "%output%" (
|
||||
ECHO %RED%Failed to generate animation: %output% not found.%OFF%
|
||||
ECHO %RED%Failed to generate animation%OFF%
|
||||
GOTO :cleanup
|
||||
)
|
||||
|
||||
:: Open output file if picswitch is set
|
||||
:: Starting default Photo Viewer
|
||||
IF DEFINED picswitch START "" "%output%"
|
||||
|
||||
:cleanup
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
# License: GNU General Public License v3.0 (GPLv3)
|
||||
|
||||
# Enable error handling
|
||||
# set -euo pipefail
|
||||
set -euo pipefail
|
||||
|
||||
### Start Main ###
|
||||
main() {
|
||||
@@ -20,25 +20,24 @@ YELLOW=$(tput setaf 11)
|
||||
BLUE=$(tput setaf 12)
|
||||
CYAN=$(tput setaf 14)
|
||||
|
||||
# Clearing vars and setting defaults
|
||||
# Default values
|
||||
fps=15
|
||||
mode=1
|
||||
dither=0
|
||||
colormax=256
|
||||
scale="-1"
|
||||
filetype="gif"
|
||||
webp_lossy=""
|
||||
webp_lossy_def=75
|
||||
loglevel="error"
|
||||
bayerscale=""
|
||||
colormax=""
|
||||
start_time=""
|
||||
end_time=""
|
||||
trim=""
|
||||
webp_lossy=""
|
||||
errorswitch=""
|
||||
errordiff=""
|
||||
picswitch=""
|
||||
|
||||
# Assign input and output
|
||||
# Check input
|
||||
if [ $# -eq 0 ]; then print_help; exit; fi
|
||||
input="$1"
|
||||
output="${input%.*}"
|
||||
@@ -46,25 +45,6 @@ output="${input%.*}"
|
||||
echo "Input file: $input"
|
||||
echo "Output file: $output"
|
||||
|
||||
# Input file validation
|
||||
if [[ ! -f "$input" ]]; then
|
||||
echo ${RED}"Input file not found: $input"${OFF}; exit 1
|
||||
fi
|
||||
|
||||
# Fix paths for Cygwin and create working dir
|
||||
if [[ "$(uname -o)" == "Cygwin" ]]; then
|
||||
# Use Windows-compatible directories for Cygwin
|
||||
input=$(cygpath -w "$input")
|
||||
output=$(cygpath -w "$output")
|
||||
WD=$(cygpath -w "$(mktemp -d -t vid2ani-XXXXXX)")
|
||||
else
|
||||
# Use POSIX-compatible directories
|
||||
WD=$(mktemp -d -t vid2ani-XXXXXX)
|
||||
fi
|
||||
|
||||
# Cleanup on exit, interrupt, termination
|
||||
trap 'rm -rf "$WD"' EXIT INT TERM
|
||||
|
||||
# Parse Arguments
|
||||
shift
|
||||
while [[ $# -gt 0 ]]; do
|
||||
@@ -79,17 +59,34 @@ while [[ $# -gt 0 ]]; do
|
||||
-s) start_time="$2"; shift 2;;
|
||||
-e) end_time="$2"; shift 2;;
|
||||
-c) colormax="$2"; shift 2;;
|
||||
# -l) webp_lossy="$2"; shift 2;;
|
||||
-l) if [[ ! "$2" =~ ^[0-9]+$ ]]; then webp_lossy=$webp_lossy_def; shift
|
||||
else webp_lossy="$2"; shift 2; fi ;;
|
||||
-l) webp_lossy="$2"; shift 2;;
|
||||
-v) loglevel="$2"; shift 2;;
|
||||
-k) errorswitch=1; shift;;
|
||||
-p) picswitch=1; shift;;
|
||||
-h|-?) print_help; exit;;
|
||||
-h|--help) print_help; exit;;
|
||||
*) echo ${RED}"Unknown option $1"${OFF}; exit 1;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Input validation
|
||||
if [[ -z "$input" ]]; then
|
||||
echo "Input file is required."; print_help; exit 1
|
||||
fi
|
||||
|
||||
# Fix paths for Cygwin and create working dir
|
||||
if [[ "$(uname -o)" == "Cygwin" ]]; then
|
||||
# Use Windows-compatible directories for Cygwin
|
||||
input=$(cygpath -w "$input")
|
||||
output=$(cygpath -w "$output")
|
||||
WD=$(cygpath -w "$(mktemp -d -t vid2ani-XXXXXX)")
|
||||
else
|
||||
# Use POSIX-compatible directories
|
||||
WD=$(mktemp -d -t vid2ani-XXXXXX)
|
||||
fi
|
||||
|
||||
# Cleanup on exit, interrupt, termination
|
||||
trap 'rm -rf "$WD"' EXIT INT TERM
|
||||
|
||||
# Validate output file extension
|
||||
case "$filetype" in
|
||||
gif) output="$output.gif";;
|
||||
@@ -132,6 +129,23 @@ if [[ -n "$webp_lossy" ]]; then
|
||||
fi
|
||||
fi
|
||||
|
||||
if [[ -n "$start_time" ]]; then
|
||||
echo start er satt
|
||||
fi
|
||||
|
||||
if [[ -z "$start_time" ]]; then
|
||||
echo start er null
|
||||
fi
|
||||
|
||||
if [[ -n "$end_time" ]]; then
|
||||
echo end er satt
|
||||
fi
|
||||
|
||||
if [[ -z "$end_time" ]]; then
|
||||
echo end er null
|
||||
fi
|
||||
|
||||
|
||||
# Validate Clipping
|
||||
if [[ -n "$start_time" && -z "$end_time" ]]; then
|
||||
echo ${RED}"End time (-e) is required when Start time (-e) is specified."${OFF}; exit 1
|
||||
@@ -147,7 +161,7 @@ if [[ "$fps" -le 0 ]]; then
|
||||
fi
|
||||
|
||||
# Validate Max Colors
|
||||
if [[ -n "$colormax" && "$colormax" -lt 3 || "$colormax" -gt 256 ]]; then
|
||||
if [[ "$colormax" -lt 3 || "$colormax" -gt 256 ]]; then
|
||||
echo ${RED}"Max colors (-c) must be between 3 and 256."${OFF}; exit 1
|
||||
fi
|
||||
|
||||
@@ -157,8 +171,8 @@ echo ${YELLOW}"$ffmpeg_version"${OFF}
|
||||
echo ${GREEN}Output file:${OFF} $output
|
||||
|
||||
## Putting together command to generate palette ##
|
||||
palette="$WD/palette_%05d.png"
|
||||
filters="fps=$fps,scale=$scale:-1:flags=lanczos"
|
||||
palette="$WD/palette_%05d.png"
|
||||
|
||||
# APNG muxer does not support multiple palettes so fallback to using palettegen diff mode
|
||||
if [[ "$filetype" == "apng" && "$mode" -eq 2 ]]; then
|
||||
@@ -246,9 +260,7 @@ if [[ -z "$bayerscale" ]]; then bayer=""; fi
|
||||
|
||||
# WEBP pixel format and lossy quality
|
||||
if [[ "$filetype" == "webp" && -n "$webp_lossy" ]]; then
|
||||
webp_lossy="-lossless 0 -quality $webp_lossy -pix_fmt yuva420p"
|
||||
elif [[ "$filetype" == "webp" && -z "$webp_lossy" ]]; then
|
||||
webp_lossy="-lossless 1"
|
||||
webp_lossy="-lossless 0 -pix_fmt yuva420p -quality $webp_lossy"
|
||||
fi
|
||||
|
||||
# Executing the encoding command
|
||||
@@ -258,10 +270,10 @@ ffmpeg -v "${loglevel}" ${trim:-} -i "${input}" -thread_queue_size 512 -i "${pal
|
||||
|
||||
# Checking if output file was created
|
||||
if [[ ! -f "$output" ]]; then
|
||||
echo ${RED}"Failed to generate animation: $output not found"${OFF}; exit 1
|
||||
echo ${RED}"Failed to generate animation."${OFF}; exit 1
|
||||
fi
|
||||
|
||||
# Open output file if picswitch is enabled
|
||||
# Open output if picswitch is enabled
|
||||
if [[ -n "$picswitch" ]]; then
|
||||
xdg-open "$output"
|
||||
fi
|
||||
|
||||
@@ -1,65 +1,54 @@
|
||||
@echo off
|
||||
|
||||
setlocal
|
||||
call :setESC
|
||||
|
||||
cls
|
||||
echo %ESC%[101;93m STYLES %ESC%[0m
|
||||
echo ^<ESC^>[0m %ESC%[0mReset%ESC%[0m
|
||||
echo ^<ESC^>[1m %ESC%[1mBold%ESC%[0m
|
||||
echo ^<ESC^>[4m %ESC%[4mUnderline%ESC%[0m
|
||||
echo ^<ESC^>[7m %ESC%[7mInverse%ESC%[0m
|
||||
echo [101;93m STYLES [0m
|
||||
echo ^<ESC^>[0m [0mReset[0m
|
||||
echo ^<ESC^>[1m [1mBold[0m
|
||||
echo ^<ESC^>[4m [4mUnderline[0m
|
||||
echo ^<ESC^>[7m [7mInverse[0m
|
||||
echo.
|
||||
echo %ESC%[101;93m NORMAL FOREGROUND COLORS %ESC%[0m
|
||||
echo ^<ESC^>[30m %ESC%[30mBlack%ESC%[0m (black)
|
||||
echo ^<ESC^>[31m %ESC%[31mRed%ESC%[0m
|
||||
echo ^<ESC^>[32m %ESC%[32mGreen%ESC%[0m
|
||||
echo ^<ESC^>[33m %ESC%[33mYellow%ESC%[0m
|
||||
echo ^<ESC^>[34m %ESC%[34mBlue%ESC%[0m
|
||||
echo ^<ESC^>[35m %ESC%[35mMagenta%ESC%[0m
|
||||
echo ^<ESC^>[36m %ESC%[36mCyan%ESC%[0m
|
||||
echo ^<ESC^>[37m %ESC%[37mWhite%ESC%[0m
|
||||
echo [101;93m NORMAL FOREGROUND COLORS [0m
|
||||
echo ^<ESC^>[30m [30mBlack[0m (black)
|
||||
echo ^<ESC^>[31m [31mRed[0m
|
||||
echo ^<ESC^>[32m [32mGreen[0m
|
||||
echo ^<ESC^>[33m [33mYellow[0m
|
||||
echo ^<ESC^>[34m [34mBlue[0m
|
||||
echo ^<ESC^>[35m [35mMagenta[0m
|
||||
echo ^<ESC^>[36m [36mCyan[0m
|
||||
echo ^<ESC^>[37m [37mWhite[0m
|
||||
echo.
|
||||
echo %ESC%[101;93m NORMAL BACKGROUND COLORS %ESC%[0m
|
||||
echo ^<ESC^>[40m %ESC%[40mBlack%ESC%[0m
|
||||
echo ^<ESC^>[41m %ESC%[41mRed%ESC%[0m
|
||||
echo ^<ESC^>[42m %ESC%[42mGreen%ESC%[0m
|
||||
echo ^<ESC^>[43m %ESC%[43mYellow%ESC%[0m
|
||||
echo ^<ESC^>[44m %ESC%[44mBlue%ESC%[0m
|
||||
echo ^<ESC^>[45m %ESC%[45mMagenta%ESC%[0m
|
||||
echo ^<ESC^>[46m %ESC%[46mCyan%ESC%[0m
|
||||
echo ^<ESC^>[47m %ESC%[47mWhite%ESC%[0m (white)
|
||||
echo [101;93m NORMAL BACKGROUND COLORS [0m
|
||||
echo ^<ESC^>[40m [40mBlack[0m
|
||||
echo ^<ESC^>[41m [41mRed[0m
|
||||
echo ^<ESC^>[42m [42mGreen[0m
|
||||
echo ^<ESC^>[43m [43mYellow[0m
|
||||
echo ^<ESC^>[44m [44mBlue[0m
|
||||
echo ^<ESC^>[45m [45mMagenta[0m
|
||||
echo ^<ESC^>[46m [46mCyan[0m
|
||||
echo ^<ESC^>[47m [47mWhite[0m (white)
|
||||
echo.
|
||||
echo %ESC%[101;93m STRONG FOREGROUND COLORS %ESC%[0m
|
||||
echo ^<ESC^>[90m %ESC%[90mWhite%ESC%[0m
|
||||
echo ^<ESC^>[91m %ESC%[91mRed%ESC%[0m
|
||||
echo ^<ESC^>[92m %ESC%[92mGreen%ESC%[0m
|
||||
echo ^<ESC^>[93m %ESC%[93mYellow%ESC%[0m
|
||||
echo ^<ESC^>[94m %ESC%[94mBlue%ESC%[0m
|
||||
echo ^<ESC^>[95m %ESC%[95mMagenta%ESC%[0m
|
||||
echo ^<ESC^>[96m %ESC%[96mCyan%ESC%[0m
|
||||
echo ^<ESC^>[97m %ESC%[97mWhite%ESC%[0m
|
||||
echo [101;93m STRONG FOREGROUND COLORS [0m
|
||||
echo ^<ESC^>[90m [90mWhite[0m
|
||||
echo ^<ESC^>[91m [91mRed[0m
|
||||
echo ^<ESC^>[92m [92mGreen[0m
|
||||
echo ^<ESC^>[93m [93mYellow[0m
|
||||
echo ^<ESC^>[94m [94mBlue[0m
|
||||
echo ^<ESC^>[95m [95mMagenta[0m
|
||||
echo ^<ESC^>[96m [96mCyan[0m
|
||||
echo ^<ESC^>[97m [97mWhite[0m
|
||||
echo.
|
||||
echo %ESC%[101;93m STRONG BACKGROUND COLORS %ESC%[0m
|
||||
echo ^<ESC^>[100m %ESC%[100mBlack%ESC%[0m
|
||||
echo ^<ESC^>[101m %ESC%[101mRed%ESC%[0m
|
||||
echo ^<ESC^>[102m %ESC%[102mGreen%ESC%[0m
|
||||
echo ^<ESC^>[103m %ESC%[103mYellow%ESC%[0m
|
||||
echo ^<ESC^>[104m %ESC%[104mBlue%ESC%[0m
|
||||
echo ^<ESC^>[105m %ESC%[105mMagenta%ESC%[0m
|
||||
echo ^<ESC^>[106m %ESC%[106mCyan%ESC%[0m
|
||||
echo ^<ESC^>[107m %ESC%[107mWhite%ESC%[0m
|
||||
echo [101;93m STRONG BACKGROUND COLORS [0m
|
||||
echo ^<ESC^>[100m [100mBlack[0m
|
||||
echo ^<ESC^>[101m [101mRed[0m
|
||||
echo ^<ESC^>[102m [102mGreen[0m
|
||||
echo ^<ESC^>[103m [103mYellow[0m
|
||||
echo ^<ESC^>[104m [104mBlue[0m
|
||||
echo ^<ESC^>[105m [105mMagenta[0m
|
||||
echo ^<ESC^>[106m [106mCyan[0m
|
||||
echo ^<ESC^>[107m [107mWhite[0m
|
||||
echo.
|
||||
echo %ESC%[101;93m COMBINATIONS %ESC%[0m
|
||||
echo ^<ESC^>[31m %ESC%[31mred foreground color%ESC%[0m
|
||||
echo ^<ESC^>[7m %ESC%[7minverse foreground ^<-^> background%ESC%[0m
|
||||
echo ^<ESC^>[7;31m %ESC%[7;31minverse red foreground color%ESC%[0m
|
||||
echo ^<ESC^>[7m and nested ^<ESC^>[31m %ESC%[7mbefore %ESC%[31mnested%ESC%[0m
|
||||
echo ^<ESC^>[31m and nested ^<ESC^>[7m %ESC%[31mbefore %ESC%[7mnested%ESC%[0m
|
||||
|
||||
:setESC
|
||||
for /F "tokens=1,2 delims=#" %%a in ('"prompt #$H#$E# & echo on & for %%b in (1) do rem"') do (
|
||||
set ESC=%%b
|
||||
exit /B 0
|
||||
)
|
||||
exit /B 0
|
||||
echo [101;93m COMBINATIONS [0m
|
||||
echo ^<ESC^>[31m [31mred foreground color[0m
|
||||
echo ^<ESC^>[7m [7minverse foreground ^<-^> background[0m
|
||||
echo ^<ESC^>[7;31m [7;31minverse red foreground color[0m
|
||||
echo ^<ESC^>[7m and nested ^<ESC^>[31m [7mbefore [31mnested[0m
|
||||
echo ^<ESC^>[31m and nested ^<ESC^>[7m [31mbefore [7mnested[0m
|
||||
|
||||
79
Notepad++/contextMenu.xml
Executable file
79
Notepad++/contextMenu.xml
Executable file
@@ -0,0 +1,79 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!--
|
||||
By modifying this file, you can customize your context menu popuped as right clicking on the edit zone.
|
||||
It may be more convinient to access to your frequent used commands via context menu than via the top menu.
|
||||
|
||||
Please check "How to Customize the Context Menu" on:
|
||||
https://npp-user-manual.org/docs/config-files/#the-context-menu-contextmenu-xml
|
||||
-->
|
||||
<NotepadPlus>
|
||||
<ScintillaContextMenu>
|
||||
<!--
|
||||
Use MenuEntryName and MenuItemName to localize your commands to add.
|
||||
The values should be in English but not in translated language.
|
||||
(You can set Notepad++ language back to English from Preferences dialog via menu "Settings->Preferences...")
|
||||
-->
|
||||
<Item MenuEntryName="Edit" MenuItemName="Cut"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Copy"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Paste"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Delete"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Select all"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Begin/End Select"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Begin/End Select in Column Mode"/>
|
||||
|
||||
<!-- id="0" is the separator -->
|
||||
<Item id="0"/>
|
||||
|
||||
<!-- You can use command id to add the commands you want.
|
||||
Check english.xml to get commands id:
|
||||
https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/installer/nativeLang/english.xml
|
||||
|
||||
Use FolderName (optional) to create sub-menu. FolderName can be used in any type of item.
|
||||
FolderName value can be in any language.
|
||||
TranslateID is for translating FolderName's value. If you create your FolderName, don't add TranslateID.
|
||||
-->
|
||||
<Item FolderName="Style all occurrences of token" TranslateID="contextMenu-styleAlloccurrencesOfToken" id="43022"/>
|
||||
<Item FolderName="Style all occurrences of token" TranslateID="contextMenu-styleAlloccurrencesOfToken" id="43024"/>
|
||||
<Item FolderName="Style all occurrences of token" TranslateID="contextMenu-styleAlloccurrencesOfToken" id="43026"/>
|
||||
<Item FolderName="Style all occurrences of token" TranslateID="contextMenu-styleAlloccurrencesOfToken" id="43028"/>
|
||||
<Item FolderName="Style all occurrences of token" TranslateID="contextMenu-styleAlloccurrencesOfToken" id="43030"/>
|
||||
|
||||
<Item FolderName="Style one token" TranslateID="contextMenu-styleOneToken" id="43062"/>
|
||||
<Item FolderName="Style one token" TranslateID="contextMenu-styleOneToken" id="43063"/>
|
||||
<Item FolderName="Style one token" TranslateID="contextMenu-styleOneToken" id="43064"/>
|
||||
<Item FolderName="Style one token" TranslateID="contextMenu-styleOneToken" id="43065"/>
|
||||
<Item FolderName="Style one token" TranslateID="contextMenu-styleOneToken" id="43066"/>
|
||||
|
||||
<Item FolderName="Clear style" TranslateID="contextMenu-clearStyle" id="43023"/>
|
||||
<Item FolderName="Clear style" TranslateID="contextMenu-clearStyle" id="43025"/>
|
||||
<Item FolderName="Clear style" TranslateID="contextMenu-clearStyle" id="43027"/>
|
||||
<Item FolderName="Clear style" TranslateID="contextMenu-clearStyle" id="43029"/>
|
||||
<Item FolderName="Clear style" TranslateID="contextMenu-clearStyle" id="43031"/>
|
||||
<Item FolderName="Clear style" TranslateID="contextMenu-clearStyle" id="43032"/>
|
||||
<Item id="0"/>
|
||||
|
||||
<!--
|
||||
To add plugin commands, you have to use PluginEntryName and PluginCommandItemName to localize the plugin commands
|
||||
-->
|
||||
<Item FolderName="Plugin commands" TranslateID="contextMenu-PluginCommands" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Encode" />
|
||||
<Item FolderName="Plugin commands" TranslateID="contextMenu-PluginCommands" PluginEntryName="MIME Tools" PluginCommandItemName="Base64 Decode" />
|
||||
|
||||
<!--
|
||||
Use ItemNameAs (optional) to rename the menu item name in the context menu
|
||||
ItemNameAs can be used in any type of item. ItemNameAs value can be in any language.
|
||||
-->
|
||||
<Item FolderName="Plugin commands" TranslateID="contextMenu-PluginCommands" PluginEntryName="NppExport" PluginCommandItemName="Copy all formats to clipboard" ItemNameAs="Copy Text with Syntax Highlighting" />
|
||||
<Item id="0"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="UPPERCASE"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="lowercase"/>
|
||||
<Item id="0"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Open File"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Search on Internet"/>
|
||||
<Item id="0"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Toggle Single Line Comment"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Block Comment"/>
|
||||
<Item MenuEntryName="Edit" MenuItemName="Block Uncomment"/>
|
||||
<Item id="0"/>
|
||||
<Item MenuEntryName="View" MenuItemName="Hide lines"/>
|
||||
</ScintillaContextMenu>
|
||||
</NotepadPlus>
|
||||
1799
Notepad++/localization/english_customizable.xml
Executable file
1799
Notepad++/localization/english_customizable.xml
Executable file
File diff suppressed because it is too large
Load Diff
24
Notepad++/shortcuts.xml
Executable file
24
Notepad++/shortcuts.xml
Executable file
@@ -0,0 +1,24 @@
|
||||
<NotepadPlus>
|
||||
<InternalCommands>
|
||||
<Shortcut id="44022" Ctrl="yes" Alt="yes" Shift="no" Key="87" />
|
||||
<Shortcut id="41008" Ctrl="yes" Alt="yes" Shift="no" Key="83" />
|
||||
<Shortcut id="41007" Ctrl="yes" Alt="no" Shift="yes" Key="83" />
|
||||
<Shortcut id="44019" Ctrl="yes" Alt="yes" Shift="no" Key="65" />
|
||||
<Shortcut id="44025" Ctrl="yes" Alt="yes" Shift="no" Key="84" />
|
||||
</InternalCommands>
|
||||
<Macros>
|
||||
<Macro name="Trim Trailing Space and Save" Ctrl="no" Alt="yes" Shift="yes" Key="83">
|
||||
<Action type="2" message="0" wParam="42024" lParam="0" sParam="" />
|
||||
<Action type="2" message="0" wParam="41006" lParam="0" sParam="" />
|
||||
</Macro>
|
||||
</Macros>
|
||||
<UserDefinedCommands>
|
||||
<Command name="Get PHP help" Ctrl="no" Alt="yes" Shift="no" Key="112">https://www.php.net/$(CURRENT_WORD)</Command>
|
||||
<Command name="Wikipedia Search" Ctrl="no" Alt="yes" Shift="no" Key="114">https://en.wikipedia.org/wiki/Special:Search?search=$(CURRENT_WORD)</Command>
|
||||
<Command name="Open selected file path in new instance" Ctrl="no" Alt="yes" Shift="no" Key="117">$(NPP_FULL_FILE_PATH) $(CURRENT_WORD) -nosession -multiInst</Command>
|
||||
<Command name="Launch in Vivaldi" Ctrl="no" Alt="yes" Shift="yes" Key="86">D:\bin\Vivaldi\Application\vivaldi.exe "$(FULL_CURRENT_PATH)"</Command>
|
||||
<Command name="Launch in default program" Ctrl="no" Alt="yes" Shift="yes" Key="82">"$(FULL_CURRENT_PATH)"</Command>
|
||||
</UserDefinedCommands>
|
||||
<PluginCommands />
|
||||
<ScintillaKeys />
|
||||
</NotepadPlus>
|
||||
540
Notepad++/themes/Cobalt.xml
Executable file
540
Notepad++/themes/Cobalt.xml
Executable file
@@ -0,0 +1,540 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<NotepadPlus>
|
||||
<LexerStyles>
|
||||
<LexerType name="bash" desc="Bash" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ERROR" styleID="1" fgColor="FFFFFF" bgColor="FF0000" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="4" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="3" fgColor="FF2662" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="5" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CHARACTER" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="7" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="IDENTIFIER" styleID="8" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SCALAR" styleID="9" fgColor="FF8040" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PARAM" styleID="10" fgColor="00BDBD" bgColor="00FFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="BACKTICKS" styleID="11" fgColor="99994D" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HERE DELIM" styleID="12" fgColor="FF2020" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HERE Q" styleID="13" fgColor="FF6868" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER SCALAR 1" styleID="132" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER SCALAR 2" styleID="133" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER SCALAR 3" styleID="134" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER SCALAR 4" styleID="135" fgColor="FF8040" bgColor="FFFFD9" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="batch" desc="Batch" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="E1E1E1" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="KEYWORDS" styleID="2" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="LABEL" styleID="3" fgColor="FF3E3E" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HIDE SYMBOL" styleID="4" fgColor="FF00FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMAND" styleID="5" fgColor="00FF00" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VARIABLE" styleID="6" fgColor="00E339" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="7" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="AFTER LABEL" styleID="8" fgColor="00A400" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="c" desc="C" ext="">
|
||||
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEFAULT" styleID="11" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="TYPE WORD" styleID="16" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type1"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CHARACTER" styleID="7" fgColor="FEED87" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VERBATIM" styleID="13" fgColor="000000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REGEX" styleID="14" fgColor="FFAAAA" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC" styleID="3" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="cpp" desc="C++" ext="">
|
||||
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEFAULT" styleID="11" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="TYPE WORD" styleID="16" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type1"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CHARACTER" styleID="7" fgColor="FEED87" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VERBATIM" styleID="13" fgColor="FDD802" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REGEX" styleID="14" fgColor="FFAAAA" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC" styleID="3" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="cs" desc="C#" ext="">
|
||||
<WordsStyle name="PREPROCESSOR" styleID="9" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEFAULT" styleID="11" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="TYPE WORD" styleID="16" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type1"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CHARACTER" styleID="7" fgColor="FEED87" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VERBATIM" styleID="13" fgColor="FDD802" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REGEX" styleID="14" fgColor="FFAAAA" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC" styleID="3" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PREPROCESSOR COMMENT" styleID="23" fgColor="008000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PREPROCESSOR COMMENT DOC" styleID="24" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="css" desc="CSS" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="E1E1E1" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TAG" styleID="1" fgColor="F0F0F0" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CLASS" styleID="2" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PSEUDOCLASS" styleID="3" fgColor="CCCCCC" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre2"></WordsStyle>
|
||||
<WordsStyle name="UNKNOWN PSEUDOCLASS" styleID="4" fgColor="E1E1E1" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="5" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="IDENTIFIER" styleID="6" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="UNKNOWN IDENTIFIER" styleID="7" fgColor="E1E1E1" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VALUE" styleID="8" fgColor="80FF80" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="9" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ID" styleID="10" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="IMPORTANT" styleID="11" fgColor="FF2F2F" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DIRECTIVE" styleID="12" fgColor="80FFFF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DOUBLE STRING" styleID="13" fgColor="00AF00" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SINGLE STRING" styleID="14" fgColor="00AF00" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<!--WordsStyle name="IDENTIFIER2" styleID="15" fgColor="0040E0" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /-->
|
||||
<WordsStyle name="ATTRIBUTE" styleID="16" fgColor="FF3C3C" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<!--WordsStyle name="IDENTIFIER3" styleID="17" fgColor="00A0E0" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /-->
|
||||
<WordsStyle name="PSEUDOELEMENT" styleID="18" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type3"></WordsStyle>
|
||||
<!--WordsStyle name="EXTENDED_IDENTIFIER" styleID="19" fgColor="7F7F00" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /-->
|
||||
<!-- LEGACY_PSEUDOELEMENT == EXTENDED_PSEUDOCLASS -->
|
||||
<WordsStyle name="LEGACY PSEUDOELEMENT" styleID="20" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type5"></WordsStyle>
|
||||
<!--WordsStyle name="EXTENDED_PSEUDOELEMENT" styleID="21" fgColor="7F7F00" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /-->
|
||||
<WordsStyle name="MEDIA" styleID="22" fgColor="0080FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VARIABLE" styleID="23" fgColor="DD9900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="html" desc="HTML" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="F0F0F0" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="9" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="5" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DOUBLE STRING" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SINGLE STRING" styleID="7" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TAG" styleID="1" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="TAG END" styleID="11" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TAG UNKNOWN" styleID="2" fgColor="FF3535" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ATTRIBUTE" styleID="3" fgColor="CCCCCC" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ATTRIBUTE UNKNOWN" styleID="4" fgColor="FF4646" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SGML DEFAULT" styleID="21" fgColor="A6CAF0" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VALUE" styleID="19" fgColor="FF8000" bgColor="FEFDE0" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ENTITY" styleID="10" fgColor="0080FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER TAGS1" styleID="192" fgColor="0000FF" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER TAGS2" styleID="193" fgColor="0000FF" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER TAGS3" styleID="194" fgColor="0000FF" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER TAGS4" styleID="195" fgColor="0000FF" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES1" styleID="196" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES2" styleID="197" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES3" styleID="198" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES4" styleID="199" fgColor="FF0000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="ini" desc="INI file" ext="toml">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFF00" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="00C600" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SECTION" styleID="2" fgColor="B973FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ASSIGNMENT" styleID="3" fgColor="979700" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEFVAL" styleID="4" fgColor="808000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="KEY" styleID="5" fgColor="A6A6FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="java" desc="Java" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="11" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="TYPE WORD" styleID="16" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type1"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CHARACTER" styleID="7" fgColor="FFEE80" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VERBATIM" styleID="13" fgColor="000000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REGEX" styleID="14" fgColor="000000" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC" styleID="3" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize="">param @projectDescription projectDescription @param</WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize="">param @projectDescription projectDescription @param</WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="008080" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="009D9D" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="javascript" desc="JavaScript (embedded)" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="41" fgColor="FFFF80" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="45" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="WORD" styleID="46" fgColor="00E600" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="KEYWORD" styleID="47" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="3" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="DOUBLE STRING" styleID="48" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SINGLE STRING" styleID="49" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SYMBOLS" styleID="50" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REGEX" styleID="52" fgColor="FFEE80" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="42" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="43" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC" styleID="44" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="200" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="201" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="202" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="203" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="204" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="205" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="206" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="207" fgColor="003333" bgColor="F2F4FF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="javascript.js" desc="JavaScript" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="11" fgColor="FFFF80" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="TYPE WORD" styleID="16" fgColor="8080FF" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type1"></WordsStyle>
|
||||
<WordsStyle name="WINDOW INSTRUCTION" styleID="19" fgColor="FF9428" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre2"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING RAW" styleID="20" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CHARACTER" styleID="7" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="8282FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VERBATIM" styleID="13" fgColor="FF9428" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REGEX" styleID="14" fgColor="FFEE80" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="80FF80" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC" styleID="3" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE DOC" styleID="15" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD" styleID="17" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD ERROR" styleID="18" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="json" desc="JSON" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="1" fgColor="FF8AAA" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="2" fgColor="FF7777" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING EOL" styleID="3" fgColor="808080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PROPERTY NAME" styleID="4" fgColor="9F9FFF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ESCAPE SEQUENCE" styleID="5" fgColor="7979FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="LINE COMMENT" styleID="6" fgColor="00D500" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="BLOCK COMMENT" styleID="7" fgColor="00DD00" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="8" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="URI" styleID="9" fgColor="7171FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMPACT IRI" styleID="10" fgColor="7171FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="KEYWORD" styleID="11" fgColor="18AF8A" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="LD KEYWORD" styleID="12" fgColor="FF6464" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="instre2"></WordsStyle>
|
||||
<WordsStyle name="ERROR" styleID="13" fgColor="FF0000" bgColor="FF3535" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="makefile" desc="Makefile" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PREPROCESSOR" styleID="2" fgColor="FFFF00" bgColor="C0C0C0" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="IDENTIFIER" styleID="3" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="4" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TARGET" styleID="5" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="IDEOL" styleID="9" fgColor="000000" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="nfo" desc="DOS Style" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="32" fgColor="2E2E2E" bgColor="FFFFFF"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="perl" desc="Perl" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="FF2F2F" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="5" fgColor="6262FF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" keywordClass="instre1">carp croak</WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF4848" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="2424FF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="208FFF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SCALAR" styleID="12" fgColor="FF8000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ARRAY" styleID="13" fgColor="CF34CF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HASH" styleID="14" fgColor="A4A4D2" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SYMBOL TABLE" styleID="15" fgColor="FF0000" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PROTOTYPE" styleID="40" fgColor="9D9DFF" bgColor="FFFFFF" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="00C600" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING SINGLEQUOTE" styleID="7" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING DOUBLEQUOTE" styleID="6" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING BACKTICKS" styleID="20" fgColor="FFFF00" bgColor="808080" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING Q" styleID="26" fgColor="804080" bgColor="FFFFFF" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING QQ" styleID="27" fgColor="804080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING QX" styleID="28" fgColor="8000FF" bgColor="FFEEEC" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING QR" styleID="29" fgColor="8080FF" bgColor="F8FEDE" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING QW" styleID="30" fgColor="CF34CF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REGEX MATCH" styleID="17" fgColor="8080FF" bgColor="F8FEDE" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REGEX SUBSTITUTION" styleID="18" fgColor="8080C0" bgColor="FFEEEC" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TRANSLATION" styleID="44" fgColor="8080C0" bgColor="FFEEEC" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HEREDOC DELIMITER" styleID="22" fgColor="550055" bgColor="EEEEFF" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HEREDOC SINGLEQUOTE" styleID="23" fgColor="7F007F" bgColor="EEEEFF" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HEREDOC DOUBLEQUOTE" styleID="24" fgColor="7F007F" bgColor="EEEEFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HEREDOC BACKTICK" styleID="25" fgColor="8000FF" bgColor="FFEEEC" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN STRING" styleID="43" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN REGEX" styleID="54" fgColor="8080FF" bgColor="F8FEDE" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN REGEX SUBSTITUTION" styleID="55" fgColor="8080C0" bgColor="FFEEEC" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN BACKTICKS" styleID="57" fgColor="FFFF00" bgColor="808080" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN HEREDOC DOUBLEQUOTE" styleID="61" fgColor="7F007F" bgColor="EEEEFF" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN HEREDOC BACKTICK" styleID="62" fgColor="8000FF" bgColor="FFEEEC" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN STRING QQ" styleID="64" fgColor="804080" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN STRING QX" styleID="65" fgColor="8000FF" bgColor="FFEEEC" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VAR IN STRING QR" styleID="66" fgColor="8080FF" bgColor="F8FEDE" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="FORMAT IDENTIFIER" styleID="41" fgColor="C000C0" bgColor="FFFFFF" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="FORMAT BODY" styleID="42" fgColor="C000C0" bgColor="FFF0FF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DATA SECTION" styleID="21" fgColor="808080" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="POD" styleID="3" fgColor="000000" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="POD VERBATIM" styleID="31" fgColor="004000" bgColor="EEFFEE" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ERROR" styleID="1" fgColor="FF80C0" bgColor="FFFFFF" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="php" desc="PHP" ext="">
|
||||
<WordsStyle name="QUESTION MARK" styleID="18" fgColor="FF4F4F" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEFAULT" styleID="118" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="119" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMPLEX VARIABLE" styleID="104" fgColor="808080" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING VARIABLE" styleID="126" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SIMPLE STRING" styleID="120" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="WORD" styleID="121" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="122" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VARIABLE" styleID="123" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="124" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="125" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="127" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PREDEFINED" styleID="213" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="FUNCS AND METHODS 1" styleID="214" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="FUNCS AND METHODS 2" styleID="215" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="208" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="209" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="210" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="211" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="212" fgColor="3333FF" bgColor="FEFCF5" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="powershell" desc="PowerShell" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="E5E5E5" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="969696" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="2" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CHARACTER" styleID="3" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize="">if else for while</WordsStyle>
|
||||
<WordsStyle name="VARIABLE" styleID="5" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="1" fontSize="">if else for while</WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="6" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize="">bool long int char</WordsStyle>
|
||||
<WordsStyle name="IDENTIFIER" styleID="7" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="8" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="CMDLET" styleID="9" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="instre2"></WordsStyle>
|
||||
<WordsStyle name="ALIAS" styleID="10" fgColor="0080FF" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type1"></WordsStyle>
|
||||
<WordsStyle name="FUNCTION" styleID="11" fgColor="C40062" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS" styleID="12" fgColor="800000" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type3"></WordsStyle>
|
||||
<WordsStyle name="COMMENT STREAM" styleID="13" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HERE STRING" styleID="14" fgColor="808080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HERE CHARACTER" styleID="15" fgColor="808080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC KEYWORD" styleID="16" fgColor="008080" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="type4"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="props" desc="Properties file" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFF00" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="00AE00" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SECTION" styleID="2" fgColor="AA55FF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ASSIGNMENT" styleID="3" fgColor="FF5757" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEFVAL" styleID="4" fgColor="FF0D0D" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="KEY" styleID="5" fgColor="7979FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="python" desc="Python" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="1" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="2" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="3" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CHARACTER" styleID="4" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="KEYWORDS" styleID="5" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1">str len hex</WordsStyle>
|
||||
<WordsStyle name="TRIPLE" styleID="6" fgColor="008080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TRIPLE DOUBLE" styleID="7" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CLASS NAME" styleID="8" fgColor="C864C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEF NAME" styleID="9" fgColor="C864C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="IDENTIFIER" styleID="11" fgColor="C8C8C8" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT BLOCK" styleID="12" fgColor="808080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="BUILTINS" styleID="14" fgColor="880088" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre2"></WordsStyle>
|
||||
<WordsStyle name="DECORATOR" styleID="15" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ATTRIBUTE" styleID="20" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="F STRING" styleID="16" fgColor="808080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="F CHARACTER" styleID="17" fgColor="808080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="F TRIPLE" styleID="18" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="F TRIPLEDOUBLE" styleID="19" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 1" styleID="128" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 2" styleID="129" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 3" styleID="130" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 4" styleID="131" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 5" styleID="132" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 6" styleID="133" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 7" styleID="134" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER KEYWORDS 8" styleID="135" fgColor="000000" bgColor="FFFF80" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="registry" desc="Registry" ext="">
|
||||
<WordsStyle name="DEFAULT STYLE" styleID="32" fgColor="FFFFFF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="00FF00" bgColor="001B33" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VALUE NAME" styleID="2" fgColor="FF771C" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="3" fgColor="66FF00" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="HEX DIGIT" styleID="4" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="VALUE TYPE" styleID="5" fgColor="FFFF80" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ADDED KEY" styleID="6" fgColor="99CC99" bgColor="08130D" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REMOVED KEY" styleID="7" fgColor="CFBFAF" bgColor="180D13" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ESCAPED CHARACTERS IN STRINGS" styleID="8" fgColor="66FF00" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="GUID IN KEY PATH" styleID="9" fgColor="80FFFF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="GUID IN STRING" styleID="10" fgColor="66FF00" bgColor="001B33" fontName="" fontStyle="3" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="PARAMETER" styleID="11" fgColor="C0C0C0" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATORS" styleID="12" fgColor="FFCC00" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="sql" desc="SQL" ext="">
|
||||
<WordsStyle name="KEYWORD" styleID="5" fgColor="FF9D00" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="USER1" styleID="16" fgColor="AAAAFF" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre2"></WordsStyle>
|
||||
<WordsStyle name="KEYWORD2" styleID="19" fgColor="800080" bgColor="001B33" fontName="" fontStyle="0" fontSize="" keywordClass="type3"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF4D7D" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="STRING2" styleID="7" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="OPERATOR" styleID="10" fgColor="9696FF" bgColor="001B33" fontName="" fontStyle="1" fontSize="">if else for while</WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize="">bool long int char</WordsStyle>
|
||||
<WordsStyle name="COMMENT LINE" styleID="2" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize="">bool long int char</WordsStyle>
|
||||
<WordsStyle name="COMMENT DOC" styleID="3" fgColor="0088FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="Q OPERATOR" styleID="24" fgColor="808080" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="xml" desc="XML" ext="">
|
||||
<WordsStyle name="XML START" styleID="12" fgColor="FFFFFF" bgColor="001B33" fontName="" fontStyle="0"></WordsStyle>
|
||||
<WordsStyle name="XML END" styleID="13" fgColor="FFFFFF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="FFFFFF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="9" fgColor="BBBBBB" bgColor="001B33" fontName="" fontStyle="2" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="5" fgColor="FF0044" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DOUBLE STRING" styleID="6" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SINGLE STRING" styleID="7" fgColor="3AD900" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TAG" styleID="1" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TAG END" styleID="11" fgColor="80FFBB" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TAG UNKNOWN" styleID="2" fgColor="FF1818" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ATTRIBUTE" styleID="3" fgColor="CCCCCC" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ATTRIBUTE UNKNOWN" styleID="4" fgColor="FF1818" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="SGML DEFAULT" styleID="21" fgColor="A6CAF0" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="CDATA" styleID="17" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ENTITY" styleID="10" fgColor="000000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES 1" styleID="192" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle1"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES 2" styleID="193" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle2"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES 3" styleID="194" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle3"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES 4" styleID="195" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle4"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES 5" styleID="196" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle5"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES 6" styleID="197" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle6"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES 7" styleID="198" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle7"></WordsStyle>
|
||||
<WordsStyle name="USER ATTRIBUTES 8" styleID="199" fgColor="FF0000" bgColor="FFFF00" fontName="" fontStyle="1" fontSize="" keywordClass="substyle8"></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="yaml" desc="YAML" ext="">
|
||||
<WordsStyle name="DEFAULT" styleID="0" fgColor="00FF40" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="IDENTIFIER" styleID="2" fgColor="80FFFF" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="COMMENT" styleID="1" fgColor="008000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="INSTRUCTION WORD" styleID="3" fgColor="FF8000" bgColor="001B33" fontName="" fontStyle="1" fontSize="" keywordClass="instre1"></WordsStyle>
|
||||
<WordsStyle name="NUMBER" styleID="4" fgColor="FF8040" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="REFERENCE" styleID="5" fgColor="804000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="DOCUMENT" styleID="6" fgColor="0000FF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="TEXT" styleID="7" fgColor="00FF40" bgColor="001B33" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="ERROR" styleID="8" fgColor="FF0000" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
</LexerType>
|
||||
<LexerType name="searchResult" desc="Search result" ext="">
|
||||
<WordsStyle name="Search Header" styleID="1" fgColor="000080" bgColor="BBBBFF" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="File Header" styleID="2" fgColor="008000" bgColor="D5FFD5" fontName="" fontStyle="1" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="Line Number" styleID="3" fgColor="FF8040" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="Hit Word" styleID="4" fgColor="FF0000" bgColor="FFFFBF" fontName="" fontStyle="0" fontSize=""></WordsStyle>
|
||||
<WordsStyle name="Current line background colour" styleID="6" bgColor="E8E8FF"></WordsStyle>
|
||||
</LexerType>
|
||||
</LexerStyles>
|
||||
<GlobalStyles>
|
||||
<!-- Attention : Don't modify the name of styleID="0" -->
|
||||
<WidgetStyle name="Global override" styleID="0" fgColor="FFFFFF" bgColor="001B33" fontName="Consolas" fontStyle="0" fontSize="11" colorStyle="2"></WidgetStyle>
|
||||
<WidgetStyle name="Default Style" styleID="32" fgColor="FFFFFF" bgColor="001B33" fontName="" fontStyle="0" fontSize=""></WidgetStyle>
|
||||
<WidgetStyle name="Indent guideline style" styleID="37" fgColor="0064BE" bgColor="001B33" fontName="" fontStyle="0" fontSize="" colorStyle="1"></WidgetStyle>
|
||||
<WidgetStyle name="Brace highlight style" styleID="34" fgColor="FF0000" bgColor="4F93CD" fontName="" fontStyle="0" fontSize="" colorStyle="1"></WidgetStyle>
|
||||
<WidgetStyle name="Bad brace colour" styleID="35" fgColor="800000" bgColor="002F29" fontName="" fontStyle="0" fontSize="" colorStyle="2"></WidgetStyle>
|
||||
<WidgetStyle name="Current line background colour" styleID="0" bgColor="003464" fgColor="FFFFFF" fontSize="" fontStyle="0" colorStyle="2"></WidgetStyle>
|
||||
<!-- In below rule 'fgColor' attribute for 'Selected text colour' can be unlocked with a enableSelectFgColor.xml file -->
|
||||
<WidgetStyle name="Selected text colour" styleID="0" bgColor="0066C1" fgColor="FFFFFF" colorStyle="2" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Multi-selected text color" styleID="0" bgColor="0066C1"></WidgetStyle>
|
||||
<WidgetStyle name="Caret colour" styleID="2069" fgColor="FFFFFF" bgColor="6699CC" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Multi-edit carets color" styleID="0" fgColor="A3A3A3"></WidgetStyle>
|
||||
<WidgetStyle name="Edge colour" styleID="0" fgColor="80FFFF" bgColor="112435" fontSize="" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Line number margin" styleID="33" fgColor="118EFF" bgColor="000D1A" fontName="" fontStyle="0" fontSize="9"></WidgetStyle>
|
||||
<WidgetStyle name="Bookmark margin" styleID="0" bgColor="FFFF80"></WidgetStyle>
|
||||
<WidgetStyle name="Change History margin" styleID="0" bgColor="000000"></WidgetStyle>
|
||||
<WidgetStyle name="Change History modified" styleID="0" fgColor="FF8000" bgColor="FF8000"></WidgetStyle>
|
||||
<WidgetStyle name="Change History revert modified" styleID="0" fgColor="A0C000" bgColor="A0C000"></WidgetStyle>
|
||||
<WidgetStyle name="Change History revert origin" styleID="0" fgColor="40A0BF" bgColor="40A0BF"></WidgetStyle>
|
||||
<WidgetStyle name="Change History saved" styleID="0" fgColor="00A000" bgColor="00A000"></WidgetStyle>
|
||||
<WidgetStyle name="Fold" styleID="0" fgColor="0088FF" bgColor="000D1A" fontSize="" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Fold active" styleID="0" fgColor="FF0000" bgColor="343F41" fontSize="" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Fold margin" styleID="0" fgColor="001B33" bgColor="003B70" fontSize="" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="White space symbol" styleID="0" fgColor="FFB56A" bgColor="56676D" fontStyle="0" fontSize=""></WidgetStyle>
|
||||
<WidgetStyle name="Smart Highlighting" styleID="29" bgColor="00FF00" fgColor="E0E2E4" fontSize="" fontStyle="1" colorStyle="1"></WidgetStyle>
|
||||
<WidgetStyle name="Find Mark Style" styleID="31" bgColor="FF0000" fgColor="E0E2E4" fontSize="10" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Find status: Not found" styleID="0" fgColor="FF0000"></WidgetStyle>
|
||||
<WidgetStyle name="Find status: Message" styleID="0" fgColor="0000FF"></WidgetStyle>
|
||||
<WidgetStyle name="Find status: Search end reached" styleID="0" fgColor="008000"></WidgetStyle>
|
||||
<WidgetStyle name="Mark Style 1" styleID="25" bgColor="00FFFF" fgColor="E0E2E4" fontSize="10" fontStyle="0" colorStyle="1"></WidgetStyle>
|
||||
<WidgetStyle name="Mark Style 2" styleID="24" bgColor="FF8000" fgColor="E0E2E4" fontStyle="0" colorStyle="1" fontSize=""></WidgetStyle>
|
||||
<WidgetStyle name="Mark Style 3" styleID="23" bgColor="FFFF00" fgColor="E0E2E4" fontStyle="0" colorStyle="1"></WidgetStyle>
|
||||
<WidgetStyle name="Mark Style 4" styleID="22" bgColor="8000FF" fgColor="E0E2E4" fontSize="10" fontStyle="0" colorStyle="1"></WidgetStyle>
|
||||
<WidgetStyle name="Mark Style 5" styleID="21" bgColor="008000" fgColor="FFFF80" fontSize="" fontStyle="0" colorStyle="1"></WidgetStyle>
|
||||
<WidgetStyle name="Incremental highlight all" styleID="28" bgColor="0080FF" fgColor="E0E2E4" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Tags match highlighting" styleID="27" bgColor="8000FF" fgColor="FFCAB0" fontStyle="0" colorStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Tags attribute" styleID="26" bgColor="000000" fgColor="FFFFFF" fontStyle="0" colorStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Active tab focused indicator" styleID="0" fgColor="FAAA3C" bgColor="008000" fontStyle="0" colorStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Active tab unfocused indicator" styleID="0" fgColor="FFCAB0" bgColor="0080FF" fontStyle="0" colorStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Active tab text" styleID="0" fgColor="000000" bgColor="C0C0C0" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Inactive tabs" styleID="0" fgColor="808080" bgColor="C0C0C0" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="URL hovered" styleID="0" fgColor="6F6FFF" fontStyle="0" bgColor="C0C0C0"></WidgetStyle>
|
||||
<WidgetStyle name="Document map" styleID="0" fgColor="FF8000" bgColor="FFFFFF"></WidgetStyle>
|
||||
<WidgetStyle name="EOL custom color" styleID="0" fgColor="DADADA" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Non-printing characters custom color" styleID="0" fgColor="FFB56A"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color 1" styleID="0" bgColor="F3F0CB"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color 2" styleID="0" bgColor="DBF3CB"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color 3" styleID="0" bgColor="CBDBF3"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color 4" styleID="0" bgColor="F3DBCB"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color 5" styleID="0" bgColor="F3CBEE"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color dark mode 1" styleID="0" bgColor="807848"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color dark mode 2" styleID="0" bgColor="568048"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color dark mode 3" styleID="0" bgColor="507094"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color dark mode 4" styleID="0" bgColor="804849"></WidgetStyle>
|
||||
<WidgetStyle name="Tab color dark mode 5" styleID="0" bgColor="754880"></WidgetStyle>
|
||||
<WidgetStyle name="URL hovered" styleID="0" fgColor="6F6FFF" bgColor="C0C0C0" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Document map" styleID="0" fgColor="FF8000" bgColor="FFFFFF"></WidgetStyle>
|
||||
<WidgetStyle name="EOL custom color" styleID="0" fgColor="DADADA" fontStyle="0"></WidgetStyle>
|
||||
<WidgetStyle name="Non-printing characters custom color" styleID="0" fgColor="FFB56A"></WidgetStyle>
|
||||
<WidgetStyle name="Global override" styleID="0" fgColor="FFFFFF" bgColor="001B33" fontName="Consolas" fontStyle="0" fontSize="11" colorStyle="2"></WidgetStyle>
|
||||
</GlobalStyles>
|
||||
</NotepadPlus>
|
||||
64
Notepad++/userDefineLangs/autohotkey.dark.udl.xml
Executable file
64
Notepad++/userDefineLangs/autohotkey.dark.udl.xml
Executable file
@@ -0,0 +1,64 @@
|
||||
<NotepadPlus>
|
||||
<UserLang name="AutoHotkey [Dark]" ext="ahk ahkl ahkh ia" darkModeTheme="yes" udlVersion="2.1">
|
||||
<Settings>
|
||||
<Global caseIgnored="yes" allowFoldOfComments="yes" foldCompact="no" forcePureLC="0" decimalSeparator="0" />
|
||||
<Prefix Keywords1="no" Keywords2="no" Keywords3="no" Keywords4="yes" Keywords5="no" Keywords6="yes" Keywords7="no" Keywords8="no" />
|
||||
</Settings>
|
||||
<KeywordLists>
|
||||
<Keywords name="Comments">00; 01 02 03/* 04*/</Keywords>
|
||||
<Keywords name="Numbers, prefix1"></Keywords>
|
||||
<Keywords name="Numbers, prefix2"></Keywords>
|
||||
<Keywords name="Numbers, extras1"></Keywords>
|
||||
<Keywords name="Numbers, extras2"></Keywords>
|
||||
<Keywords name="Numbers, suffix1"></Keywords>
|
||||
<Keywords name="Numbers, suffix2"></Keywords>
|
||||
<Keywords name="Numbers, range"></Keywords>
|
||||
<Keywords name="Operators1">- ! % & ( ) , . : ? ^ | ~ + < = > * / [ ]</Keywords>
|
||||
<Keywords name="Operators2"></Keywords>
|
||||
<Keywords name="Folders in code1, open">{</Keywords>
|
||||
<Keywords name="Folders in code1, middle"></Keywords>
|
||||
<Keywords name="Folders in code1, close">}</Keywords>
|
||||
<Keywords name="Folders in code2, open"></Keywords>
|
||||
<Keywords name="Folders in code2, middle"></Keywords>
|
||||
<Keywords name="Folders in code2, close"></Keywords>
|
||||
<Keywords name="Folders in comment, open"></Keywords>
|
||||
<Keywords name="Folders in comment, middle"></Keywords>
|
||||
<Keywords name="Folders in comment, close"></Keywords>
|
||||
<Keywords name="Keywords1">break byref case catch class const continue else exit exitapp finally for global gosub goto if ifequal ifexist ifgreater ifgreaterorequal ifinstring ifless iflessorequal ifmsgbox ifnotequal ifnotexist ifnotinstring ifwinactive ifwinexist ifwinnotactive ifwinnotexist local loop onexit pause return settimer sleep static suspend switch throw try until while</Keywords>
|
||||
<Keywords name="Keywords2">autotrim blockinput clipwait control controladditem controlchooseindex controlchoosestring controlclick controldeleteitem controlfocus controlget controlgetfocus controlgetpos controlgettext controlhide controlhidedropdown controlmove controlsend controlsendraw controlsendtext controlsetchecked controlsetenabled controlsetexstyle controlsetstyle controlsettext controlshow controlshowdropdown coordmode critical detecthiddentext detecthiddenwindows dircopy dircreate dirdelete dirmove download drive driveeject driveget drivelock driveretract drivesetlabel drivespacefree driveunlock edit editpaste envadd envdiv envget envmult envset envsub envupdate fileappend filecopy filecopydir filecreatedir filecreateshortcut filedelete fileencoding filegetattrib filegetshortcut filegetsize filegettime filegetversion fileinstall filemove filemovedir fileread filereadline filerecycle filerecycleempty fileremovedir fileselectfile fileselectfolder filesetattrib filesettime formattime getkeystate groupactivate groupadd groupclose groupdeactivate gui guicontrol guicontrolget hotif hotifwinactive hotifwinexist hotifwinnotactive hotifwinnotexist hotkey imagesearch inidelete iniread iniwrite input inputbox keyhistory keywait listhotkeys listlines listvars menu menuselect mouseclick mouseclickdrag mousegetpos mousemove msgbox outputdebug pixelgetcolor pixelsearch postmessage process processclose processsetpriority progress random randomseed regcreatekey regdelete regdeletekey regread regwrite reload run runas runwait send sendevent sendinput sendlevel sendmessage sendmode sendplay sendraw sendtext setbatchlines setcapslockstate setcontroldelay setdefaultmousespeed setenv setformat setkeydelay setmousedelay setnumlockstate setregview setscrolllockstate setstorecapslockmode settitlematchmode setwindelay setworkingdir shutdown sort soundbeep soundget soundgetwavevolume soundplay soundset soundsetmute soundsetvolume soundsetwavevolume splashimage splashtextoff splashtexton splitpath statusbargettext statusbarwait stringcasesense stringgetpos stringleft stringlen stringlower stringmid stringreplace stringright stringsplit stringtrimleft stringtrimright stringupper sysget thread tooltip transform traytip urldownloadtofile winactivate winactivatebottom winclose winget wingetactivestats wingetactivetitle wingetclass wingetclientpos wingetpos wingettext wingettitle winhide winkill winmaximize winmenuselectitem winminimize winminimizeall winminimizeallundo winmove winmovebottom winmovetop winredraw winrestore winset winsetalwaysontop winsetenabled winsetexstyle winsetregion winsetstyle winsettitle winsettranscolor winsettransparent winshow winwait winwaitactive winwaitclose winwaitnotactive winwaitnotactive</Keywords>
|
||||
<Keywords name="Keywords3">_addref _clone _getaddress _getcapacity _haskey _insert _maxindex _minindex _newenum _release _remove _setcapacity abs acos array asc asin atan bind buffer bufferalloc call callbackcreate callbackfree caretgetpos ceil chr clear clone comcall comobjactive comobjarray comobjconnect comobjcreate comobject comobjenwrap comobjerror comobjflags comobjfromptr comobjget comobjmissing comobjparameter comobjquery comobjtype comobjunwrap comobjvalue controlfinditem controlgetchecked controlgetchoice controlgetclassnn controlgetenabled controlgetexstyle controlgethwnd controlgetindex controlgetitems controlgetstyle controlgetvisible cos dateadd datediff defineprop delete deleteprop direxist dirselect dllcall drivegetcapacity drivegetfilesystem drivegetlabel drivegetlist drivegetserial drivegetspacefree drivegetstatus drivegetstatuscd drivegettype editgetcurrentcol editgetcurrentline editgetline editgetlinecount editgetselectedtext exception exp fileexist fileopen fileselect floor format func get getkeyname getkeysc getkeystate getkeyvk getmethod getownpropdesc guictrlfromhwnd guifromhwnd has hasbase hasmethod hasownprop hasprop hotstring il_add il_create il_destroy inputhook insertat instr isalnum isalpha isbyref isdigit isfloat isfunc isinteger islabel islower isnumber isobject isoptional isset issetref isspace istime isupper isxdigit listviewgetcontent ln loadpicture log ltrim lv_add lv_delete lv_deletecol lv_getcount lv_getnext lv_gettext lv_insert lv_insertcol lv_modify lv_modifycol lv_setimagelist map max menufromhandle menugethandle menugetname min mod monitorget monitorgetcount monitorgetname monitorgetprimary monitorgetworkarea numget numput objaddref objbindmethod objclone objcount objdelete object objfromptr objfromptraddref objgetaddress objgetbase objgetcapacity objhaskey objhasownprop objinsert objinsertat objlength objmaxindex objminindex objnewenum objownpropcount objownprops objpop objptr objptraddref objpush objrawget objrawset objrelease objremove objremoveat objsetbase objsetcapacity onclipboardchange onerror onmessage ord ownprops pop processexist processgetpath processgetname processwait processwaitclose push regexmatch regexreplace registercallback removeat round rtrim sb_seticon sb_setparts sb_settext set sin soundgetinterface soundgetmute soundgetname soundgetvolume sqrt strcompare strget strlen strlower strptr strput strreplace strsplit strtitle strupper substr sysgetipaddresses tan trayseticon trim tv_add tv_delete tv_get tv_getchild tv_getcount tv_getnext tv_getparent tv_getprev tv_getselection tv_gettext tv_modify tv_setimagelist varsetcapacity varsetstrcapacity vercompare winactive winexist wingetcontrols wingetcontrolshwnd wingetcount wingetexstyle wingetid wingetidlast wingetlist wingetminmax wingetpid wingetprocessname wingetprocesspath wingetstyle wingettranscolor wingettransparent</Keywords>
|
||||
<Keywords name="Keywords4">#</Keywords>
|
||||
<Keywords name="Keywords5">alt altdown altup appskey backspace blind browser_back browser_favorites browser_forward browser_home browser_refresh browser_search browser_stop bs capslock click control ctrl ctrlbreak ctrldown ctrlup del down end enter esc escape f1 f10 f11 f12 f13 f14 f15 f16 f17 f18 f19 f2 f20 f21 f22 f23 f24 f3 f4 f5 f6 f7 f8 f9 home ins insert joy1 joy10 joy11 joy12 joy13 joy14 joy15 joy16 joy17 joy18 joy19 joy2 joy20 joy21 joy22 joy23 joy24 joy25 joy26 joy27 joy28 joy29 joy3 joy30 joy31 joy32 joy4 joy5 joy6 joy7 joy8 joy9 joyaxes joybuttons joyinfo joyname joypov joyr joyu joyv joyx joyy joyz lalt launch_app1 launch_app2 launch_mail launch_media lbutton lcontrol lctrl left lshift lwin lwindown lwinup mbutton media_next media_play_pause media_prev media_stop numlock numpad0 numpad1 numpad2 numpad3 numpad4 numpad5 numpad6 numpad7 numpad8 numpad9 numpadadd numpadclear numpaddel numpaddiv numpaddot numpaddown numpadend numpadenter numpadhome numpadins numpadleft numpadmult numpadpgdn numpadpgup numpadright numpadsub numpadup pause pgdn pgup printscreen ralt raw rbutton rcontrol rctrl right rshift rwin rwindown rwinup scrolllock shift shiftdown shiftup space tab up volume_down volume_mute volume_up wheeldown wheelleft wheelright wheelup xbutton1 xbutton2</Keywords>
|
||||
<Keywords name="Keywords6">a_ any base __ clipboard clipboardall comspec errorlevel extends false programfiles super this true</Keywords>
|
||||
<Keywords name="Keywords7">abort abovenormal activex add addactivex addbutton addcheckbox addcombobox addcustom adddatetime adddropdownlist addedit addgroupbox addhotkey addlistbox addlistview addmonthcal addpicture addprogress addradio addslider addstatusbar addtab addtab2 addtab3 addtext addtreeview addupdown ahk_class ahk_exe ahk_group ahk_id ahk_pid all alnum alpha altsubmit alttab alttabandmenu alttabmenu alttabmenudismiss alwaysontop and autosize background backgroundtrans base belownormal between bitand bitnot bitor bitshiftleft bitshiftright bitxor bold border bottom button buttons cancel capacity caption casesense center check check3 checkbox checked checkedgray choose choosestring click close color combobox contains controllist controllisthwnd count custom date datetime days ddl default delete deleteall delimiter deref destroy digit disable disabled dpiscale dropdownlist edit eject enable enabled error exit expand exstyle filesystem first flash float floatfast focus font force fromcodepage getaddress getcapacity grid group groupbox guiclose guicontextmenu guidropfiles guiescape guisize haskey hdr hidden hide high hkcc hkcr hkcu hkey_classes_root hkey_current_config hkey_current_user hkey_local_machine hkey_users hklm hku hotkey hours hscroll hwnd icon iconsmall id idlast ignore imagelist in insert integer integerfast interrupt is italic join label lastfound lastfoundexist left length limit lines link list listbox listview localsameasglobal lock logoff low lower lowercase ltrim mainwindow margin maximize maximizebox maxindex menu minimize minimizebox minindex minmax minutes monitorcount monitorname monitorprimary monitorworkarea monthcal mouse mousemove mousemoveoff move multi na new no noactivate nodefault nohide noicon nomainwindow norm normal nosort nosorthdr nostandard not notab notimers number off ok on or owndialogs owner parse password pic picture pid pixel pos pow priority processname processpath progress radio range rawread rawwrite read readchar readdouble readfloat readint readint64 readline readnum readonly readshort readuchar readuint readushort realtime redraw regex region reg_binary reg_dword reg_dword_big_endian reg_expand_sz reg_full_resource_descriptor reg_link reg_multi_sz reg_qword reg_resource_list reg_resource_requirements_list reg_sz relative reload remove rename report resize restore retry rgb right rtrim screen seconds section seek send sendandmouse serial setcapacity setlabel shiftalttab show shutdown single slider sortdesc standard status statusbar statuscd strike style submit sysmenu tab tab2 tabstop tell text theme this tile time tip tocodepage togglecheck toggleenable toolwindow top topmost transcolor transparent tray treeview type uncheck underline unicode unlock updown upper uppercase useenv useerrorlevel useunsetglobal useunsetlocal vis visfirst visible vscroll waitclose wantctrla wantf2 wantreturn wanttab wrap write writechar writedouble writefloat writeint writeint64 writeline writenum writeshort writeuchar writeuint writeushort xdigit xm xp xs yes ym yp ys</Keywords>
|
||||
<Keywords name="Keywords8"></Keywords>
|
||||
<Keywords name="Delimiters">00" 01` 02" 03' 04` 05' 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23</Keywords>
|
||||
</KeywordLists>
|
||||
<Styles>
|
||||
<WordsStyle name="DEFAULT" fgColor="FFFFFF" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="COMMENTS" fgColor="00AC00" bgColor="000000" colorStyle="1" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="LINE COMMENTS" fgColor="00AC00" bgColor="000000" colorStyle="1" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="NUMBERS" fgColor="FFFF00" bgColor="000000" colorStyle="1" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS1" fgColor="00A3F0" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS2" fgColor="00BBBB" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS3" fgColor="00FF40" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS4" fgColor="80FF80" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS5" fgColor="FFFF00" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS6" fgColor="FF8040" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS7" fgColor="8080FF" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS8" fgColor="FF0080" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="OPERATORS" fgColor="80FF80" bgColor="000000" colorStyle="1" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN CODE1" fgColor="FF0000" bgColor="000000" colorStyle="1" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN CODE2" fgColor="80FF80" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN COMMENT" fgColor="008000" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS1" fgColor="FF9562" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS2" fgColor="FF8040" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS3" fgColor="000000" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS4" fgColor="000000" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS5" fgColor="000000" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS6" fgColor="000000" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS7" fgColor="000000" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS8" fgColor="000000" bgColor="000000" colorStyle="1" fontStyle="0" nesting="0" />
|
||||
</Styles>
|
||||
</UserLang>
|
||||
</NotepadPlus>
|
||||
79
Notepad++/userDefineLangs/markdown._preinstalled.udl.xml
Executable file
79
Notepad++/userDefineLangs/markdown._preinstalled.udl.xml
Executable file
@@ -0,0 +1,79 @@
|
||||
<!--//
|
||||
Markdown-plus-plus is a project to support Markdown syntax in Notepad++.
|
||||
All UDLs are carefully designed by human, rather than generated by machine.
|
||||
|
||||
Want an UDL for different theme?
|
||||
Want to change its preference?
|
||||
Want to create your own?
|
||||
Go get it: https://github.com/Edditoria/markdown-plus-plus
|
||||
|
||||
Please read the README file for details.
|
||||
Welcome issues and pull requests via the above link.
|
||||
|
||||
Copyright (c) Edditoria. Open source under the MIT license:
|
||||
https://github.com/Edditoria/markdown-plus-plus/blob/master/LICENSE.txt
|
||||
//-->
|
||||
<NotepadPlus>
|
||||
<UserLang name="Markdown (preinstalled)" ext="md markdown" udlVersion="2.1">
|
||||
<Settings>
|
||||
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="2" decimalSeparator="0" />
|
||||
<Prefix Keywords1="yes" Keywords2="yes" Keywords3="yes" Keywords4="yes" Keywords5="yes" Keywords6="yes" Keywords7="yes" Keywords8="no" />
|
||||
</Settings>
|
||||
<KeywordLists>
|
||||
<Keywords name="Comments">00# 01 02((EOL)) 03<!-- 04--></Keywords>
|
||||
<Keywords name="Numbers, prefix1"></Keywords>
|
||||
<Keywords name="Numbers, prefix2"></Keywords>
|
||||
<Keywords name="Numbers, extras1"></Keywords>
|
||||
<Keywords name="Numbers, extras2"></Keywords>
|
||||
<Keywords name="Numbers, suffix1">.</Keywords>
|
||||
<Keywords name="Numbers, suffix2">.</Keywords>
|
||||
<Keywords name="Numbers, range"></Keywords>
|
||||
<Keywords name="Operators1">@ < > \< \> \\ \` \* \_ \{ \} \[ \] \( \) \# \+ \- \. \! \~ \| |:-: |:--: |:---: | :-: :--: :---: :|: |: :|</Keywords>
|
||||
<Keywords name="Operators2">- + :- :-- :--- :</Keywords>
|
||||
<Keywords name="Folders in code1, open"></Keywords>
|
||||
<Keywords name="Folders in code1, middle"></Keywords>
|
||||
<Keywords name="Folders in code1, close"></Keywords>
|
||||
<Keywords name="Folders in code2, open"></Keywords>
|
||||
<Keywords name="Folders in code2, middle"></Keywords>
|
||||
<Keywords name="Folders in code2, close"></Keywords>
|
||||
<Keywords name="Folders in comment, open"></Keywords>
|
||||
<Keywords name="Folders in comment, middle"></Keywords>
|
||||
<Keywords name="Folders in comment, close"></Keywords>
|
||||
<Keywords name="Keywords1">http:// (http:// https:// (https:// mailto: (mailto: ftp:// (ftp:// ftps:// (ftps:// (/ /</Keywords>
|
||||
<Keywords name="Keywords2">==== ----</Keywords>
|
||||
<Keywords name="Keywords3">*** ___</Keywords>
|
||||
<Keywords name="Keywords4">** __</Keywords>
|
||||
<Keywords name="Keywords5">* _</Keywords>
|
||||
<Keywords name="Keywords6">** __</Keywords>
|
||||
<Keywords name="Keywords7">* _</Keywords>
|
||||
<Keywords name="Keywords8"></Keywords>
|
||||
<Keywords name="Delimiters">00![ 00[ 01\ 02] 02] 03``` 03` 03~~~ 04\ 05``` 05((EOL `)) 05~~~ 06*** 07\ 08((EOL ***)) 09** 10\ 11((EOL **)) 12* 13\ 14((EOL *)) 15** 16\ 17((EOL **)) 18* 19\ 20((EOL *)) 21 22 23</Keywords>
|
||||
</KeywordLists>
|
||||
<Styles>
|
||||
<WordsStyle name="DEFAULT" fgColor="333333" bgColor="FFFFFF" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="COMMENTS" fgColor="808080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="LINE COMMENTS" fgColor="FF8000" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="NUMBERS" fgColor="0080FF" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS1" fgColor="8000FF" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS2" fgColor="FF8000" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS3" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS4" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS5" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS6" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS7" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS8" fgColor="333333" bgColor="FFFFFF" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="OPERATORS" fgColor="8080FF" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN CODE1" fgColor="333333" bgColor="FFFFFF" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN CODE2" fgColor="333333" bgColor="FFFFFF" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN COMMENT" fgColor="333333" bgColor="FFFFFF" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS1" fgColor="8000FF" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS2" fgColor="008000" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS3" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS4" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="1" nesting="65600" />
|
||||
<WordsStyle name="DELIMITERS5" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="2" nesting="32800" />
|
||||
<WordsStyle name="DELIMITERS6" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS7" fgColor="000080" bgColor="FFFFFF" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS8" fgColor="333333" bgColor="FFFFFF" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
</Styles>
|
||||
</UserLang>
|
||||
</NotepadPlus>
|
||||
76
Notepad++/userDefineLangs/markdown._preinstalled_DM.udl.xml
Executable file
76
Notepad++/userDefineLangs/markdown._preinstalled_DM.udl.xml
Executable file
@@ -0,0 +1,76 @@
|
||||
<!--//
|
||||
Markdown-plus-plus is a project to support Markdown syntax in Notepad++.
|
||||
All UDLs are carefully designed by human, rather than generated by machine.
|
||||
Want an UDL for different theme?
|
||||
Want to change its preference?
|
||||
Want to create your own?
|
||||
Go get it: https://github.com/Edditoria/markdown-plus-plus
|
||||
Please read the README file for details.
|
||||
Welcome issues and pull requests via the above link.
|
||||
Copyright (c) Edditoria. Open source under the MIT license:
|
||||
https://github.com/Edditoria/markdown-plus-plus/blob/master/LICENSE.txt
|
||||
//-->
|
||||
<NotepadPlus>
|
||||
<UserLang name="Markdown (preinstalled dark mode)" ext="md markdown" darkModeTheme="yes" udlVersion="2.1">
|
||||
<Settings>
|
||||
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="2" decimalSeparator="0" />
|
||||
<Prefix Keywords1="yes" Keywords2="yes" Keywords3="yes" Keywords4="yes" Keywords5="yes" Keywords6="yes" Keywords7="yes" Keywords8="no" />
|
||||
</Settings>
|
||||
<KeywordLists>
|
||||
<Keywords name="Comments">00# 01 02((EOL)) 03<!-- 04--></Keywords>
|
||||
<Keywords name="Numbers, prefix1"></Keywords>
|
||||
<Keywords name="Numbers, prefix2"></Keywords>
|
||||
<Keywords name="Numbers, extras1"></Keywords>
|
||||
<Keywords name="Numbers, extras2"></Keywords>
|
||||
<Keywords name="Numbers, suffix1">.</Keywords>
|
||||
<Keywords name="Numbers, suffix2">.</Keywords>
|
||||
<Keywords name="Numbers, range"></Keywords>
|
||||
<Keywords name="Operators1">@ < > \< \> \\ \` \* \_ \{ \} \[ \] \( \) \# \+ \- \. \! \~ \| |:-: |:--: |:---: | :-: :--: :---: :|: |: :|</Keywords>
|
||||
<Keywords name="Operators2">- + :- :-- :--- :</Keywords>
|
||||
<Keywords name="Folders in code1, open"></Keywords>
|
||||
<Keywords name="Folders in code1, middle"></Keywords>
|
||||
<Keywords name="Folders in code1, close"></Keywords>
|
||||
<Keywords name="Folders in code2, open"></Keywords>
|
||||
<Keywords name="Folders in code2, middle"></Keywords>
|
||||
<Keywords name="Folders in code2, close"></Keywords>
|
||||
<Keywords name="Folders in comment, open"></Keywords>
|
||||
<Keywords name="Folders in comment, middle"></Keywords>
|
||||
<Keywords name="Folders in comment, close"></Keywords>
|
||||
<Keywords name="Keywords1">../ (../ http:// (http:// https:// (https:// mailto: (mailto: ftp:// (ftp:// ftps:// (ftps:// (/ /</Keywords>
|
||||
<Keywords name="Keywords2">==== ----</Keywords>
|
||||
<Keywords name="Keywords3">*** ___</Keywords>
|
||||
<Keywords name="Keywords4">** __</Keywords>
|
||||
<Keywords name="Keywords5">* _</Keywords>
|
||||
<Keywords name="Keywords6">** __</Keywords>
|
||||
<Keywords name="Keywords7">* _</Keywords>
|
||||
<Keywords name="Keywords8"></Keywords>
|
||||
<Keywords name="Delimiters">00![ 00[ 01\ 02] 02] 03``` 03` 03~~~ 04\ 05``` 05((EOL `)) 05~~~ 06*** 07\ 08((EOL ***)) 09** 10\ 11((EOL **)) 12* 13\ 14((EOL *)) 15** 16\ 17((EOL **)) 18* 19\ 20((EOL *)) 21 22 23</Keywords>
|
||||
</KeywordLists>
|
||||
<Styles>
|
||||
<WordsStyle name="DEFAULT" fgColor="DCDCCC" bgColor="3F3F3F" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="COMMENTS" fgColor="7F9F7F" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="LINE COMMENTS" fgColor="FF8040" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="NUMBERS" fgColor="8CD0D3" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS1" fgColor="EDD6ED" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS2" fgColor="FF8040" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS3" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS4" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS5" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS6" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS7" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS8" fgColor="DCDCCC" bgColor="3F3F3F" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="OPERATORS" fgColor="DFC47D" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN CODE1" fgColor="DCDCCC" bgColor="3F3F3F" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN CODE2" fgColor="DCDCCC" bgColor="3F3F3F" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN COMMENT" fgColor="DCDCCC" bgColor="3F3F3F" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS1" fgColor="EDD6ED" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS2" fgColor="CEDF99" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS3" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS4" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="1" nesting="65600" />
|
||||
<WordsStyle name="DELIMITERS5" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="2" nesting="32800" />
|
||||
<WordsStyle name="DELIMITERS6" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS7" fgColor="E3CEAB" bgColor="3F3F3F" colorStyle="1" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS8" fgColor="DCDCCC" bgColor="3F3F3F" colorStyle="0" fontName="" fontStyle="0" nesting="0" />
|
||||
</Styles>
|
||||
</UserLang>
|
||||
</NotepadPlus>
|
||||
79
Notepad++/userDefineLangs/markdown.blackboard.dark.udl.xml
Executable file
79
Notepad++/userDefineLangs/markdown.blackboard.dark.udl.xml
Executable file
@@ -0,0 +1,79 @@
|
||||
<!--//
|
||||
Markdown-plus-plus is a project to support Markdown syntax in Notepad++.
|
||||
All UDLs are carefully designed by human, rather than generated by machine.
|
||||
|
||||
Want an UDL for different theme?
|
||||
Want to change its preference?
|
||||
Want to create your own?
|
||||
Go get it: https://github.com/Edditoria/markdown-plus-plus
|
||||
|
||||
Please read the README file for details.
|
||||
Welcome issues and pull requests via the above link.
|
||||
|
||||
Copyright (c) Edditoria. Open source under the MIT license:
|
||||
https://github.com/Edditoria/markdown-plus-plus/blob/master/LICENSE.txt
|
||||
//-->
|
||||
<NotepadPlus>
|
||||
<UserLang name="Markdown [Blackboard]" ext="md markdown" darkModeTheme="yes" udlVersion="2.1">
|
||||
<Settings>
|
||||
<Global caseIgnored="yes" allowFoldOfComments="no" foldCompact="no" forcePureLC="2" decimalSeparator="0" />
|
||||
<Prefix Keywords1="yes" Keywords2="yes" Keywords3="yes" Keywords4="yes" Keywords5="yes" Keywords6="yes" Keywords7="yes" Keywords8="no" />
|
||||
</Settings>
|
||||
<KeywordLists>
|
||||
<Keywords name="Comments">00# 01 02((EOL)) 03<!-- 04--></Keywords>
|
||||
<Keywords name="Numbers, prefix1"></Keywords>
|
||||
<Keywords name="Numbers, prefix2"></Keywords>
|
||||
<Keywords name="Numbers, extras1"></Keywords>
|
||||
<Keywords name="Numbers, extras2"></Keywords>
|
||||
<Keywords name="Numbers, suffix1">.</Keywords>
|
||||
<Keywords name="Numbers, suffix2">.</Keywords>
|
||||
<Keywords name="Numbers, range"></Keywords>
|
||||
<Keywords name="Operators1">@ < > \< \> \\ \` \* \_ \{ \} \[ \] \( \) \# \+ \- \. \! \~ \| |:-: |:--: |:---: | :-: :--: :---: :|: |: :|</Keywords>
|
||||
<Keywords name="Operators2">- + :- :-- :--- :</Keywords>
|
||||
<Keywords name="Folders in code1, open"></Keywords>
|
||||
<Keywords name="Folders in code1, middle"></Keywords>
|
||||
<Keywords name="Folders in code1, close"></Keywords>
|
||||
<Keywords name="Folders in code2, open"></Keywords>
|
||||
<Keywords name="Folders in code2, middle"></Keywords>
|
||||
<Keywords name="Folders in code2, close"></Keywords>
|
||||
<Keywords name="Folders in comment, open"></Keywords>
|
||||
<Keywords name="Folders in comment, middle"></Keywords>
|
||||
<Keywords name="Folders in comment, close"></Keywords>
|
||||
<Keywords name="Keywords1">../ (../ http:// (http:// https:// (https:// mailto: (mailto: ftp:// (ftp:// ftps:// (ftps:// (/ /</Keywords>
|
||||
<Keywords name="Keywords2">==== ----</Keywords>
|
||||
<Keywords name="Keywords3">*** ___</Keywords>
|
||||
<Keywords name="Keywords4">** __</Keywords>
|
||||
<Keywords name="Keywords5">* _</Keywords>
|
||||
<Keywords name="Keywords6">** __</Keywords>
|
||||
<Keywords name="Keywords7">* _</Keywords>
|
||||
<Keywords name="Keywords8"></Keywords>
|
||||
<Keywords name="Delimiters">00![ 00[ 01\ 02] 02] 03``` 03` 03~~~ 04\ 05``` 05((EOL `)) 05~~~ 06*** 07\ 08((EOL ***)) 09** 10\ 11((EOL **)) 12* 13\ 14((EOL *)) 15** 16\ 17((EOL **)) 18* 19\ 20((EOL *)) 21 22 23</Keywords>
|
||||
</KeywordLists>
|
||||
<Styles>
|
||||
<WordsStyle name="DEFAULT" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="COMMENTS" fgColor="AEAEAE" bgColor="0C1021" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="LINE COMMENTS" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="NUMBERS" fgColor="D8FA3C" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS1" fgColor="7F90AA" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS2" fgColor="FF6400" bgColor="0C1021" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS3" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS4" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS5" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS6" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS7" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="KEYWORDS8" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="OPERATORS" fgColor="FBDE2D" bgColor="0C1021" fontName="" fontStyle="1" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN CODE1" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN CODE2" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="FOLDER IN COMMENT" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS1" fgColor="7F90AA" bgColor="0C1021" fontName="" fontStyle="2" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS2" fgColor="61CE3C" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS3" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS4" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="1" nesting="65600" />
|
||||
<WordsStyle name="DELIMITERS5" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="2" nesting="32800" />
|
||||
<WordsStyle name="DELIMITERS6" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS7" fgColor="8DA6CE" bgColor="0C1021" fontName="" fontStyle="3" nesting="0" />
|
||||
<WordsStyle name="DELIMITERS8" fgColor="F8F8F8" bgColor="0C1021" fontName="" fontStyle="0" nesting="0" />
|
||||
</Styles>
|
||||
</UserLang>
|
||||
</NotepadPlus>
|
||||
Reference in New Issue
Block a user