parent
2c3f144cd5
commit
1e8bb202e9
@ -27,6 +27,10 @@ Added
|
|||||||
Changed
|
Changed
|
||||||
~~~~~~~
|
~~~~~~~
|
||||||
|
|
||||||
|
- `:q` now closes current window instead of quitting qutebrowser completely
|
||||||
|
(`:close`), while `:qa` quits (`:quit`). The behavior of `:wq` remains
|
||||||
|
unchanged (`:quit --save`), as closing a window while saving the session
|
||||||
|
doesn't make sense.
|
||||||
- Completion highlighting is now done differently (using QSyntaxHighlither),
|
- Completion highlighting is now done differently (using QSyntaxHighlither),
|
||||||
which should fix some highlighting corner-cases.
|
which should fix some highlighting corner-cases.
|
||||||
- The `QtColor` config type now also understands colors like `rgb(...)`.
|
- The `QtColor` config type now also understands colors like `rgb(...)`.
|
||||||
|
@ -294,9 +294,11 @@ Type: <<types,Dict>>
|
|||||||
|
|
||||||
Default:
|
Default:
|
||||||
|
|
||||||
- +pass:[q]+: +pass:[quit]+
|
- +pass:[q]+: +pass:[close]+
|
||||||
|
- +pass:[qa]+: +pass:[quit]+
|
||||||
- +pass:[w]+: +pass:[session-save]+
|
- +pass:[w]+: +pass:[session-save]+
|
||||||
- +pass:[wq]+: +pass:[quit --save]+
|
- +pass:[wq]+: +pass:[quit --save]+
|
||||||
|
- +pass:[wqa]+: +pass:[quit --save]+
|
||||||
|
|
||||||
[[auto_save.interval]]
|
[[auto_save.interval]]
|
||||||
=== auto_save.interval
|
=== auto_save.interval
|
||||||
|
@ -3,8 +3,10 @@
|
|||||||
aliases:
|
aliases:
|
||||||
default:
|
default:
|
||||||
w: session-save
|
w: session-save
|
||||||
q: quit
|
q: close
|
||||||
|
qa: quit
|
||||||
wq: quit --save
|
wq: quit --save
|
||||||
|
wqa: quit --save
|
||||||
type:
|
type:
|
||||||
name: Dict
|
name: Dict
|
||||||
keytype:
|
keytype:
|
||||||
|
Loading…
Reference in New Issue
Block a user