st

Kris's build of st
git clone git clone https://git.krisyotam.com/krisyotam/st.git
Log | Files | Refs | README | LICENSE

keyboardselect_reflow_x.c (364B)


      1 void keyboard_select(const Arg *dummy)
      2 {
      3     win.mode ^= kbds_keyboardhandler(-1, NULL, 0, 0);
      4 }
      5 
      6 void searchforward(const Arg *)
      7 {
      8     win.mode ^= kbds_keyboardhandler(-1, NULL, 0, 0);
      9     kbds_keyboardhandler(-2, NULL, 0, 0);
     10 }
     11 
     12 void searchbackward(const Arg *)
     13 {
     14     win.mode ^= kbds_keyboardhandler(-1, NULL, 0, 0);
     15     kbds_keyboardhandler(-3, NULL, 0, 0);
     16 }