Allow clicking URLs via keybaord hints by pressing ctrl+shift+e

This commit is contained in:
Kovid Goyal
2018-02-14 17:18:57 +05:30
parent 9f52d427e5
commit 51e3e9997c
7 changed files with 54 additions and 9 deletions

View File

@@ -15,7 +15,8 @@ defns = defaultdict(list)
for line in open('kitty/kitty.conf'):
if line.startswith('map '):
_, sc, name = line.split(maxsplit=3)
_, sc, name = line.split(maxsplit=2)
name = name.rstrip().replace(' ', '_')
defns[name].append('`' + sc + '`')
defns = [