diff --git a/common/content/hints.js b/common/content/hints.js index da045ed0..fdbb2e9a 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -52,7 +52,7 @@ var HintSession = Class("HintSession", CommandMode, { } else if (this.validHints.length == 1 && !this.continue) this.process(false); - else // Ticket #185 + else this.checkUnique(); }, diff --git a/common/content/marks.js b/common/content/marks.js index 1cb3e957..8e563283 100644 --- a/common/content/marks.js +++ b/common/content/marks.js @@ -270,7 +270,6 @@ var Marks = Module("marks", { completion.mark = function mark(context) { function percent(i) Math.round(i * 100); - // FIXME: Line/Column doesn't make sense with % context.title = ["Mark", "HPos VPos File"]; context.keys.description = function ([, m]) percent(m.position.x) + "% " + percent(m.position.y) + "% " + m.location; context.completions = marks.all; diff --git a/common/modules/io.jsm b/common/modules/io.jsm index 29d54d41..c265eea2 100644 --- a/common/modules/io.jsm +++ b/common/modules/io.jsm @@ -570,7 +570,6 @@ var IO = Module("io", { // go directly to an absolute path or look for a relative path // match in 'cdpath' - // TODO: handle ../ and ./ paths if (File.isAbsolutePath(arg)) { io.cwd = arg; dactyl.echomsg(io.cwd.path); @@ -788,7 +787,7 @@ unlet s:cpo_save else modules.commandline.commandOutput( template.tabular(["", "Filename"], ["text-align: right; padding-right: 1em;"], - ([i + 1, file] for ([i, file] in Iterator(io._scriptNames))))); // TODO: add colon and remove column titles for pedantic Vim compatibility? + ([i + 1, file] for ([i, file] in Iterator(io._scriptNames))))); }, { argCount: "0" });