mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-04-16 07:33:32 +02:00
Document ;V in :help and in completion.
This commit is contained in:
@@ -72,7 +72,7 @@ function Hints() //{{{
|
|||||||
t: Mode("Follow hint in a new tab", function (elem) buffer.followLink(elem, liberator.NEW_TAB)),
|
t: Mode("Follow hint in a new tab", function (elem) buffer.followLink(elem, liberator.NEW_TAB)),
|
||||||
b: Mode("Follow hint in a background tab", function (elem) buffer.followLink(elem, liberator.NEW_BACKGROUND_TAB)),
|
b: Mode("Follow hint in a background tab", function (elem) buffer.followLink(elem, liberator.NEW_BACKGROUND_TAB)),
|
||||||
v: Mode("View hint source", function (elem, loc) buffer.viewSource(loc, false), extended),
|
v: Mode("View hint source", function (elem, loc) buffer.viewSource(loc, false), extended),
|
||||||
V: Mode("View hint source", function (elem, loc) buffer.viewSource(loc, true), extended),
|
V: Mode("View hint source in external editor", function (elem, loc) buffer.viewSource(loc, true), extended),
|
||||||
w: Mode("Follow hint in a new window", function (elem) buffer.followLink(elem, liberator.NEW_WINDOW), extended),
|
w: Mode("Follow hint in a new window", function (elem) buffer.followLink(elem, liberator.NEW_WINDOW), extended),
|
||||||
|
|
||||||
"?": Mode("Show information for hint", function (elem) buffer.showElementInfo(elem), extended),
|
"?": Mode("Show information for hint", function (elem) buffer.showElementInfo(elem), extended),
|
||||||
|
|||||||
@@ -72,6 +72,9 @@ this hint mode. Then press [a]24[a] to copy the hint location.
|
|||||||
|;v|
|
|;v|
|
||||||
* [m]v[m] to view its destination source
|
* [m]v[m] to view its destination source
|
||||||
|
|
||||||
|
|;V|
|
||||||
|
* [m]V[m] to view its destination source in the external editor
|
||||||
|
|
||||||
|;w|
|
|;w|
|
||||||
* [m]w[m] to open its destination in a new window
|
* [m]w[m] to open its destination in a new window
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user