diff options
author | Chuancong Gao <chuanconggao@users.noreply.github.com> | 2018-05-15 15:06:15 -0700 |
---|---|---|
committer | Chuancong Gao <chuanconggao@users.noreply.github.com> | 2018-05-15 15:06:15 -0700 |
commit | 6eae1e1480df9d66e7d851b332ce636a7d95af11 (patch) | |
tree | 7d5f7ea82f469f5929820fc7e9d8cba6ec5f5244 | |
parent | f855979587bd918f0d32c0caba79ab4b4aa531cf (diff) | |
download | ranger-6eae1e1480df9d66e7d851b332ce636a7d95af11.tar.gz |
Fix bug for "Improve VCS symbols" #1123
-rw-r--r-- | ranger/gui/context.py | 2 |
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' ] |