From 23ac83c26e41c22a3d1eda7f1080600f7d4ab58c Mon Sep 17 00:00:00 2001 From: tick Date: Mon, 15 Apr 2019 00:09:18 +0200 Subject: [PATCH] Fixed help text for visual seek ('o' ->'g') (#13748) --- libr/core/visual.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libr/core/visual.c b/libr/core/visual.c index 1b55a301de..c83eb6ac99 100644 --- a/libr/core/visual.c +++ b/libr/core/visual.c @@ -275,7 +275,7 @@ static const char *help_msg_visual[] = { "I", "insert hexpair block ", "mK/'K", "mark/go to Key (any key)", "n/N", "seek next/prev function/flag/hit (scr.nkey)", - "g", "go/seek to given offset (o[g/G] to seek begin/end of file)", + "g", "go/seek to given offset (g[g/G] to seek begin/end of file)", "O", "toggle asm.pseudo and asm.esil", "p/P", "rotate print modes (hex, disasm, debug, words, buf)", "q", "back to radare shell", @@ -571,7 +571,7 @@ repeat: case 'm': r_strbuf_appendf (p, "Visual Moving Around:\n\n"); r_strbuf_appendf (p, - " o type flag/offset/register name to seek\n" + " g type flag/offset/register name to seek\n" " hl seek to the next/previous byte\n" " jk seek to the next row (core.offset += hex.cols)\n" " JK seek one page down\n"