1
0
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:
Martin Stubenschrott
2007-10-16 13:27:28 +00:00
parent 9fbdfcedc2
commit 329df9b7cd
2 changed files with 14 additions and 9 deletions

View File

@@ -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>";