tabs switching & shortcuts

Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
This commit is contained in:
Hadi
2026-04-18 01:25:06 +02:00
parent cedf87698c
commit 922a412cda
2 changed files with 3 additions and 0 deletions
@@ -1,6 +1,8 @@
{config, ...}: { {config, ...}: {
programs.qutebrowser.keyBindings = { programs.qutebrowser.keyBindings = {
normal."<Ctrl-w>" = "tab-close"; normal."<Ctrl-w>" = "tab-close";
normal."<Ctrl-Tab>" = "tab-next";
normal."<Ctrl-Shift-Tab>" = "tab-prev";
normal."<Ctrl-b>" = "open file://${config.xdg.dataHome}/qutebrowser/bookmarks.html"; normal."<Ctrl-b>" = "open file://${config.xdg.dataHome}/qutebrowser/bookmarks.html";
# Ctrl+c is used to leave the current mode and return to normal mode. # Ctrl+c is used to leave the current mode and return to normal mode.
+1
View File
@@ -30,6 +30,7 @@
# Tabs # Tabs
"tabs.show" = "switching"; "tabs.show" = "switching";
"tabs.show_switching_delay" = 3000;
# Scrollbar # Scrollbar
"scrolling.bar" = "never"; "scrolling.bar" = "never";