From e4b3f111f26cfb3d7fdcbc680ea144a9ff309a6e Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Tue, 9 Oct 2007 06:40:17 +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 67d37eb1..85415641 100644 --- a/content/mappings.js +++ b/content/mappings.js @@ -1050,8 +1050,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], ["?"], @@ -1062,8 +1062,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." } ));