diff options
-rw-r--r-- | ranger/colorschemes/default.py | 2 | ||||
-rw-r--r-- | ranger/help/index.py | 6 |
2 files changed, 3 insertions, 5 deletions
diff --git a/ranger/colorschemes/default.py b/ranger/colorschemes/default.py index aa5299b9..b7a80db4 100644 --- a/ranger/colorschemes/default.py +++ b/ranger/colorschemes/default.py @@ -88,8 +88,6 @@ class Default(ColorScheme): elif context.bars: fg = black attr |= bold - elif context.quotes or context.text: - fg = magenta elif context.key: fg = green elif context.special: diff --git a/ranger/help/index.py b/ranger/help/index.py index 3fc35a3f..c740fed0 100644 --- a/ranger/help/index.py +++ b/ranger/help/index.py @@ -4,7 +4,6 @@ Move around: Use the cursor keys, or "h" to go left, h l "j" to go down, "k" to go up, "l" to go right. j Close Ranger: Use ":q<Enter>" or "Q". - Specific help: Type the help key "?" prepended with a number: |0?| This index @@ -12,12 +11,13 @@ |2?| Running Files |3?| The console |4?| File operations + ============================================================================== 0.1. General information -Whenever you see an annotation like |3?| you can translate it to: -"This is explained in more detail in chapter 3. Type 3? to view it." +Annotations like |1?| indicate that the topic is explained in more +detail in chapter 1. You can type 1? to view it. ============================================================================== """ |