Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
312 B

  1. void normalMode();
  2. void historyPreDraw();
  3. void historyOverlay(int x, int y, Glyph* g);
  4. void historyModeToggle(int start);
  5. /// Handles keys in normal mode.
  6. typedef enum {failed=0, succ=1, exitMotion=2, exitOp=3, finished=4} ExitState;
  7. ExitState kpressHist(char const *txt, int len, int ctrl, KeySym const *kSym);