1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-05 09:24:10 +01:00

changed gO to gn

This commit is contained in:
Martin Stubenschrott
2007-06-30 13:14:28 +00:00
parent 6f37afec74
commit aa6c8b8a40
2 changed files with 12 additions and 7 deletions

View File

@@ -1,10 +1,13 @@
<pre> <pre>
2007-05-02: 2007-07-02:
* version ??? * version ???
* QuickMarks support (new commands :qmarks/:qmarkadd/:qmarkdel and
mappings go{a-z}, gn{a-z} and M{a-z}
* Multiline echo support
* Command line is now cleared on most redraws like in vim * Command line is now cleared on most redraws like in vim
* The RSS feed button in the address bar works again * The RSS feed button in the address bar works again
* reload/stop buttons update enabled state again * reload/stop buttons update enabled state again
* added marks support (thanks Viktor Kojouharov) * added local/url marks support (thanks Viktor Kojouharov)
* temporary shortcut Y to yank current selection (for non UNIX-users) * temporary shortcut Y to yank current selection (for non UNIX-users)
* Flashing frame with ]f now works as expected * Flashing frame with ]f now works as expected
* many help fixes (most of them by Doug Kearns) * many help fixes (most of them by Doug Kearns)

View File

@@ -261,16 +261,17 @@ function Mappings() //{{{
{ {
short_help: "Jump to a QuickMark in the current buffer", short_help: "Jump to a QuickMark in the current buffer",
usage: ["go{a-zA-Z0-9}"], usage: ["go{a-zA-Z0-9}"],
help: "TODO", help: "Open any QuickMark in the current buffer. You can mark any URLs with <code class=\"mapping\">M{a-zA-Z0-9}</code>. " +
"These QuickMarks are persistent across browser session.",
flags: Mappings.flags.ARGUMENT flags: Mappings.flags.ARGUMENT
} }
)); ));
addDefaultMap(new Map(vimperator.modes.NORMAL, ["gO"], addDefaultMap(new Map(vimperator.modes.NORMAL, ["gn"],
function (mark) { vimperator.quickmarks.jumpTo(mark, true) }, function (mark) { vimperator.quickmarks.jumpTo(mark, true) },
{ {
short_help: "Jump to a QuickMark in a new buffer", short_help: "Jump to a QuickMark in a new buffer",
usage: ["gO{a-zA-Z0-9}"], usage: ["gn{a-zA-Z0-9}"],
help: "TODO", help: "Mnemonic: Go in a new buffer. <code class=\"mapping\">gt</code> would make more sense but is already taken.",
flags: Mappings.flags.ARGUMENT flags: Mappings.flags.ARGUMENT
} }
)); ));
@@ -311,7 +312,8 @@ function Mappings() //{{{
{ {
short_help: "Add new QuickMark for current URL", short_help: "Add new QuickMark for current URL",
usage: ["M{a-zA-Z0-9}"], usage: ["M{a-zA-Z0-9}"],
help: "TODO.", help: "You can go to a marked url in the current tab with <code class=\"mapping\">go{a-zA-Z0-9}</code> or in a new tab with <code class=\"mapping\">gn{a-zA-Z0-9}</code>." +
"These QuickMarks are persistent across browser session.",
flags: Mappings.flags.ARGUMENT flags: Mappings.flags.ARGUMENT
} }
)); ));