mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 00:17:58 +01:00
update NEWS to mention the renaming of bookmark related commands and fix some
trivial help typos
This commit is contained in:
2
NEWS
2
NEWS
@@ -1,6 +1,8 @@
|
|||||||
<pre>
|
<pre>
|
||||||
2007-08-*:
|
2007-08-*:
|
||||||
* version 0.5
|
* version 0.5
|
||||||
|
* :bmarks and :history now use the multiline message window for output
|
||||||
|
* rename :bm, :bmadd, and :bmdel to :bmarks, :bmark, and :delbmarks respectively
|
||||||
* new :normal command
|
* new :normal command
|
||||||
* the command line keeps focus now, even when clicking outside of it
|
* the command line keeps focus now, even when clicking outside of it
|
||||||
* vimperator.events.feedkeys("2zi") support for scripts
|
* vimperator.events.feedkeys("2zi") support for scripts
|
||||||
|
|||||||
@@ -324,8 +324,8 @@ function Commands() //{{{
|
|||||||
{
|
{
|
||||||
usage: ["bmarks [filter]", "bmarks!"],
|
usage: ["bmarks [filter]", "bmarks!"],
|
||||||
short_help: "Show bookmarks",
|
short_help: "Show bookmarks",
|
||||||
help: "Open the message window at the bottom of the screen with all bookmarks which match <code class\"argument\">[filter]</code> either in the title or URL.<br/>" +
|
help: "Open the message window at the bottom of the screen with all bookmarks which match <code class=\"argument\">[filter]</code> either in the title or URL.<br/>" +
|
||||||
"The special version <code class=\"command\">:bmarks!</code> will open the default Firefox bookmarks window.</br>" +
|
"The special version <code class=\"command\">:bmarks!</code> will open the default Firefox bookmarks window.<br/>" +
|
||||||
"The following options WILL be interpreted in the future:<br/>" +
|
"The following options WILL be interpreted in the future:<br/>" +
|
||||||
" -T comma,separated,tag,list<br/>",
|
" -T comma,separated,tag,list<br/>",
|
||||||
completer: function(filter) { return vimperator.completion.get_bookmark_completions(filter); }
|
completer: function(filter) { return vimperator.completion.get_bookmark_completions(filter); }
|
||||||
@@ -568,7 +568,7 @@ function Commands() //{{{
|
|||||||
{
|
{
|
||||||
usage: ["hist[ory] [filter]", "history!"],
|
usage: ["hist[ory] [filter]", "history!"],
|
||||||
short_help: "Show recently visited URLs",
|
short_help: "Show recently visited URLs",
|
||||||
help: "Open the message window at the bottom of the screen with all history items which match <code class\"argument\">[filter]</code> either in the title or URL.<br/>" +
|
help: "Open the message window at the bottom of the screen with all history items which match <code class=\"argument\">[filter]</code> either in the title or URL.<br/>" +
|
||||||
"The special version <code class=\"command\">:history!</code> will open the default Firefox history window.",
|
"The special version <code class=\"command\">:history!</code> will open the default Firefox history window.",
|
||||||
completer: function(filter) { return vimperator.completion.get_history_completions(filter); }
|
completer: function(filter) { return vimperator.completion.get_history_completions(filter); }
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user