1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 15:04:11 +01:00

document that incremental searching doesn't search backwards when using ?

This commit is contained in:
Doug Kearns
2007-09-05 12:19:33 +00:00
parent 70b88d5615
commit 71114e5f19
3 changed files with 4 additions and 4 deletions

View File

@@ -955,7 +955,8 @@ function Mappings() //{{{
usage: ["?{pattern}[?]<CR>"],
help: "Search backward for the first occurance of <code class=\"argument\">{pattern}</code>.<br/>" +
"When '\\c' appears anywhere in the pattern the whole pattern is handled as though <code class=\"option\">'ignorecase'</code> is on. " +
"'\\C' forces case-sensitive matching for the whole pattern."
"'\\C' forces case-sensitive matching for the whole pattern.<br/>" +
"NOTE: incremental searching currenly only works in the forward direction."
}
));
addDefaultMap(new Map(vimperator.modes.NORMAL, ["n"],

View File

@@ -441,6 +441,7 @@ function Options() //{{{
addOption(new Option(["incsearch", "is"], "boolean",
{
short_help: "Show where the search pattern matches as it is typed",
help: "NOTE: Incremental searching currently only works in the forward direction.",
default_value: true
}
));