about summary refs log tree commit diff stats
path: root/src/kilo.c
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-11 17:32:50 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-11 17:32:50 -0800
commite7f33de81e9528bdf8e3700ebd3cf7e8d776f2c6 (patch)
treea6b38dba3b3441d3480254049413c38c69e78c09 /src/kilo.c
parentf6c7bf6fd096b2c03d09c68ae21f9e88595ed4be (diff)
downloadteliva-e7f33de81e9528bdf8e3700ebd3cf7e8d776f2c6.tar.gz
fix incorrect hotkey in menu
Diffstat (limited to 'src/kilo.c')
-rw-r--r--src/kilo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kilo.c b/src/kilo.c
index 0fdc899..dab7d96 100644
--- a/src/kilo.c
+++ b/src/kilo.c
@@ -942,8 +942,8 @@ void editorRefreshScreen(void) {
     }
     abAppend(&ab,"\x1b[0m ^g \x1b[7m go ",16);
     len +=               4  +       4;
-    abAppend(&ab,"\x1b[0m ^s \x1b[7m search ",20);
-    len +=               4  +       8;
+    abAppend(&ab,"\x1b[0m ^f \x1b[7m find ",18);
+    len +=               4  +       6;
     char rstatus[80];
     int rlen = snprintf(rstatus, sizeof(rstatus),
         "%d/%d",E.rowoff+E.cy+1,E.numrows);