1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-23 13:22:28 +01:00

Bunch more completion stuff. Add more/less indicators to completion listint.

This commit is contained in:
Kris Maglione
2008-11-26 03:22:13 +00:00
parent 2a3081f03f
commit f1a6bcc671
12 changed files with 290 additions and 317 deletions

View File

@@ -513,7 +513,7 @@ function Buffer() //{{{
stylesheetSwitchAll(window.content, args);
},
{
completer: function (context) completion.alternateStylesheet(context.filter),
completer: function (context) completion.alternateStylesheet(context),
literal: true
});
@@ -790,11 +790,9 @@ function Buffer() //{{{
{
var stylesheets = getAllStyleSheets(window.content);
stylesheets = stylesheets.filter(
return stylesheets.filter(
function (stylesheet) /^(screen|all|)$/i.test(stylesheet.media.mediaText) && !/^\s*$/.test(stylesheet.title)
);
return stylesheets;
},
get pageInfo() pageInfo,