From 47d351e44b8660db05884bce9926e070fa9d435a Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Tue, 9 Oct 2007 06:40:41 +0000 Subject: [PATCH] update / and ? help for changed 'linksearch' modifiers --- content/mappings.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/mappings.js b/content/mappings.js index 0765b9c1..fc5d7ca5 100644 --- a/content/mappings.js +++ b/content/mappings.js @@ -953,8 +953,8 @@ function Mappings() //{{{ help: "Search forward for the first occurance of {pattern}.
" + "When \"\\c\" appears anywhere in the pattern the whole pattern is handled as though 'ignorecase' is on. " + "\"\\C\" forces case-sensitive matching for the whole pattern.
" + - "If \"\\u\" appears in the pattern only the text of links is searched for a match as though 'linksearch' is on. " + - "\"\\U\" forces the entire page to be searched for a match." + "If \"\\l\" appears in the pattern only the text of links is searched for a match as though 'linksearch' is on. " + + "\"\\L\" forces the entire page to be searched for a match." } )); addDefaultMap(new Map(vimperator.modes.NORMAL, ["?"], @@ -965,8 +965,8 @@ function Mappings() //{{{ help: "Search backward for the first occurance of {pattern}.
" + "When \"\\c\" appears anywhere in the pattern the whole pattern is handled as though 'ignorecase' is on. " + "\"\\C\" forces case-sensitive matching for the whole pattern.
" + - "If \"\\u\" appears in the pattern only the text of links is searched for a match as though 'linksearch' is on. " + - "\"\\U\" forces the entire page to be searched for a match.
" + + "If \"\\l\" appears in the pattern only the text of links is searched for a match as though 'linksearch' is on. " + + "\"\\L\" forces the entire page to be searched for a match.
" + "NOTE: incremental searching currently only works in the forward direction." } ));