summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorChuancong Gao <chuanconggao@users.noreply.github.com>2018-05-15 15:06:15 -0700
committerChuancong Gao <chuanconggao@users.noreply.github.com>2018-05-15 15:06:15 -0700
commit6eae1e1480df9d66e7d851b332ce636a7d95af11 (patch)
tree7d5f7ea82f469f5929820fc7e9d8cba6ec5f5244
parentf855979587bd918f0d32c0caba79ab4b4aa531cf (diff)
downloadranger-6eae1e1480df9d66e7d851b332ce636a7d95af11.tar.gz
Fix bug for "Improve VCS symbols" #1123
-rw-r--r--ranger/gui/context.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/context.py b/ranger/gui/context.py
index d8d1957c..96849686 100644
--- a/ranger/gui/context.py
+++ b/ranger/gui/context.py
@@ -23,7 +23,7 @@ CONTEXT_KEYS = [
     'keybuffer',
     'infostring',
     'vcsfile', 'vcsremote', 'vcsinfo', 'vcscommit', 'vcsdate',
-    'vcsconflict', 'vcschanged', 'vcsunknown', 'vcsignored',
+    'vcsconflict', 'vcschanged', 'vcsunknown', 'vcsignored', 'vcsuntracked',
     'vcsstaged', 'vcssync', 'vcsnone', 'vcsbehind', 'vcsahead', 'vcsdiverged'
 ]