mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-03-12 12:05:46 +01:00
Fix highlighting of status bar warning messages.
This commit is contained in:
@@ -154,26 +154,26 @@ const ConfigBase = Class(ModuleBase, {
|
|||||||
Enabled color: blue;
|
Enabled color: blue;
|
||||||
Disabled color: red;
|
Disabled color: red;
|
||||||
|
|
||||||
!Normal color: black !important; background: white !important; font-weight: normal !important;
|
!Normal color: black !important; background: white !important; font-weight: normal !important;
|
||||||
!StatusNormal color: inherit !important; background: inherit !important;
|
!StatusNormal color: inherit !important; background: inherit !important;
|
||||||
ErrorMsg color: white !important; background: red !important; font-weight: bold !important;
|
ErrorMsg color: white !important; background: red !important; font-weight: bold !important;
|
||||||
InfoMsg color: black !important; background: white !important;
|
InfoMsg color: black !important; background: white !important;
|
||||||
StatusInfoMsg color: inherit !important; background: inherit !important;
|
StatusInfoMsg color: inherit !important; background: inherit !important;
|
||||||
LineNr color: orange !important; background: white !important;
|
LineNr color: orange !important; background: white !important;
|
||||||
ModeMsg color: black !important; background: white !important;
|
ModeMsg color: black !important; background: white !important;
|
||||||
StatusModeMsg color: inherit !important; background: inherit !important;
|
StatusModeMsg color: inherit !important; background: inherit !important;
|
||||||
MoreMsg color: green !important; background: white !important;
|
MoreMsg color: green !important; background: white !important;
|
||||||
StatusMoreMsg background: inherit !important;
|
StatusMoreMsg background: inherit !important;
|
||||||
Message white-space: normal; min-width: 100%; padding-left: 2em; text-indent: -2em; display: block;
|
Message white-space: normal; min-width: 100%; padding-left: 2em; text-indent: -2em; display: block;
|
||||||
NonText color: blue; min-height: 16px; padding-left: 2px;
|
NonText color: blue; min-height: 16px; padding-left: 2px;
|
||||||
*Preview color: gray;
|
*Preview color: gray;
|
||||||
Question color: green !important; background: white !important; font-weight: bold !important;
|
Question color: green !important; background: white !important; font-weight: bold !important;
|
||||||
StatusQuestion color: green !important; background: inherit !important;
|
StatusQuestion color: green !important; background: inherit !important;
|
||||||
WarningMsg color: red !important; background: white !important;
|
WarningMsg color: red !important; background: white !important;
|
||||||
StatusWarningMsg color: red !important; background: inherit !important;
|
StatusWarningMsg color: red !important; background: inherit !important;
|
||||||
|
|
||||||
!CmdLine;>* font-family: monospace !important; padding: 1px !important;
|
!CmdLine;>* font-family: monospace !important; padding: 1px !important;
|
||||||
!StatusCmdLine>* color: white; background: black; font-weight: normal;
|
// !StatusCmdLine>* color: white; background: black; font-weight: normal;
|
||||||
CmdPrompt;.dactyl-commandline-prompt
|
CmdPrompt;.dactyl-commandline-prompt
|
||||||
CmdInput;.dactyl-commandline-command
|
CmdInput;.dactyl-commandline-command
|
||||||
CmdOutput white-space: pre;
|
CmdOutput white-space: pre;
|
||||||
|
|||||||
@@ -21,11 +21,16 @@
|
|||||||
* Multiple Ex commands may now be separated by |
|
* Multiple Ex commands may now be separated by |
|
||||||
* Command-line is now hidden by default. Added C and M to
|
* Command-line is now hidden by default. Added C and M to
|
||||||
'guioptions'.
|
'guioptions'.
|
||||||
|
* JavaScript completion improvements, including:
|
||||||
|
- The prototype of the function whose arguments are currently
|
||||||
|
being typed is displayed during completion.
|
||||||
|
- Non-enumerable global properties are now completed for the
|
||||||
|
global object, including XMLHttpRequest and encodeURI.
|
||||||
* IMPORTANT: Plugins are now loaded from the 'plugins/'
|
* IMPORTANT: Plugins are now loaded from the 'plugins/'
|
||||||
directory in 'runtimepath' rather than 'plugin/'.
|
directory in 'runtimepath' rather than 'plugin/'.
|
||||||
* IMPORTANT: 'loadplugins' is now a regexlist option rather than
|
* IMPORTANT: 'loadplugins' is now a regexlist option rather than
|
||||||
a boolean.
|
a boolean.
|
||||||
* IMPORTANT: Single quotes no longer treat \s specially.
|
* IMPORTANT: Single quotes no longer treat \ specially.
|
||||||
I.e., 'fo\o''bar' ≡ fo\o'bar
|
I.e., 'fo\o''bar' ≡ fo\o'bar
|
||||||
* IMPORTANT: 'cdpath' and 'runtimepath' no longer treat ",,"
|
* IMPORTANT: 'cdpath' and 'runtimepath' no longer treat ",,"
|
||||||
specially. Use "." instead.
|
specially. Use "." instead.
|
||||||
@@ -37,7 +42,7 @@
|
|||||||
* IMPORTANT: 'extendedhinttags' is now a regexmap rather than a
|
* IMPORTANT: 'extendedhinttags' is now a regexmap rather than a
|
||||||
string.
|
string.
|
||||||
* IMPORTANT: 'guioptions' default value has changed.
|
* IMPORTANT: 'guioptions' default value has changed.
|
||||||
* Added 'altwildmode' and <A-Tab> commandline key binding.
|
* Added 'altwildmode' and <A-Tab> command-line key binding.
|
||||||
* Added 'autocomplete' option for specifying which completion
|
* Added 'autocomplete' option for specifying which completion
|
||||||
groups should be auto-completed.
|
groups should be auto-completed.
|
||||||
* Added 'banghist' option.
|
* Added 'banghist' option.
|
||||||
@@ -71,8 +76,4 @@
|
|||||||
updates, rewrites, and formatting improvements.
|
updates, rewrites, and formatting improvements.
|
||||||
* Remove :edit, :tabedit, and :winedit aliases.
|
* Remove :edit, :tabedit, and :winedit aliases.
|
||||||
* Remove :play.
|
* Remove :play.
|
||||||
* Add 'jsdebugger' option - switch on/off javascript debugger
|
|
||||||
service.
|
|
||||||
* Add "addons", "downloads", "extoptions" and "help" to the
|
|
||||||
'activate' option.
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user