Heed filters in macro printing

pull/6580/head
Jimmy Brisson 2018-04-09 09:27:09 -05:00
parent b384834db5
commit c3b9cbe3fd
1 changed files with 2 additions and 1 deletions

View File

@ -74,7 +74,8 @@ if __name__ == '__main__':
print("Macros")
print("------")
for m in Config.config_macros_to_macros(macros):
print(m)
if any(m.startswith(s) for s in options.prefix):
print(m)
except KeyboardInterrupt as e:
print("\n[CTRL+c] exit")