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

Cleanup io.js with relation to path separators

This commit is contained in:
Kris Maglione
2008-12-24 13:22:54 -05:00
parent 782a28f47a
commit 313136a1f8
2 changed files with 15 additions and 20 deletions

View File

@@ -1393,7 +1393,7 @@ function Completion() //{{{
// TODO: use path for the description?
io.getRuntimeDirectories("colors").forEach(function (dir) {
context.fork(dir.path, 0, null, function (context) {
context.filter = dir.path + io.pathSeparator + context.filter;
context.filter = dir.path + IO.PATH_SEP + context.filter;
completion.file(context);
context.title = ["Color Scheme"];
context.quote = ["", function (text) text.replace(/\.vimp$/, ""), ""];