Skip to content

Instantly share code, notes, and snippets.

@amekusa
Last active November 17, 2024 21:35
Show Gist options
  • Select an option

  • Save amekusa/7646367aeb23bf99c611ca9398e5a7e7 to your computer and use it in GitHub Desktop.

Select an option

Save amekusa/7646367aeb23bf99c611ca9398e5a7e7 to your computer and use it in GitHub Desktop.
Vimium C Settings
/* #ui */
.HM .LH {
/* hint box background */
background-color: #333d;
background-image: none;
/* hint box */
border: 1px solid DarkTurquoise;
border-radius: 4px;
box-shadow: -1px 2px 2px #0008;
/* hint label */
color: white;
font-weight: normal;
font-size: 13px;
font-family: Menlo, Consolas, monospace;
letter-spacing: 1px;
padding-left: 3px;
padding-right: 2px;
}
.MC, .MH {
/* hint label (highlighted) */
color: DarkTurquoise;
}
/* #omni */
#bar {
border-bottom: none;
}
{
"name": "Vimium C",
"@time": "11/18/2024, 6:07:00 AM",
"time": 1731877620313,
"environment": {
"extension": "1.99.997",
"platform": "mac",
"firefox": 115
},
"clipSub": [
"p=^git@([^/:]+):=https://$1/=",
"s@^https://(?:www\\.)?google\\.com(?:\\.[^/]+)?/url\\?(?:[^&#]+&)*?url=([^&#]+)@$1@,matched,decodecomp",
""
],
"extAllowList": [
"# extension id or hostname",
"extension@tabliss.io",
"54402bae-fc84-44fd-bc1b-901b4f3ad1df",
""
],
"grabBackFocus": true,
"keyLayout": 18,
"keyMappings": [
"#!no-check",
"# ctrl+a to escape",
"mapKey <c-a> <esc>",
"",
"# ctrl+i to disable/enable vimium-c",
"map <c-i> openUrl url=\"vimium://status/toggle-disable/^\\u0020<c-i>\"",
"",
"# show link-hints, open a link in a new tab (foreground) ",
"map F LinkHints.activateOpenInNewForegroundTab",
"",
"# show link-hints, open links in new tabs (background)",
"map <c-f> LinkHints.activateWithQueue",
"",
"# search in opened tabs",
"map t Vomnibar.activateTabs",
"",
"# prev/next tab",
"map <c-w> previousTab",
"map <c-r> nextTab",
"",
"# last visited tab",
"map T visitPreviousTab",
"",
"# new tab",
"map <c-t> createTab",
"",
"# remove tab",
"map <c-q> removeTab",
"",
"# sort tabs",
"map <c-s-t> sortTabs",
"",
"# scroll",
"map e scrollUp",
"map u scrollUp",
"map d scrollDown",
"map <c-e> scrollPageUp",
"map <c-u> scrollPageUp",
"map <c-d> scrollPageDown",
"",
"# hover",
"map gh LinkHints.activateHover",
"map gH LinkHints.unhoverLast",
"",
"# repeat last click",
"map . LinkHints.click direct=\"clicked\"",
"",
"# go back/forward",
"unmap zH",
"unmap zL",
"map z goBack",
"map Z goForward",
""
],
"keyupTime": 60,
"linkHintCharacters": "erwtq",
"newTabUrl": "moz-extension://54402bae-fc84-44fd-bc1b-901b4f3ad1df/index.html",
"nextPatterns": "next,more,newer,>,›,→,»,≫,>>",
"notifyUpdate": false,
"previousPatterns": "prev,previous,back,older,<,‹,←,«,≪,<<",
"searchEngines": "/g: https://www.google.com/search?hl=en&gl=US&pws=0&q=%s blank=https://www.google.com/ Google",
"searchUrl": "https://www.google.com/search?hl=en&gl=US&pws=0&q=$s Google",
"showActionIcon": false,
"userDefinedCss": [
"/* #ui */",
".HM .LH {",
" /* hint box background */",
" background-color: #333d;",
" background-image: none;",
"",
" /* hint box */",
" border: 1px solid DarkTurquoise;",
" border-radius: 4px;",
" box-shadow: -1px 2px 2px #0008;",
"",
" /* hint label */",
" color: white;",
" font-weight: normal;",
" font-size: 13px;",
" font-family: Menlo, Consolas, monospace;",
" letter-spacing: 1px;",
" padding-left: 3px;",
" padding-right: 2px;",
"}",
".MC, .MH {",
" /* hint label (highlighted) */",
" color: DarkTurquoise;",
"}",
"",
"/* #omni */",
"#bar {",
" border-bottom: none;",
"}",
""
],
"vimSync": false,
"waitForEnter": false,
"ignoreCapsLock": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment