Fix problems in mode segment

- It was impossible to configure visual block and select block mode strings:
  JSON strings can contain neither raw control characters nor escape sequences
  for them
- It was impossible to override only some of the strings:
  missing key generates KeyError exception, not IndexError
This commit is contained in:
ZyX 2013-01-20 19:24:41 +04:00 committed by Kim Silkebækken
parent f1976c2022
commit b7d8495b9c
1 changed files with 9 additions and 3 deletions

View File

@ -22,10 +22,10 @@ vim_modes = {
'no': u'N·OPER',
'v': u'VISUAL',
'V': u'V·LINE',
'': u'V·BLCK',
'^V': u'V·BLCK',
's': u'SELECT',
'S': u'S·LINE',
'': u'S·BLCK',
'^S': u'S·BLCK',
'i': u'INSERT',
'R': u'REPLACE',
'Rv': u'V·RPLCE',
@ -38,6 +38,11 @@ vim_modes = {
'!': u'SHELL',
}
mode_translations = {
chr(ord('V')-0x40): '^V',
chr(ord('S')-0x40): '^S',
}
def mode(override=None):
'''Return the current vim mode.
@ -49,11 +54,12 @@ def mode(override=None):
mode = mode({ 'n': 'NORM' })
'''
mode = vim_funcs['mode']()
mode = mode_translations.get(mode, mode)
if not override:
return vim_modes[mode]
try:
return override[mode]
except IndexError:
except KeyError:
return vim_modes[mode]