update qutebrowser and no bookmarks
This commit is contained in:
parent
0c0738cf32
commit
79c0d8ba1a
@ -24,6 +24,7 @@ c.url.start_pages = ["https://calendar.google.com"]
|
|||||||
c.aliases = { "wq": "quit --save"
|
c.aliases = { "wq": "quit --save"
|
||||||
, "set": "set -t"
|
, "set": "set -t"
|
||||||
, "bind": "bind -t"
|
, "bind": "bind -t"
|
||||||
|
, "quickmarks": "open qute://bookmarks/"
|
||||||
}
|
}
|
||||||
|
|
||||||
config.bind("<backspace>", "back", mode="normal")
|
config.bind("<backspace>", "back", mode="normal")
|
||||||
@ -42,3 +43,10 @@ config.bind("z", 'enter-mode insert ;; \
|
|||||||
break; \
|
break; \
|
||||||
} \
|
} \
|
||||||
}', mode="normal")
|
}', mode="normal")
|
||||||
|
|
||||||
|
# I don't use bookmarks
|
||||||
|
config.unbind('M')
|
||||||
|
config.unbind('wB')
|
||||||
|
config.unbind('gb')
|
||||||
|
config.unbind('gB')
|
||||||
|
config.unbind('Sb')
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
#!/usr/bin/python3
|
#!/usr/bin/python3
|
||||||
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==1.0.2','gui_scripts','qutebrowser'
|
# EASY-INSTALL-ENTRY-SCRIPT: 'qutebrowser==1.0.3','gui_scripts','qutebrowser'
|
||||||
__requires__ = 'qutebrowser==1.0.2'
|
__requires__ = 'qutebrowser==1.0.3'
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
from pkg_resources import load_entry_point
|
from pkg_resources import load_entry_point
|
||||||
@ -8,5 +8,5 @@ from pkg_resources import load_entry_point
|
|||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
|
||||||
sys.exit(
|
sys.exit(
|
||||||
load_entry_point('qutebrowser==1.0.2', 'gui_scripts', 'qutebrowser')()
|
load_entry_point('qutebrowser==1.0.3', 'gui_scripts', 'qutebrowser')()
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user