mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-23 19:22:25 +01:00
Show the folder icon in path completions
This commit is contained in:
@@ -1238,7 +1238,8 @@ function Completion() //{{{
|
|||||||
return files.map(
|
return files.map(
|
||||||
function (file) [(tail ? file.leafName : dir + file.leafName).replace(" ", "\\ ", "g"),
|
function (file) [(tail ? file.leafName : dir + file.leafName).replace(" ", "\\ ", "g"),
|
||||||
file.isDirectory() ? "Directory" : "File",
|
file.isDirectory() ? "Directory" : "File",
|
||||||
"moz-icon://" + makeFileURI(file).path]
|
file.isDirectory() ? "resource://gre/res/html/folder.png"
|
||||||
|
: "moz-icon://" + makeFileURI(file).path]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
catch (e) {}
|
catch (e) {}
|
||||||
|
|||||||
Reference in New Issue
Block a user