Skip to content

Commit

Permalink
Qutebrowser: Update changed commands in config
Browse files Browse the repository at this point in the history
See changelog of 2.0.0
  • Loading branch information
andys8 committed Feb 9, 2021
1 parent 5294ff8 commit 24375ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions qutebrowser/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -919,7 +919,7 @@
## Type: Int
# c.downloads.remove_finished = -1

## Editor (and arguments) to use for the `open-editor` command. The
## Editor (and arguments) to use for the `edit-text` command. The
## following placeholders are defined: * `{file}`: Filename of the file
## to be edited. * `{line}`: Line in which the caret is found in the
## text. * `{column}`: Column in which the caret is found in the text. *
Expand Down Expand Up @@ -1743,12 +1743,12 @@
'<Ctrl-+>': 'zoom-in',
'<Ctrl-->': 'zoom-out',
'<Ctrl-0>': 'zoom',
'<Ctrl-e>': 'open-editor',
'<Ctrl-i>': 'open-editor',
'<Ctrl-e>': 'edit-text',
'<Ctrl-i>': 'edit-text',
'<Ctrl-p>': 'lastpass',
'<Ctrl-s>': 'jseval document.querySelectorAll("input[type=password]").forEach(i => { i.type = "text" })',
'<Ctrl-u>': 'jseval document.querySelectorAll("input[type=password]").forEach(i => { i.type = "text" })',
'<Escape>': 'leave-mode ;; jseval -q document.activeElement.blur()'
'<Escape>': 'mode-leave ;; jseval -q document.activeElement.blur()'
}
}

Expand Down

0 comments on commit 24375ac

Please sign in to comment.