mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 14:27:58 +01:00
* only switch tabs when clicking the URL in :ls, to make it easier to select text
* allow ctrl-(shift-)-clicks to select cells in the MOW
This commit is contained in:
@@ -209,7 +209,6 @@ function Buffer() //{{{
|
||||
return selection;
|
||||
}
|
||||
|
||||
// TODO: move to v.buffers.list()
|
||||
this.list = function(fullmode)
|
||||
{
|
||||
if (fullmode)
|
||||
@@ -247,9 +246,9 @@ function Buffer() //{{{
|
||||
url = vimperator.util.escapeHTML(url);
|
||||
title = vimperator.util.escapeHTML(title);
|
||||
|
||||
list += "<tr class=\"buffer-list\"><td align=\"right\"> " + number + "</td><td>" + indicator +
|
||||
list += "<tr><td align=\"right\"> " + number + "</td><td>" + indicator +
|
||||
"</td><td style=\"width: 250px; max-width: 500px; overflow: hidden;\">" + title +
|
||||
"</td><td class=\"hl-URL\">" + url + "</td></tr>";
|
||||
"</td><td class=\"hl-URL buffer-list\">" + url + "</td></tr>";
|
||||
}
|
||||
list += "</table>";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user