Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Q
qutebrowser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dotfiles
qutebrowser
Compare revisions
0201527d433474b9f623a9d81b1d819e2e48b036 to 1c5c8cebd432fb996a94b386440fb5e32a83eaea
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
dotfiles/qutebrowser
Select target project
No results found
1c5c8cebd432fb996a94b386440fb5e32a83eaea
Select Git revision
Branches
master
1 result
Swap
Target
dotfiles/qutebrowser
Select target project
dotfiles/qutebrowser
1 result
0201527d433474b9f623a9d81b1d819e2e48b036
Select Git revision
Branches
master
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
Add different bindings for passthrough mode
· 062d6a7e
Henrik Tjäder
authored
1 year ago
062d6a7e
Deprecated commands fix
· 1c5c8ceb
Henrik Tjäder
authored
1 year ago
1c5c8ceb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.config/qutebrowser/config.py
+8
-2
8 additions, 2 deletions
.config/qutebrowser/config.py
with
8 additions
and
2 deletions
.config/qutebrowser/config.py
View file @
1c5c8ceb
...
...
@@ -74,13 +74,19 @@ config.load_autoconfig()
config
.
bind
(
'
m
'
,
'
spawn mpv --ytdl-format=bestvideo[height<=?720][fps<=?30][vcodec!=?vp9]+bestaudio/best {url}
'
)
config
.
bind
(
'
M
'
,
'
hint links spawn mpv --ytdl-format=bestvideo[height<=?720][fps<=?30][vcodec!=?vp9]+bestaudio/best {hint-url}
'
)
config
.
bind
(
'
t
'
,
'
set-cmd-text -s :open -t
'
)
config
.
bind
(
'
<Ctrl+q>
'
,
'
mode-enter passthrough
'
)
config
.
bind
(
'
<Ctrl+q>
'
,
'
mode-leave
'
,
mode
=
'
passthrough
'
)
config
.
bind
(
'
<Alt+Escape>
'
,
'
mode-enter passthrough
'
)
config
.
bind
(
'
<Alt+Escape>
'
,
'
mode-leave
'
,
mode
=
'
passthrough
'
)
config
.
bind
(
'
t
'
,
'
cmd-set-text -s :open -t
'
)
config
.
bind
(
'
<ctrl+n>
'
,
'
tab-next
'
)
config
.
bind
(
'
<ctrl+p>
'
,
'
tab-prev
'
)
config
.
bind
(
'
Ctrl-b
'
,
'
set-cmd-text -s :quickmark-load
'
)
config
.
bind
(
'
b
'
,
'
set-cmd
-text -s :buffer
'
)
config
.
bind
(
'
b
'
,
'
cmd-set
-text -s :buffer
'
)
# config.bind('J', 'scroll-page 0 1')
# config.bind('K', 'scroll-page 0 -1')
config
.
bind
(
'
J
'
,
'
tab-next
'
)
...
...
This diff is collapsed.
Click to expand it.