summaryrefslogtreecommitdiff
path: root/qutebrowser/keyinput/modeman.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-10-09 23:11:10 +0200
committerFlorian Bruhin <me@the-compiler.org>2019-10-09 23:11:10 +0200
commit16739dabe3711f152966af702c59df83a95d5d51 (patch)
tree97c4fa01471d4421d44834e4e1ede2bedfde24d2 /qutebrowser/keyinput/modeman.py
parent36ac7f24704938d13ff84e7829dcfad7b64a3dd0 (diff)
downloadqutebrowser-16739dabe3711f152966af702c59df83a95d5d51.tar.gz
qutebrowser-16739dabe3711f152966af702c59df83a95d5d51.zip
Use usertypes.KeyMode for PassthroughKeyParser mode argument
More consistency with RegisterKeyParser and more type safety
Diffstat (limited to 'qutebrowser/keyinput/modeman.py')
-rw-r--r--qutebrowser/keyinput/modeman.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/qutebrowser/keyinput/modeman.py b/qutebrowser/keyinput/modeman.py
index eb9ae537a..48ae3d9c5 100644
--- a/qutebrowser/keyinput/modeman.py
+++ b/qutebrowser/keyinput/modeman.py
@@ -87,22 +87,22 @@ def init(win_id, parent):
parent=modeman),
usertypes.KeyMode.insert:
modeparsers.PassthroughKeyParser(win_id=win_id,
- mode='insert',
+ mode=usertypes.KeyMode.insert,
commandrunner=commandrunner,
parent=modeman),
usertypes.KeyMode.passthrough:
modeparsers.PassthroughKeyParser(win_id=win_id,
- mode='passthrough',
+ mode=usertypes.KeyMode.passthrough,
commandrunner=commandrunner,
parent=modeman),
usertypes.KeyMode.command:
modeparsers.PassthroughKeyParser(win_id=win_id,
- mode='command',
+ mode=usertypes.KeyMode.command,
commandrunner=commandrunner,
parent=modeman),
usertypes.KeyMode.prompt:
modeparsers.PassthroughKeyParser(win_id=win_id,
- mode='prompt',
+ mode=usertypes.KeyMode.prompt,
commandrunner=commandrunner,
parent=modeman),
usertypes.KeyMode.yesno: