mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 15:48:00 +01:00
* b is now :buffer! with !
* show mode again on tabchange * temporary :command without real function, sorry for the commit ;)
This commit is contained in:
1
NEWS
1
NEWS
@@ -2,6 +2,7 @@
|
|||||||
2007-xx-xx:
|
2007-xx-xx:
|
||||||
* version 0.6
|
* version 0.6
|
||||||
* THIS VERSION ONLY WORKS WITH FIREFOX 3.0
|
* THIS VERSION ONLY WORKS WITH FIREFOX 3.0
|
||||||
|
* b calles :buffer! now instead of :buffer
|
||||||
* added full zoom, and changed keybindings slightly for text zoom
|
* added full zoom, and changed keybindings slightly for text zoom
|
||||||
* :buffer partial_string works now as in vim, and with ! even better
|
* :buffer partial_string works now as in vim, and with ! even better
|
||||||
* improvements for scrollable -- more -- prompt
|
* improvements for scrollable -- more -- prompt
|
||||||
|
|||||||
@@ -430,6 +430,16 @@ function Commands() //{{{
|
|||||||
completer: function(filter) { return vimperator.completion.get_bookmark_completions(filter); }
|
completer: function(filter) { return vimperator.completion.get_bookmark_completions(filter); }
|
||||||
}
|
}
|
||||||
));
|
));
|
||||||
|
addDefaultCommand(new Command(["com[mand]"],
|
||||||
|
function(args)
|
||||||
|
{
|
||||||
|
vimperator.echo(vimperator.util.colorize(window.argParser(args)));
|
||||||
|
},
|
||||||
|
{
|
||||||
|
short_help: "Temporarily used for testing args parser",
|
||||||
|
help: ""
|
||||||
|
}
|
||||||
|
));
|
||||||
addDefaultCommand(new Command(["delm[arks]"],
|
addDefaultCommand(new Command(["delm[arks]"],
|
||||||
function(args, special)
|
function(args, special)
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ function Events() //{{{
|
|||||||
}, false);
|
}, false);
|
||||||
tabcontainer.addEventListener("TabSelect", function(event) {
|
tabcontainer.addEventListener("TabSelect", function(event) {
|
||||||
vimperator.commandline.clear();
|
vimperator.commandline.clear();
|
||||||
|
vimperator.modes.show();
|
||||||
vimperator.statusline.updateTabCount();
|
vimperator.statusline.updateTabCount();
|
||||||
vimperator.buffer.updateBufferList();
|
vimperator.buffer.updateBufferList();
|
||||||
vimperator.tabs.updateSelectionHistory();
|
vimperator.tabs.updateSelectionHistory();
|
||||||
|
|||||||
@@ -405,7 +405,7 @@ function Mappings() //{{{
|
|||||||
}
|
}
|
||||||
));
|
));
|
||||||
addDefaultMap(new Map([vimperator.modes.NORMAL], ["b"],
|
addDefaultMap(new Map([vimperator.modes.NORMAL], ["b"],
|
||||||
function() { vimperator.commandline.open(":", "buffer ", vimperator.modes.EX); },
|
function() { vimperator.commandline.open(":", "buffer! ", vimperator.modes.EX); },
|
||||||
{
|
{
|
||||||
short_help: "Open a prompt to switch buffers",
|
short_help: "Open a prompt to switch buffers",
|
||||||
help: "Typing the corresponding number switches to this buffer."
|
help: "Typing the corresponding number switches to this buffer."
|
||||||
|
|||||||
Reference in New Issue
Block a user