1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 14:27:59 +01:00

Fix part of #110.

Fix #110 (;b and ;t don't respond to 'activate'. Behavior spec'd in
:help is unclear).

I've fixed the inverted ;b/;t behaviour (the bug), closed the ticket,
and added 'activate' support as a TODO.
This commit is contained in:
Doug Kearns
2008-12-31 12:50:06 +11:00
parent 6e6b601a42
commit f878307b34
3 changed files with 6 additions and 2 deletions

View File

@@ -1121,7 +1121,7 @@ function Buffer() //{{{
case liberator.NEW_TAB: case liberator.NEW_TAB:
case liberator.NEW_BACKGROUND_TAB: case liberator.NEW_BACKGROUND_TAB:
ctrlKey = true; ctrlKey = true;
shiftKey = (where == liberator.NEW_BACKGROUND_TAB); shiftKey = (where != liberator.NEW_BACKGROUND_TAB);
break; break;
case liberator.NEW_WINDOW: case liberator.NEW_WINDOW:
shiftKey = true; shiftKey = true;

View File

@@ -33,6 +33,7 @@ FEATURES:
9 adaptive timeout for auto-completions, :set completions can be updated more often than 9 adaptive timeout for auto-completions, :set completions can be updated more often than
:open foo :open foo
9 use the storage module for autocommands 9 use the storage module for autocommands
8 support 'activate' in buffer.followLink?
8 add support for filename special characters such as % 8 add support for filename special characters such as %
8 :redir and 'verbosefile' 8 :redir and 'verbosefile'
8 middleclick in content == p, and if command line is open, paste there the clipboard buffer 8 middleclick in content == p, and if command line is open, paste there the clipboard buffer

View File

@@ -46,7 +46,7 @@ this hint mode. Then press [a]24[a] to copy the hint location.
* [m]s[m] to save its destination * [m]s[m] to save its destination
* [m]o[m] to open its location in the current tab * [m]o[m] to open its location in the current tab
* [m]t[m] to open its location in a new tab * [m]t[m] to open its location in a new tab
* [m]b[m] like [m]t[m] but inverts the option whether the tab is activated * [m]b[m] to open its location in a new background tab
* [m]O[m] to open its location in an [c]:open[c] query * [m]O[m] to open its location in an [c]:open[c] query
* [m]T[m] to open its location in a [c]:tabopen[c] query * [m]T[m] to open its location in a [c]:tabopen[c] query
* [m]v[m] to view its destination source * [m]v[m] to view its destination source
@@ -57,6 +57,9 @@ this hint mode. Then press [a]24[a] to copy the hint location.
Hintable elements for all extended hint modes can be set in the Hintable elements for all extended hint modes can be set in the
'extendedhinttags' XPath string. 'extendedhinttags' XPath string.
Note: the behavior of [m];t[m] and [m];b[m] is inverted if the
\'browser.tabs.loadInBackground' preference is set to false.
________________________________________________________________________________ ________________________________________________________________________________
// vim: set syntax=asciidoc: // vim: set syntax=asciidoc: