apply patch st-meta-vim-full-20210425-43a395a-8.4.patch

This commit is contained in:
2026-01-22 06:23:33 +01:00
parent 6e97047474
commit 6d00916036
9 changed files with 559 additions and 179 deletions

8
normalMode.h Normal file
View File

@@ -0,0 +1,8 @@
void normalMode();
void historyPreDraw();
void historyOverlay(int x, int y, Glyph* g);
void historyModeToggle(int start);
void historyOpToggle(int, int);
typedef enum {failed=0, success=1, exitMotion=2, exitOp=3, finish=4} ExitState;
ExitState kPressHist(char const *txt, size_t len, int ctrl, KeySym const *kSym);
ExitState pressKeys(char const* s, size_t e);