diff --git a/NEWS b/NEWS index 0ab14242..d50bbfbe 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@
2007-08-*:
* 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
* the command line keeps focus now, even when clicking outside of it
* vimperator.events.feedkeys("2zi") support for scripts
diff --git a/chrome/content/vimperator/commands.js b/chrome/content/vimperator/commands.js
index b30eea97..1e666a4c 100644
--- a/chrome/content/vimperator/commands.js
+++ b/chrome/content/vimperator/commands.js
@@ -324,8 +324,8 @@ function Commands() //{{{
{
usage: ["bmarks [filter]", "bmarks!"],
short_help: "Show bookmarks",
- help: "Open the message window at the bottom of the screen with all bookmarks which match [filter] either in the title or URL.
" +
- "The special version :bmarks! will open the default Firefox bookmarks window." +
+ help: "Open the message window at the bottom of the screen with all bookmarks which match [filter] either in the title or URL.
" +
+ "The special version :bmarks! will open the default Firefox bookmarks window.
" +
"The following options WILL be interpreted in the future:
" +
" -T comma,separated,tag,list
",
completer: function(filter) { return vimperator.completion.get_bookmark_completions(filter); }
@@ -568,7 +568,7 @@ function Commands() //{{{
{
usage: ["hist[ory] [filter]", "history!"],
short_help: "Show recently visited URLs",
- help: "Open the message window at the bottom of the screen with all history items which match [filter] either in the title or URL.
" +
+ help: "Open the message window at the bottom of the screen with all history items which match [filter] either in the title or URL.
" +
"The special version :history! will open the default Firefox history window.",
completer: function(filter) { return vimperator.completion.get_history_completions(filter); }
}