From d70054657003c46ea79507795f000c61840dbac4 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 16 Aug 2007 11:21:57 +0000 Subject: [PATCH] replace '<' and '>' with HTML entities in help for n and N mappings --- chrome/content/vimperator/mappings.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/vimperator/mappings.js b/chrome/content/vimperator/mappings.js index 7bd6fd03..7bb60058 100644 --- a/chrome/content/vimperator/mappings.js +++ b/chrome/content/vimperator/mappings.js @@ -951,7 +951,7 @@ function Mappings() //{{{ { short_help: "Find next", help: "Repeat the last \"g/\" 1 time (until count is supported).
" + - "NOTE: As \"g/\" is a little broken right now, use to go to the next search item of the \"/\" search for now." + "NOTE: As \"g/\" is a little broken right now, use <F3> to go to the next search item of the \"/\" search for now." } )); addDefaultMap(new Map(vimperator.modes.NORMAL, ["N"], @@ -959,7 +959,7 @@ function Mappings() //{{{ { short_help: "Find previous", help: "Repeat the last \"g/\" 1 time (until count is supported) in the opposite direction.
" + - "NOTE: As \"g/\" is a little broken right now, use to go to the previous search item of the \"/\" search for now." + "NOTE: As \"g/\" is a little broken right now, use <S-F3> to go to the previous search item of the \"/\" search for now." } ));