Added the special case, git_blame, to the README.

This commit is contained in:
Andrew Hamilton 2017-07-19 10:13:24 +01:00
parent 0b6fbec3da
commit 2815fb83d8
2 changed files with 3 additions and 2 deletions

View file

@ -42,7 +42,8 @@ then to run:
Extensions | Tools
---------- | -----""")
all_tools = [(["*"], tools.generic_tools())] + tools.TOOLS_FOR_EXTENSIONS
all_tools = ([(["*"], tools.generic_tools() + [tools.git_blame])] +
tools.TOOLS_FOR_EXTENSIONS)
for extensions, tools_ in all_tools:
print("%s | %s" % (" ".join("." + extension for extension in extensions),
"".join(tool_markup(tool) for tool in tools_)))