fix incorrect hotkey in menu

This commit is contained in:
Kartik K. Agaram 2021-11-11 17:32:50 -08:00
parent f6c7bf6fd0
commit e7f33de81e
1 changed files with 2 additions and 2 deletions

View File

@ -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);