diff --git a/config/claude/hooks/guard.sh b/config/claude/hooks/guard.sh
index 7d0d641..ddfcad8 100755
--- a/config/claude/hooks/guard.sh
+++ b/config/claude/hooks/guard.sh
@@ -9,10 +9,6 @@ if printf '%s' "$CMD" | grep -qE '\bgh\b.*\s(-R|--repo)\b'; then
exit 2
fi
-if printf '%s' "$CMD" | grep -qE '\bgh\s+issue\s+create\b'; then
- echo "Blocked: gh issue create must be run manually or explicitly approved." >&2
- exit 2
-fi
if printf '%s' "$CMD" | grep -qE '\bgit\s+push\b'; then
BRANCH=$(git branch --show-current 2>/dev/null || true)
diff --git a/config/claude/skills/pr/SKILL.md b/config/claude/skills/pr/SKILL.md
index 444a4e1..bfecceb 100644
--- a/config/claude/skills/pr/SKILL.md
+++ b/config/claude/skills/pr/SKILL.md
@@ -34,9 +34,11 @@ Create a pull request from the current branch.
3. Present the title and body. Ask for approval.
4. After approval, if `scripts/ci.sh` exists, run it:
+
```
bash scripts/ci.sh
```
+
If it fails, show the output and stop. Do NOT create the PR.
5. Run exactly one Bash command:
diff --git a/config/claude/skills/qpr/SKILL.md b/config/claude/skills/qpr/SKILL.md
index 2a31a33..4a6e3f1 100644
--- a/config/claude/skills/qpr/SKILL.md
+++ b/config/claude/skills/qpr/SKILL.md
@@ -13,9 +13,11 @@ Create a pull request immediately, no approval step.
If the branch is `main` or `master`, tell the user and stop.
2. If `scripts/ci.sh` exists, run it:
+
```
bash scripts/ci.sh
```
+
If it fails, show the output and stop.
3. Draft the PR (do NOT present for approval — create it immediately):
@@ -35,12 +37,14 @@ Create a pull request immediately, no approval step.
- Use backticks around code identifiers, function names, and file paths.
Run exactly one Bash command:
+
```
gh pr create --title "
" --body "$(cat <<'EOF'
EOF
)"
```
+
Print the PR URL from the output.
Total: 2-3 Bash calls. Do not run any other commands.
diff --git a/config/nvim/lua/plugins/cmp.lua b/config/nvim/lua/plugins/cmp.lua
index 390bb34..be37b11 100644
--- a/config/nvim/lua/plugins/cmp.lua
+++ b/config/nvim/lua/plugins/cmp.lua
@@ -59,6 +59,7 @@ return {
'snippet_forward',
},
},
+ cmdline = { enabled = false },
completion = {
accept = {
auto_brackets = { enabled = false },
diff --git a/config/nvim/lua/plugins/dev.lua b/config/nvim/lua/plugins/dev.lua
index a535dde..db8dac0 100644
--- a/config/nvim/lua/plugins/dev.lua
+++ b/config/nvim/lua/plugins/dev.lua
@@ -292,15 +292,22 @@ return {
},
{
'barrettruth/preview.nvim',
- ft = { 'typst', 'tex', 'markdown' },
- after = function()
- require('preview').setup({
+ ft = { 'typst', 'tex', 'markdown', 'plantuml' },
+ before = function()
+ vim.filetype.add({
+ extension = { puml = 'plantuml', pu = 'plantuml' },
+ })
+ vim.g.preview = {
github = true,
typst = { open = { 'sioyek', '--new-instance' } },
+ plantuml = true,
+ mermaid = true,
latex = {
open = { 'sioyek', '--new-instance' },
output = function(ctx)
- return 'build/' .. vim.fn.fnamemodify(ctx.file, ':t:r') .. '.pdf'
+ return ('build/%s.pdf'):format(
+ vim.fn.fnamemodify(ctx.file, ':t:r')
+ )
end,
args = function(ctx)
return {
@@ -313,8 +320,8 @@ return {
}
end,
},
- })
+ }
end,
- keys = { { 'p', 'Preview watch' } },
+ keys = { { 'p', 'Preview toggle' } },
},
}
diff --git a/config/nvim/lua/plugins/fzf.lua b/config/nvim/lua/plugins/fzf.lua
index 2ed043a..ddbd713 100644
--- a/config/nvim/lua/plugins/fzf.lua
+++ b/config/nvim/lua/plugins/fzf.lua
@@ -88,18 +88,6 @@ return {
fzf.setup(opts)
- vim.api.nvim_create_autocmd('FileType', {
- pattern = 'fzf',
- callback = function()
- vim.opt_local.number = false
- vim.opt_local.relativenumber = false
- end,
- group = vim.api.nvim_create_augroup(
- 'AFzfHighlights',
- { clear = true }
- ),
- })
-
local ok, fzf_reload = pcall(require, 'config.fzf_reload')
if ok then
fzf_reload.setup(opts)
diff --git a/config/nvim/lua/plugins/git.lua b/config/nvim/lua/plugins/git.lua
index ed8ecc7..02e98d3 100644
--- a/config/nvim/lua/plugins/git.lua
+++ b/config/nvim/lua/plugins/git.lua
@@ -230,7 +230,6 @@ return {
vim.g.diffs = {
debug = '/tmp/diffs.log',
fugitive = true,
- neogit = false,
extra_filetypes = { 'diff' },
hide_prefix = false,
highlights = {
diff --git a/config/nvim/lua/plugins/nvim.lua b/config/nvim/lua/plugins/nvim.lua
index 0677c5f..324c374 100644
--- a/config/nvim/lua/plugins/nvim.lua
+++ b/config/nvim/lua/plugins/nvim.lua
@@ -20,6 +20,10 @@ return {
},
{
'echasnovski/mini.ai',
+ keys = {
+ { 'a', mode = { 'x', 'o' } },
+ { 'i', mode = { 'x', 'o' } },
+ },
after = function()
require('mini.ai').setup({
custom_textobjects = {
@@ -49,27 +53,6 @@ return {
to = { line = end_line, col = to_col },
}
end,
- l = function(ai_type)
- local line_num = vim.fn.line('.')
- local line = vim.fn.getline(line_num)
- if line == '' then
- return {
- from = { line = line_num, col = 1 },
- to = { line = line_num, col = 1 },
- }
- end
- local start_col, end_col
- if ai_type == 'i' then
- start_col = line:find('%S') or 1
- end_col = line:match('.*%S()') or 1
- else
- start_col, end_col = 1, line:len()
- end
- return {
- from = { line = line_num, col = start_col },
- to = { line = line_num, col = end_col },
- }
- end,
I = function(ai_type)
local cur_line = vim.fn.line('.')
local cur_indent = vim.fn.indent(cur_line)
@@ -126,10 +109,6 @@ return {
},
})
end,
- keys = {
- { 'a', mode = { 'x', 'o' } },
- { 'i', mode = { 'x', 'o' } },
- },
},
{
'monaqa/dial.nvim',
diff --git a/config/nvim/nvim-pack-lock.json b/config/nvim/nvim-pack-lock.json
index cec6c01..80c1ecc 100644
--- a/config/nvim/nvim-pack-lock.json
+++ b/config/nvim/nvim-pack-lock.json
@@ -76,6 +76,10 @@
"rev": "b7fde3719340946feb75017ef9d75edebdeb0566",
"src": "https://github.com/echasnovski/mini.pairs"
},
+ "neogit": {
+ "rev": "7073f3aafc9030d457838995106784a9d1873b3b",
+ "src": "https://github.com/NeogitOrg/neogit"
+ },
"nvim-colorizer.lua": {
"rev": "ae0d66307a5b431c7b633806eb27769334ac5f05",
"src": "https://github.com/catgoose/nvim-colorizer.lua"
@@ -104,6 +108,10 @@
"rev": "2802c15182dae2de71f9c82e918d7ba850b90c22",
"src": "https://github.com/stevearc/overseer.nvim"
},
+ "plenary.nvim": {
+ "rev": "b9fd5226c2f76c951fc8ed5923d85e4de065e509",
+ "src": "https://github.com/nvim-lua/plenary.nvim"
+ },
"treesj": {
"rev": "186084dee5e9c8eec40f6e39481c723dd567cb05",
"src": "https://github.com/Wansmer/treesj"
diff --git a/config/nvim/plugin/autocmds.lua b/config/nvim/plugin/autocmds.lua
index d268b52..73903e9 100644
--- a/config/nvim/plugin/autocmds.lua
+++ b/config/nvim/plugin/autocmds.lua
@@ -16,6 +16,15 @@ vim.api.nvim_create_autocmd({ 'TermOpen', 'BufWinEnter' }, {
group = aug,
})
+vim.api.nvim_create_autocmd('FileType', {
+ pattern = { 'fzf', 'TelescopePrompt', 'TelescopeResults' },
+ callback = function()
+ vim.opt_local.number = false
+ vim.opt_local.relativenumber = false
+ end,
+ group = aug,
+})
+
vim.api.nvim_create_autocmd('BufReadPost', {
command = 'sil! normal g`"',
group = aug,
diff --git a/config/zen/zen-keyboard-shortcuts.json b/config/zen/zen-keyboard-shortcuts.json
index b60bfad..7634012 100644
--- a/config/zen/zen-keyboard-shortcuts.json
+++ b/config/zen/zen-keyboard-shortcuts.json
@@ -1 +1,2186 @@
-{"shortcuts":[{"id":"key_wrToggleCaptureSequenceCmd","key":"^","keycode":null,"group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"wrToggleCaptureSequenceCmd","disabled":false,"reserved":false,"internal":false},{"id":"key_wrCaptureCmd","key":"#","keycode":null,"group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"wrCaptureCmd","disabled":false,"reserved":false,"internal":false},{"id":"key_selectLastTab","key":"9","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_selectTab8","key":"8","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_selectTab7","key":"7","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_selectTab6","key":"6","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_selectTab5","key":"5","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_selectTab4","key":"4","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_selectTab3","key":"3","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_selectTab2","key":"2","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_selectTab1","key":"1","keycode":"","group":"windowAndTabManagement","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_undoCloseWindow","key":"","keycode":"","group":"windowAndTabManagement","l10nId":"zen-window-new-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":"History:UndoCloseWindow","disabled":true,"reserved":false,"internal":false},{"id":"key_restoreLastClosedTabOrWindowOrSession","key":"t","keycode":null,"group":"windowAndTabManagement","l10nId":"zen-restore-last-closed-tab-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"History:RestoreLastClosedTabOrWindowOrSession","disabled":false,"reserved":false,"internal":false},{"id":"key_quitApplication","key":"q","keycode":null,"group":"windowAndTabManagement","l10nId":"zen-quit-app-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_quitApplication","disabled":false,"reserved":true,"internal":false},{"id":"key_sanitize","keycode":"VK_DELETE","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"Tools:Sanitize","disabled":false,"reserved":false,"internal":false},{"id":"key_screenshot","key":"","keycode":"","group":"mediaAndDisplay","l10nId":"zen-screenshot-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":"Browser:Screenshot","disabled":false,"reserved":false,"internal":false},{"id":"key_privatebrowsing","key":"p","keycode":null,"group":"navigation","l10nId":"zen-private-browsing-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"Tools:PrivateBrowsing","disabled":false,"reserved":true,"internal":false},{"id":"key_switchTextDirection","key":"x","keycode":null,"group":"mediaAndDisplay","l10nId":"zen-bidi-switch-direction-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_switchTextDirection","disabled":false,"reserved":false,"internal":false},{"id":"key_showAllTabs","keycode":"VK_TAB","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":null,"key":"","keycode":null,"group":"other","l10nId":"zen-full-zoom-reset-shortcut-alt","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_fullZoomReset","disabled":false,"reserved":false,"internal":false},{"id":"key_fullZoomReset","key":"0","keycode":null,"group":"mediaAndDisplay","l10nId":"zen-full-zoom-reset-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_fullZoomReset","disabled":false,"reserved":false,"internal":false},{"id":null,"key":"","keycode":null,"group":"other","l10nId":"zen-full-zoom-enlarge-shortcut-alt2","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_fullZoomEnlarge","disabled":false,"reserved":false,"internal":false},{"id":null,"key":"=","keycode":null,"group":"other","l10nId":"zen-full-zoom-enlarge-shortcut-alt","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_fullZoomEnlarge","disabled":false,"reserved":false,"internal":false},{"id":"key_fullZoomEnlarge","key":"+","keycode":null,"group":"mediaAndDisplay","l10nId":"zen-full-zoom-enlarge-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_fullZoomEnlarge","disabled":false,"reserved":false,"internal":false},{"id":null,"key":"","keycode":null,"group":"other","l10nId":"zen-full-zoom-reduce-shortcut-alt-b","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_fullZoomReduce","disabled":false,"reserved":false,"internal":false},{"id":null,"key":"_","keycode":null,"group":"other","l10nId":"zen-full-zoom-reduce-shortcut-alt-a","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_fullZoomReduce","disabled":false,"reserved":false,"internal":false},{"id":"key_fullZoomReduce","key":"-","keycode":null,"group":"mediaAndDisplay","l10nId":"zen-full-zoom-reduce-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_fullZoomReduce","disabled":false,"reserved":false,"internal":false},{"id":"key_gotoHistory","key":"","keycode":"","group":"navigation","l10nId":"zen-history-sidebar-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"toggleSidebarKb","key":"z","keycode":null,"group":"other","l10nId":"zen-toggle-sidebar-shortcut","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"viewGenaiChatSidebarKb","key":"x","keycode":null,"group":"other","l10nId":"zen-ai-chatbot-sidebar-shortcut","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_stop","key":"","keycode":"","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":"Browser:Stop","disabled":false,"reserved":false,"internal":false},{"id":"viewBookmarksToolbarKb","key":"","keycode":"","group":"other","l10nId":"zen-bookmark-show-toolbar-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"viewBookmarksSidebarKb","key":"b","keycode":null,"group":"other","l10nId":"zen-bookmark-show-sidebar-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"manBookmarkKb","key":"o","keycode":null,"group":"historyAndBookmarks","l10nId":"zen-bookmark-show-library-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"Browser:ShowAllBookmarks","disabled":false,"reserved":false,"internal":false},{"id":"bookmarkAllTabsKb","key":"","keycode":"","group":"historyAndBookmarks","l10nId":"zen-bookmark-this-page-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"addBookmarkAsKb","key":"d","keycode":null,"group":"historyAndBookmarks","l10nId":"zen-bookmark-this-page-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Browser:AddBookmarkAs","disabled":false,"reserved":false,"internal":false},{"id":null,"keycode":"VK_F3","group":"other","l10nId":"zen-search-find-again-shortcut-prev","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":false},"action":"cmd_findPrevious","disabled":false,"reserved":false,"internal":false},{"id":null,"keycode":"VK_F3","group":"other","l10nId":"zen-search-find-again-shortcut-alt","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_findAgain","disabled":false,"reserved":false,"internal":false},{"id":"key_findPrevious","key":"g","keycode":null,"group":"searchAndFind","l10nId":"zen-search-find-again-shortcut-prev","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_findPrevious","disabled":false,"reserved":false,"internal":false},{"id":"key_findAgain","key":"g","keycode":null,"group":"searchAndFind","l10nId":"zen-search-find-again-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_findAgain","disabled":false,"reserved":false,"internal":false},{"id":"key_find","key":"f","keycode":null,"group":"searchAndFind","l10nId":"zen-find-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_find","disabled":false,"reserved":false,"internal":false},{"id":"key_viewInfo","key":"i","keycode":null,"group":"pageOperations","l10nId":"zen-page-info-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"View:PageInfo","disabled":false,"reserved":false,"internal":false},{"id":"key_viewSource","key":"u","keycode":null,"group":"pageOperations","l10nId":"zen-page-source-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"View:PageSource","disabled":false,"reserved":false,"internal":false},{"id":"key_aboutProcesses","keycode":"VK_ESCAPE","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":false},"action":"View:AboutProcesses","disabled":false,"reserved":false,"internal":false},{"id":"key_reload_skip_cache","key":"r","keycode":null,"group":"navigation","l10nId":"zen-nav-reload-shortcut-skip-cache","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"Browser:ReloadSkipCache","disabled":false,"reserved":false,"internal":false},{"id":"key_reload","key":"r","keycode":null,"group":"navigation","l10nId":"zen-nav-reload-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Browser:Reload","disabled":false,"reserved":false,"internal":false},{"id":null,"key":"}","keycode":null,"group":"other","l10nId":"zen-picture-in-picture-toggle-shortcut-alt","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"View:PictureInPicture","disabled":false,"reserved":false,"internal":false},{"id":"key_togglePictureInPicture","key":"]","keycode":null,"group":"pageOperations","l10nId":"zen-picture-in-picture-toggle-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"View:PictureInPicture","disabled":false,"reserved":false,"internal":false},{"id":"key_toggleReaderMode","key":"r","keycode":null,"group":"pageOperations","l10nId":"zen-reader-mode-toggle-shortcut-other","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":"View:ReaderView","disabled":true,"reserved":false,"internal":false},{"id":"key_exitFullScreen","keycode":"VK_F11","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"View:FullScreen","disabled":true,"reserved":true,"internal":false},{"id":"key_enterFullScreen","keycode":"VK_F11","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"View:FullScreen","disabled":false,"reserved":false,"internal":false},{"id":"key_reload_skip_cache2","keycode":"VK_F5","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Browser:ReloadSkipCache","disabled":false,"reserved":false,"internal":false},{"id":"showAllHistoryKb","key":"h","keycode":"","group":"historyAndBookmarks","l10nId":"zen-history-show-all-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Browser:ShowAllHistory","disabled":false,"reserved":false,"internal":false},{"id":"key_reload2","keycode":"VK_F5","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"Browser:Reload","disabled":false,"reserved":false,"internal":false},{"id":"goHome","keycode":"VK_HOME","group":"navigation","l10nId":null,"modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"goForwardKb2","key":"]","keycode":null,"group":"navigation","l10nId":"zen-nav-fwd-shortcut-alt","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Browser:Forward","disabled":false,"reserved":false,"internal":false},{"id":"goBackKb2","key":"[","keycode":null,"group":"navigation","l10nId":"zen-nav-back-shortcut-alt","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Browser:Back","disabled":false,"reserved":false,"internal":false},{"id":"goForwardKb","keycode":"VK_RIGHT","group":"navigation","l10nId":null,"modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":false},"action":"Browser:Forward","disabled":false,"reserved":false,"internal":false},{"id":"goBackKb","keycode":"VK_LEFT","group":"navigation","l10nId":null,"modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":false},"action":"Browser:Back","disabled":false,"reserved":false,"internal":false},{"id":null,"keycode":"VK_BACK","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":false},"action":"cmd_handleShiftBackspace","disabled":false,"reserved":false,"internal":false},{"id":null,"keycode":"VK_BACK","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_handleBackspace","disabled":false,"reserved":false,"internal":false},{"id":"key_selectAll","key":"a","keycode":null,"group":"other","l10nId":"zen-text-action-select-all-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":true},{"id":"key_delete","keycode":"VK_DELETE","group":"other","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_delete","disabled":false,"reserved":false,"internal":false},{"id":"key_paste","key":"v","keycode":null,"group":"other","l10nId":"zen-text-action-paste-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":true},{"id":"key_copy","key":"c","keycode":null,"group":"other","l10nId":"zen-text-action-copy-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":true},{"id":"key_cut","key":"x","keycode":null,"group":"other","l10nId":"zen-text-action-cut-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":true},{"id":"key_redo","key":"z","keycode":null,"group":"other","l10nId":"zen-text-action-undo-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":true},{"id":"key_undo","key":"z","keycode":null,"group":"other","l10nId":"zen-text-action-undo-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":true},{"id":"key_toggleMute","key":"m","keycode":null,"group":"mediaAndDisplay","l10nId":"zen-mute-toggle-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_toggleMute","disabled":false,"reserved":false,"internal":false},{"id":"key_closeWindow","key":"w","keycode":null,"group":"windowAndTabManagement","l10nId":"zen-close-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_closeWindow","disabled":false,"reserved":true,"internal":false},{"id":"key_close","key":"w","keycode":null,"group":"windowAndTabManagement","l10nId":"zen-close-tab-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_close","disabled":false,"reserved":true,"internal":false},{"id":"printKb","key":"p","keycode":null,"group":"pageOperations","l10nId":"zen-print-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_print","disabled":false,"reserved":false,"internal":false},{"id":"key_savePage","key":"s","keycode":null,"group":"pageOperations","l10nId":"zen-save-page-shortcut","modifiers":{"control":false,"alt":true,"shift":true,"meta":false,"accel":true},"action":"Browser:SavePage","disabled":false,"reserved":false,"internal":false},{"id":"openFileKb","key":"","keycode":"","group":"other","l10nId":"zen-file-open-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":"Browser:OpenFile","disabled":false,"reserved":false,"internal":false},{"id":"key_openAddons","key":"","keycode":"","group":"other","l10nId":"zen-addons-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":"Tools:Addons","disabled":false,"reserved":false,"internal":false},{"id":"key_openDownloads","key":"y","keycode":null,"group":"other","l10nId":"zen-downloads-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"Tools:Downloads","disabled":false,"reserved":false,"internal":false},{"id":"key_search2","key":"j","keycode":null,"group":"searchAndFind","l10nId":"zen-search-focus-shortcut-alt","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Tools:Search","disabled":false,"reserved":false,"internal":false},{"id":"key_search","key":"k","keycode":null,"group":"searchAndFind","l10nId":"zen-search-focus-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Tools:Search","disabled":false,"reserved":false,"internal":false},{"id":"focusURLBar2","key":"d","keycode":null,"group":"pageOperations","l10nId":"zen-location-open-shortcut-alt","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":false},"action":"Browser:OpenLocation","disabled":false,"reserved":false,"internal":false},{"id":"focusURLBar","key":"l","keycode":null,"group":"pageOperations","l10nId":"zen-location-open-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"Browser:OpenLocation","disabled":false,"reserved":false,"internal":false},{"id":"key_newNavigatorTab","key":"t","keycode":null,"group":"windowAndTabManagement","l10nId":"zen-tab-new-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_newNavigatorTabNoEvent","disabled":false,"reserved":true,"internal":false},{"id":"key_newNavigator","key":"n","keycode":null,"group":"windowAndTabManagement","l10nId":"zen-window-new-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_newNavigator","disabled":false,"reserved":true,"internal":false},{"id":"zen-compact-mode-toggle","key":"b","keycode":"","group":"zen-compact-mode","l10nId":"zen-compact-mode-shortcut-toggle","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_toggleCompactModeIgnoreHover","disabled":false,"reserved":false,"internal":false},{"id":"zen-compact-mode-show-sidebar","key":"s","keycode":"","group":"zen-compact-mode","l10nId":"zen-compact-mode-shortcut-show-sidebar","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":"cmd_zenCompactModeShowSidebar","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-10","key":"","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-10","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_zenWorkspaceSwitch10","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-9","key":"","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-9","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_zenWorkspaceSwitch9","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-8","key":"","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-8","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_zenWorkspaceSwitch8","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-7","key":"","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-7","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_zenWorkspaceSwitch7","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-6","key":"","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-6","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_zenWorkspaceSwitch6","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-5","key":"","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-5","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_zenWorkspaceSwitch5","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-4","key":"l","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-4","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_zenWorkspaceSwitch4","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-3","key":"k","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-3","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_zenWorkspaceSwitch3","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-2","key":"j","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-2","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_zenWorkspaceSwitch2","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-switch-1","key":"h","keycode":"","group":"zen-workspace","l10nId":"zen-workspace-shortcut-switch-1","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_zenWorkspaceSwitch1","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-forward","key":"","keycode":"VK_RIGHT","group":"zen-workspace","l10nId":"zen-workspace-shortcut-forward","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":"cmd_zenWorkspaceForward","disabled":false,"reserved":false,"internal":false},{"id":"zen-workspace-backward","key":"","keycode":"VK_LEFT","group":"zen-workspace","l10nId":"zen-workspace-shortcut-backward","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":"cmd_zenWorkspaceBackward","disabled":false,"reserved":false,"internal":false},{"id":"zen-split-view-grid","key":"g","keycode":"","group":"zen-split-view","l10nId":"zen-split-view-shortcut-grid","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":"cmd_zenSplitViewGrid","disabled":false,"reserved":false,"internal":false},{"id":"zen-split-view-vertical","key":"v","keycode":"","group":"zen-split-view","l10nId":"zen-split-view-shortcut-vertical","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":"cmd_zenSplitViewVertical","disabled":false,"reserved":false,"internal":false},{"id":"zen-split-view-horizontal","key":"h","keycode":"","group":"zen-split-view","l10nId":"zen-split-view-shortcut-horizontal","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":"cmd_zenSplitViewHorizontal","disabled":false,"reserved":false,"internal":false},{"id":"zen-split-view-unsplit","key":"u","keycode":"","group":"zen-split-view","l10nId":"zen-split-view-shortcut-unsplit","modifiers":{"control":false,"alt":true,"shift":false,"meta":false,"accel":true},"action":"cmd_zenSplitViewUnsplit","disabled":false,"reserved":false,"internal":false},{"id":"zen-pinned-tab-reset-shortcut","key":"","keycode":"","group":"zen-other","l10nId":"zen-pinned-tab-shortcut-reset","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_zenPinnedTabReset","disabled":false,"reserved":false,"internal":false},{"id":"zen-toggle-sidebar","key":"","keycode":"","group":"zen-other","l10nId":"zen-sidebar-shortcut-toggle","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":false},"action":"cmd_zenToggleSidebar","disabled":false,"reserved":false,"internal":false},{"id":"zen-copy-url","key":"c","keycode":"","group":"zen-other","l10nId":"zen-text-action-copy-url-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_zenCopyCurrentURL","disabled":false,"reserved":false,"internal":false},{"id":"zen-copy-url-markdown","key":"c","keycode":"","group":"zen-other","l10nId":"zen-text-action-copy-url-markdown-shortcut","modifiers":{"control":false,"alt":true,"shift":true,"meta":false,"accel":true},"action":"cmd_zenCopyCurrentURLMarkdown","disabled":false,"reserved":false,"internal":false},{"id":"zen-toggle-pin-tab","key":"","keycode":"","group":"zen-other","l10nId":"zen-toggle-pin-tab-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":"cmd_zenTogglePinTab","disabled":false,"reserved":false,"internal":false},{"id":"zen-glance-expand","key":"o","keycode":"","group":"zen-other","l10nId":"","modifiers":{"control":false,"alt":false,"shift":false,"meta":false,"accel":true},"action":"cmd_zenGlanceExpand","disabled":false,"reserved":false,"internal":false},{"id":"zen-new-empty-split-view","key":"*","keycode":"","group":"zen-split-view","l10nId":"zen-new-empty-split-view-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_zenNewEmptySplit","disabled":false,"reserved":false,"internal":false},{"id":"zen-close-all-unpinned-tabs","key":"","keycode":"","group":"zen-workspace","l10nId":"zen-close-all-unpinned-tabs-shortcut","modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":"cmd_zenCloseUnpinnedTabs","disabled":false,"reserved":false,"internal":false},{"id":"zen-new-unsynced-window","key":"n","keycode":"","group":"zen-other","l10nId":"zen-new-unsynced-window-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_zenNewNavigatorUnsynced","disabled":false,"reserved":false,"internal":false},{"id":"key_accessibility","keycode":"VK_F12","group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_dom","key":"w","keycode":null,"group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_storage","keycode":"VK_F9","group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_performance","keycode":"VK_F5","group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_styleeditor","keycode":"VK_F7","group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_netmonitor","key":"e","keycode":null,"group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_jsdebugger","key":"z","keycode":null,"group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_webconsole","key":"","keycode":"","group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_inspector","key":"","keycode":"","group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_responsiveDesignMode","key":"m","keycode":null,"group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_browserConsole","key":"","keycode":"","group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":false,"meta":false},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_browserToolbox","key":"i","keycode":null,"group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":true,"shift":true,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"key_toggleToolbox","key":"i","keycode":null,"group":"devTools","l10nId":null,"modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":null,"disabled":false,"reserved":false,"internal":false},{"id":"zen-new-unsynced-window","key":"n","keycode":"","group":"zen-other","l10nId":"zen-new-unsynced-window-shortcut","modifiers":{"control":false,"alt":false,"shift":true,"meta":false,"accel":true},"action":"cmd_zenNewNavigatorUnsynced","disabled":false,"reserved":false,"internal":false}]}
\ No newline at end of file
+{
+ "shortcuts": [
+ {
+ "id": "key_wrToggleCaptureSequenceCmd",
+ "key": "^",
+ "keycode": null,
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "wrToggleCaptureSequenceCmd",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_wrCaptureCmd",
+ "key": "#",
+ "keycode": null,
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "wrCaptureCmd",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectLastTab",
+ "key": "9",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectTab8",
+ "key": "8",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectTab7",
+ "key": "7",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectTab6",
+ "key": "6",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectTab5",
+ "key": "5",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectTab4",
+ "key": "4",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectTab3",
+ "key": "3",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectTab2",
+ "key": "2",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectTab1",
+ "key": "1",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_undoCloseWindow",
+ "key": "",
+ "keycode": "",
+ "group": "windowAndTabManagement",
+ "l10nId": "zen-window-new-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": "History:UndoCloseWindow",
+ "disabled": true,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_restoreLastClosedTabOrWindowOrSession",
+ "key": "t",
+ "keycode": null,
+ "group": "windowAndTabManagement",
+ "l10nId": "zen-restore-last-closed-tab-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "History:RestoreLastClosedTabOrWindowOrSession",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_quitApplication",
+ "key": "q",
+ "keycode": null,
+ "group": "windowAndTabManagement",
+ "l10nId": "zen-quit-app-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_quitApplication",
+ "disabled": false,
+ "reserved": true,
+ "internal": false
+ },
+ {
+ "id": "key_sanitize",
+ "keycode": "VK_DELETE",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Tools:Sanitize",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_screenshot",
+ "key": "",
+ "keycode": "",
+ "group": "mediaAndDisplay",
+ "l10nId": "zen-screenshot-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": "Browser:Screenshot",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_privatebrowsing",
+ "key": "p",
+ "keycode": null,
+ "group": "navigation",
+ "l10nId": "zen-private-browsing-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Tools:PrivateBrowsing",
+ "disabled": false,
+ "reserved": true,
+ "internal": false
+ },
+ {
+ "id": "key_switchTextDirection",
+ "key": "x",
+ "keycode": null,
+ "group": "mediaAndDisplay",
+ "l10nId": "zen-bidi-switch-direction-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_switchTextDirection",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_showAllTabs",
+ "keycode": "VK_TAB",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "key": "",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-full-zoom-reset-shortcut-alt",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_fullZoomReset",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_fullZoomReset",
+ "key": "0",
+ "keycode": null,
+ "group": "mediaAndDisplay",
+ "l10nId": "zen-full-zoom-reset-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_fullZoomReset",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "key": "",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-full-zoom-enlarge-shortcut-alt2",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_fullZoomEnlarge",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "key": "=",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-full-zoom-enlarge-shortcut-alt",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_fullZoomEnlarge",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_fullZoomEnlarge",
+ "key": "+",
+ "keycode": null,
+ "group": "mediaAndDisplay",
+ "l10nId": "zen-full-zoom-enlarge-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_fullZoomEnlarge",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "key": "",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-full-zoom-reduce-shortcut-alt-b",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_fullZoomReduce",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "key": "_",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-full-zoom-reduce-shortcut-alt-a",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_fullZoomReduce",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_fullZoomReduce",
+ "key": "-",
+ "keycode": null,
+ "group": "mediaAndDisplay",
+ "l10nId": "zen-full-zoom-reduce-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_fullZoomReduce",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_gotoHistory",
+ "key": "",
+ "keycode": "",
+ "group": "navigation",
+ "l10nId": "zen-history-sidebar-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "toggleSidebarKb",
+ "key": "z",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-toggle-sidebar-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "viewGenaiChatSidebarKb",
+ "key": "x",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-ai-chatbot-sidebar-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_stop",
+ "key": "",
+ "keycode": "",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": "Browser:Stop",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "viewBookmarksToolbarKb",
+ "key": "",
+ "keycode": "",
+ "group": "other",
+ "l10nId": "zen-bookmark-show-toolbar-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "viewBookmarksSidebarKb",
+ "key": "b",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-bookmark-show-sidebar-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "manBookmarkKb",
+ "key": "o",
+ "keycode": null,
+ "group": "historyAndBookmarks",
+ "l10nId": "zen-bookmark-show-library-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:ShowAllBookmarks",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "bookmarkAllTabsKb",
+ "key": "",
+ "keycode": "",
+ "group": "historyAndBookmarks",
+ "l10nId": "zen-bookmark-this-page-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "addBookmarkAsKb",
+ "key": "d",
+ "keycode": null,
+ "group": "historyAndBookmarks",
+ "l10nId": "zen-bookmark-this-page-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:AddBookmarkAs",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "keycode": "VK_F3",
+ "group": "other",
+ "l10nId": "zen-search-find-again-shortcut-prev",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_findPrevious",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "keycode": "VK_F3",
+ "group": "other",
+ "l10nId": "zen-search-find-again-shortcut-alt",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_findAgain",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_findPrevious",
+ "key": "g",
+ "keycode": null,
+ "group": "searchAndFind",
+ "l10nId": "zen-search-find-again-shortcut-prev",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_findPrevious",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_findAgain",
+ "key": "g",
+ "keycode": null,
+ "group": "searchAndFind",
+ "l10nId": "zen-search-find-again-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_findAgain",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_find",
+ "key": "f",
+ "keycode": null,
+ "group": "searchAndFind",
+ "l10nId": "zen-find-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_find",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_viewInfo",
+ "key": "i",
+ "keycode": null,
+ "group": "pageOperations",
+ "l10nId": "zen-page-info-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "View:PageInfo",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_viewSource",
+ "key": "u",
+ "keycode": null,
+ "group": "pageOperations",
+ "l10nId": "zen-page-source-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "View:PageSource",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_aboutProcesses",
+ "keycode": "VK_ESCAPE",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": false
+ },
+ "action": "View:AboutProcesses",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_reload_skip_cache",
+ "key": "r",
+ "keycode": null,
+ "group": "navigation",
+ "l10nId": "zen-nav-reload-shortcut-skip-cache",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:ReloadSkipCache",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_reload",
+ "key": "r",
+ "keycode": null,
+ "group": "navigation",
+ "l10nId": "zen-nav-reload-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:Reload",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "key": "}",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-picture-in-picture-toggle-shortcut-alt",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "View:PictureInPicture",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_togglePictureInPicture",
+ "key": "]",
+ "keycode": null,
+ "group": "pageOperations",
+ "l10nId": "zen-picture-in-picture-toggle-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "View:PictureInPicture",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_toggleReaderMode",
+ "key": "r",
+ "keycode": null,
+ "group": "pageOperations",
+ "l10nId": "zen-reader-mode-toggle-shortcut-other",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "View:ReaderView",
+ "disabled": true,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_exitFullScreen",
+ "keycode": "VK_F11",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "View:FullScreen",
+ "disabled": true,
+ "reserved": true,
+ "internal": false
+ },
+ {
+ "id": "key_enterFullScreen",
+ "keycode": "VK_F11",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "View:FullScreen",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_reload_skip_cache2",
+ "keycode": "VK_F5",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:ReloadSkipCache",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "showAllHistoryKb",
+ "key": "h",
+ "keycode": "",
+ "group": "historyAndBookmarks",
+ "l10nId": "zen-history-show-all-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:ShowAllHistory",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_reload2",
+ "keycode": "VK_F5",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "Browser:Reload",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "goHome",
+ "keycode": "VK_HOME",
+ "group": "navigation",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "goForwardKb2",
+ "key": "]",
+ "keycode": null,
+ "group": "navigation",
+ "l10nId": "zen-nav-fwd-shortcut-alt",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:Forward",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "goBackKb2",
+ "key": "[",
+ "keycode": null,
+ "group": "navigation",
+ "l10nId": "zen-nav-back-shortcut-alt",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:Back",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "goForwardKb",
+ "keycode": "VK_RIGHT",
+ "group": "navigation",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "Browser:Forward",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "goBackKb",
+ "keycode": "VK_LEFT",
+ "group": "navigation",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "Browser:Back",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "keycode": "VK_BACK",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_handleShiftBackspace",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": null,
+ "keycode": "VK_BACK",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_handleBackspace",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_selectAll",
+ "key": "a",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-text-action-select-all-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": true
+ },
+ {
+ "id": "key_delete",
+ "keycode": "VK_DELETE",
+ "group": "other",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_delete",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_paste",
+ "key": "v",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-text-action-paste-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": true
+ },
+ {
+ "id": "key_copy",
+ "key": "c",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-text-action-copy-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": true
+ },
+ {
+ "id": "key_cut",
+ "key": "x",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-text-action-cut-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": true
+ },
+ {
+ "id": "key_redo",
+ "key": "z",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-text-action-undo-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": true
+ },
+ {
+ "id": "key_undo",
+ "key": "z",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-text-action-undo-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": true
+ },
+ {
+ "id": "key_toggleMute",
+ "key": "m",
+ "keycode": null,
+ "group": "mediaAndDisplay",
+ "l10nId": "zen-mute-toggle-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_toggleMute",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_closeWindow",
+ "key": "w",
+ "keycode": null,
+ "group": "windowAndTabManagement",
+ "l10nId": "zen-close-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_closeWindow",
+ "disabled": false,
+ "reserved": true,
+ "internal": false
+ },
+ {
+ "id": "key_close",
+ "key": "w",
+ "keycode": null,
+ "group": "windowAndTabManagement",
+ "l10nId": "zen-close-tab-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_close",
+ "disabled": false,
+ "reserved": true,
+ "internal": false
+ },
+ {
+ "id": "printKb",
+ "key": "p",
+ "keycode": null,
+ "group": "pageOperations",
+ "l10nId": "zen-print-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_print",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_savePage",
+ "key": "s",
+ "keycode": null,
+ "group": "pageOperations",
+ "l10nId": "zen-save-page-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:SavePage",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "openFileKb",
+ "key": "",
+ "keycode": "",
+ "group": "other",
+ "l10nId": "zen-file-open-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": "Browser:OpenFile",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_openAddons",
+ "key": "",
+ "keycode": "",
+ "group": "other",
+ "l10nId": "zen-addons-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": "Tools:Addons",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_openDownloads",
+ "key": "y",
+ "keycode": null,
+ "group": "other",
+ "l10nId": "zen-downloads-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Tools:Downloads",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_search2",
+ "key": "j",
+ "keycode": null,
+ "group": "searchAndFind",
+ "l10nId": "zen-search-focus-shortcut-alt",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Tools:Search",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_search",
+ "key": "k",
+ "keycode": null,
+ "group": "searchAndFind",
+ "l10nId": "zen-search-focus-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Tools:Search",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "focusURLBar2",
+ "key": "d",
+ "keycode": null,
+ "group": "pageOperations",
+ "l10nId": "zen-location-open-shortcut-alt",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "Browser:OpenLocation",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "focusURLBar",
+ "key": "l",
+ "keycode": null,
+ "group": "pageOperations",
+ "l10nId": "zen-location-open-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "Browser:OpenLocation",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_newNavigatorTab",
+ "key": "t",
+ "keycode": null,
+ "group": "windowAndTabManagement",
+ "l10nId": "zen-tab-new-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_newNavigatorTabNoEvent",
+ "disabled": false,
+ "reserved": true,
+ "internal": false
+ },
+ {
+ "id": "key_newNavigator",
+ "key": "n",
+ "keycode": null,
+ "group": "windowAndTabManagement",
+ "l10nId": "zen-window-new-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_newNavigator",
+ "disabled": false,
+ "reserved": true,
+ "internal": false
+ },
+ {
+ "id": "zen-compact-mode-toggle",
+ "key": "b",
+ "keycode": "",
+ "group": "zen-compact-mode",
+ "l10nId": "zen-compact-mode-shortcut-toggle",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_toggleCompactModeIgnoreHover",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-compact-mode-show-sidebar",
+ "key": "s",
+ "keycode": "",
+ "group": "zen-compact-mode",
+ "l10nId": "zen-compact-mode-shortcut-show-sidebar",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenCompactModeShowSidebar",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-10",
+ "key": "",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-10",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_zenWorkspaceSwitch10",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-9",
+ "key": "",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-9",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_zenWorkspaceSwitch9",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-8",
+ "key": "",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-8",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_zenWorkspaceSwitch8",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-7",
+ "key": "",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-7",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_zenWorkspaceSwitch7",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-6",
+ "key": "",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-6",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_zenWorkspaceSwitch6",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-5",
+ "key": "",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-5",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_zenWorkspaceSwitch5",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-4",
+ "key": "l",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-4",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenWorkspaceSwitch4",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-3",
+ "key": "k",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-3",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenWorkspaceSwitch3",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-2",
+ "key": "j",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-2",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenWorkspaceSwitch2",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-switch-1",
+ "key": "h",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-switch-1",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenWorkspaceSwitch1",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-forward",
+ "key": "",
+ "keycode": "VK_RIGHT",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-forward",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenWorkspaceForward",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-workspace-backward",
+ "key": "",
+ "keycode": "VK_LEFT",
+ "group": "zen-workspace",
+ "l10nId": "zen-workspace-shortcut-backward",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenWorkspaceBackward",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-split-view-grid",
+ "key": "g",
+ "keycode": "",
+ "group": "zen-split-view",
+ "l10nId": "zen-split-view-shortcut-grid",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenSplitViewGrid",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-split-view-vertical",
+ "key": "v",
+ "keycode": "",
+ "group": "zen-split-view",
+ "l10nId": "zen-split-view-shortcut-vertical",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenSplitViewVertical",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-split-view-horizontal",
+ "key": "h",
+ "keycode": "",
+ "group": "zen-split-view",
+ "l10nId": "zen-split-view-shortcut-horizontal",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenSplitViewHorizontal",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-split-view-unsplit",
+ "key": "u",
+ "keycode": "",
+ "group": "zen-split-view",
+ "l10nId": "zen-split-view-shortcut-unsplit",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenSplitViewUnsplit",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-pinned-tab-reset-shortcut",
+ "key": "",
+ "keycode": "",
+ "group": "zen-other",
+ "l10nId": "zen-pinned-tab-shortcut-reset",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_zenPinnedTabReset",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-toggle-sidebar",
+ "key": "",
+ "keycode": "",
+ "group": "zen-other",
+ "l10nId": "zen-sidebar-shortcut-toggle",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": false
+ },
+ "action": "cmd_zenToggleSidebar",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-copy-url",
+ "key": "c",
+ "keycode": "",
+ "group": "zen-other",
+ "l10nId": "zen-text-action-copy-url-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenCopyCurrentURL",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-copy-url-markdown",
+ "key": "c",
+ "keycode": "",
+ "group": "zen-other",
+ "l10nId": "zen-text-action-copy-url-markdown-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenCopyCurrentURLMarkdown",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-toggle-pin-tab",
+ "key": "",
+ "keycode": "",
+ "group": "zen-other",
+ "l10nId": "zen-toggle-pin-tab-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": "cmd_zenTogglePinTab",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-glance-expand",
+ "key": "o",
+ "keycode": "",
+ "group": "zen-other",
+ "l10nId": "",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenGlanceExpand",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-new-empty-split-view",
+ "key": "*",
+ "keycode": "",
+ "group": "zen-split-view",
+ "l10nId": "zen-new-empty-split-view-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenNewEmptySplit",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-close-all-unpinned-tabs",
+ "key": "",
+ "keycode": "",
+ "group": "zen-workspace",
+ "l10nId": "zen-close-all-unpinned-tabs-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": "cmd_zenCloseUnpinnedTabs",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-new-unsynced-window",
+ "key": "n",
+ "keycode": "",
+ "group": "zen-other",
+ "l10nId": "zen-new-unsynced-window-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenNewNavigatorUnsynced",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_accessibility",
+ "keycode": "VK_F12",
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_dom",
+ "key": "w",
+ "keycode": null,
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_storage",
+ "keycode": "VK_F9",
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_performance",
+ "keycode": "VK_F5",
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_styleeditor",
+ "keycode": "VK_F7",
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_netmonitor",
+ "key": "e",
+ "keycode": null,
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_jsdebugger",
+ "key": "z",
+ "keycode": null,
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_webconsole",
+ "key": "",
+ "keycode": "",
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_inspector",
+ "key": "",
+ "keycode": "",
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_responsiveDesignMode",
+ "key": "m",
+ "keycode": null,
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_browserConsole",
+ "key": "",
+ "keycode": "",
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": false,
+ "meta": false
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_browserToolbox",
+ "key": "i",
+ "keycode": null,
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": true,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "key_toggleToolbox",
+ "key": "i",
+ "keycode": null,
+ "group": "devTools",
+ "l10nId": null,
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": null,
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ },
+ {
+ "id": "zen-new-unsynced-window",
+ "key": "n",
+ "keycode": "",
+ "group": "zen-other",
+ "l10nId": "zen-new-unsynced-window-shortcut",
+ "modifiers": {
+ "control": false,
+ "alt": false,
+ "shift": true,
+ "meta": false,
+ "accel": true
+ },
+ "action": "cmd_zenNewNavigatorUnsynced",
+ "disabled": false,
+ "reserved": false,
+ "internal": false
+ }
+ ]
+}
diff --git a/home/modules/ui.nix b/home/modules/ui.nix
index 30d1700..0fb4594 100644
--- a/home/modules/ui.nix
+++ b/home/modules/ui.nix
@@ -152,7 +152,18 @@ in
wireplumber = {
format = "{icon}";
format-muted = "";
- format-icons = [ "" "" "" "" "" "" "" "" "" "" ];
+ format-icons = [
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ];
node-type = "Audio/Sink";
max-volume = 100;
scroll-step = 5;
@@ -166,7 +177,18 @@ in
"wireplumber#source" = {
format = "{icon}";
format-muted = "";
- format-icons = [ "" "" "" "" "" "" "" "" "" "" ];
+ format-icons = [
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ""
+ ];
node-type = "Audio/Source";
max-volume = 100;
scroll-step = 5;
diff --git a/home/modules/vcs.nix b/home/modules/vcs.nix
index ed4dedd..a573fe1 100644
--- a/home/modules/vcs.nix
+++ b/home/modules/vcs.nix
@@ -170,7 +170,7 @@ in
services.gpg-agent = lib.mkIf hostConfig.isLinux {
enable = true;
- defaultCacheTtl = 3600;
+ defaultCacheTtl = 7200;
maxCacheTtl = 7200;
pinentry.package = pkgs.pinentry-curses;
};