Merge #11319 'inccommand: fix issues with modifiers and prompting'

This commit is contained in:
Justin M. Keyes
2019-11-05 17:34:21 -08:00
5 changed files with 130 additions and 11 deletions

View File

@@ -66,7 +66,7 @@ except IndexError:
def filt(entry): return True
else:
_filt = filt
def filt(entry): return eval(_filt, globals(), {'entry': entry})
def filt(entry): return eval(_filt, globals(), {'entry': entry}) # noqa
poswidth = len(str(os.stat(fname).st_size or 1000))