summaryrefslogtreecommitdiff
path: root/misc
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-20 18:15:58 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-20 18:19:03 +0100
commit25afb200eddaf3c859b2d9098836a7b8c1c934ab (patch)
treeff904fe39c48c7cdaf53877cb8c2c59c90dff2ec /misc
parentfc87c3df0fd3b4c4a748876b526e6d7f29f70a02 (diff)
downloadqutebrowser-25afb200eddaf3c859b2d9098836a7b8c1c934ab.tar.gz
qutebrowser-25afb200eddaf3c859b2d9098836a7b8c1c934ab.zip
Rename :enter-mode and :leave-mode
See #6022
Diffstat (limited to 'misc')
-rwxr-xr-xmisc/userscripts/qute-bitwarden2
-rwxr-xr-xmisc/userscripts/qute-keepass2
-rwxr-xr-xmisc/userscripts/qute-lastpass2
-rwxr-xr-xmisc/userscripts/qute-pass2
4 files changed, 4 insertions, 4 deletions
diff --git a/misc/userscripts/qute-bitwarden b/misc/userscripts/qute-bitwarden
index ca9d646e4..a4954ef0c 100755
--- a/misc/userscripts/qute-bitwarden
+++ b/misc/userscripts/qute-bitwarden
@@ -278,7 +278,7 @@ def main(arguments):
fake_key_raw(password)
if arguments.insert_mode:
- qute_command('enter-mode insert')
+ qute_command('mode-enter insert')
# If it finds a TOTP code, it copies it to the clipboard,
# which is the same behavior as the Firefox add-on.
diff --git a/misc/userscripts/qute-keepass b/misc/userscripts/qute-keepass
index ae2da2340..0af669c9f 100755
--- a/misc/userscripts/qute-keepass
+++ b/misc/userscripts/qute-keepass
@@ -235,7 +235,7 @@ def run(args):
username, password = candidate_to_secret(selection)
- insert_mode = ';; enter-mode insert' if args.insert_mode else ''
+ insert_mode = ';; mode-enter insert' if args.insert_mode else ''
if args.username_fill_only:
qute_command('insert-text {}{}'.format(username, insert_mode))
elif args.password_fill_only:
diff --git a/misc/userscripts/qute-lastpass b/misc/userscripts/qute-lastpass
index c92505600..503b19512 100755
--- a/misc/userscripts/qute-lastpass
+++ b/misc/userscripts/qute-lastpass
@@ -173,7 +173,7 @@ def main(arguments):
fake_key_raw(password)
if arguments.insert_mode:
- qute_command('enter-mode insert')
+ qute_command('mode-enter insert')
return ExitCodes.SUCCESS
diff --git a/misc/userscripts/qute-pass b/misc/userscripts/qute-pass
index 388a7a737..9ea2bb5ac 100755
--- a/misc/userscripts/qute-pass
+++ b/misc/userscripts/qute-pass
@@ -247,7 +247,7 @@ def main(arguments):
fake_key_raw(password)
if arguments.insert_mode:
- qute_command('enter-mode insert')
+ qute_command('mode-enter insert')
return ExitCodes.SUCCESS