Remove heading_key of [script:n]

This commit is contained in:
John Lyu 2018-02-19 22:25:13 +08:00 committed by GitHub
parent 93425d4b1a
commit e467c01afe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -230,9 +230,7 @@ class StatusBar(urwid.WidgetWrap):
if self.master.options.mode != "regular": if self.master.options.mode != "regular":
r.append("[%s]" % self.master.options.mode) r.append("[%s]" % self.master.options.mode)
if self.master.options.scripts: if self.master.options.scripts:
r.append("[") r.append("[scripts:%s]" % len(self.master.options.scripts))
r.append(("heading_key", "s"))
r.append("cripts:%s]" % len(self.master.options.scripts))
if self.master.options.save_stream_file: if self.master.options.save_stream_file:
r.append("[W:%s]" % self.master.options.save_stream_file) r.append("[W:%s]" % self.master.options.save_stream_file)