89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
-
+
-
+
|
["scrollDown", "scrollUp", "scrollLeft", "scrollRight",
"scrollToTop", "scrollToBottom", "scrollToLeft", "scrollToRight", "scrollPageDown",
"scrollPageUp", "scrollFullPageUp", "scrollFullPageDown",
"reload", "toggleViewSource", "copyCurrentUrl", "LinkHints.activateModeToCopyLinkUrl",
"openCopiedUrlInCurrentTab", "openCopiedUrlInNewTab", "goUp", "goToRoot",
"enterInsertMode", "focusInput",
"LinkHints.activateMode", "LinkHints.activateModeToOpenInNewTab", "LinkHints.activateModeWithQueue",
"Vomnibar.activate", "Vomnibar.activateInNewTab", "Vomnibar.activateTabSelection",
"Vomnibar.activate", "Vomnibar.activateInitial", "Vomnibar.activateInNewTab", "Vomnibar.activateInNewTabInitial", "Vomnibar.activateTabSelection",
"Vomnibar.activateBookmarks", "Vomnibar.activateBookmarksInNewTab",
"goPrevious", "goNext", "nextFrame", "Marks.activateCreateMode", "Marks.activateGotoMode"]
findCommands: ["enterFindMode", "performFind", "performBackwardsFind"]
historyNavigation:
["goBack", "goForward"]
tabManipulation:
["nextTab", "previousTab", "firstTab", "lastTab", "createTab", "duplicateTab", "removeTab", "restoreTab"]
["nextTab", "previousTab", "firstTab", "lastTab", "createTab", "createTabHome", "duplicateTab", "backRemoveTab", "removeTab", "restoreTab"]
misc:
["showHelp"]
# Rarely used commands are not shown by default in the help dialog or in the README. The goal is to present
# a focused, high-signal set of commands to the new and casual user. Only those truly hungry for more power
# from Vimium will uncover these gems.
advancedCommands: [
|
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
|
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
|
+
+
+
+
|
# Manipulating tabs
nextTab: ["Go one tab right", { background: true }]
previousTab: ["Go one tab left", { background: true }]
firstTab: ["Go to the first tab", { background: true }]
lastTab: ["Go to the last tab", { background: true }]
createTab: ["Create new tab", { background: true }]
createTabHome: ["Open new tab with home page", { background: true }]
duplicateTab: ["Duplicate current tab", { background: true }]
removeTab: ["Close current tab", { background: true, noRepeat: true }]
backRemoveTab: ["Close current tab and move back", { background: true, noRepeat: true }]
restoreTab: ["Restore closed tab", { background: true }]
moveTabToNewWindow: ["Move tab to new window", { background: true }]
"Vomnibar.activate": ["Open URL, bookmark, or history entry"]
"Vomnibar.activateInitial": ["Open URL, bookmark, or history entry, with initial content"]
"Vomnibar.activateInNewTab": ["Open URL, bookmark, history entry, in a new tab"]
"Vomnibar.activateInNewTabInitial": ["Open URL, bookmark, history entry, in a new tab, with initial content"]
"Vomnibar.activateTabSelection": ["Search through your open tabs"]
"Vomnibar.activateBookmarks": ["Open a bookmark"]
"Vomnibar.activateBookmarksInNewTab": ["Open a bookmark in a new tab"]
nextFrame: ["Cycle forward to the next frame on the page", { background: true, passCountToFunction: true }]
"Marks.activateCreateMode": ["Create a new mark"]
"Marks.activateGotoMode": ["Go to a mark"]
Commands.init()
root = exports ? window
root.Commands = Commands
|