ledit

Text editor (WIP)
git clone git://lumidify.org/ledit.git (fast, but not encrypted)
git clone https://lumidify.org/ledit.git (encrypted, but very slow)
git clone git://4kcetb7mo7hj6grozzybxtotsub5bempzo4lirzc3437amof2c2impyd.onion/ledit.git (over tor)
Log | Files | Refs | README | LICENSE

keys_basic.h (466B)


      1 #ifndef _KEYS_BASIC_H_
      2 #define _KEYS_BASIC_H_
      3 
      4 #include <X11/Xlib.h>
      5 #include "view.h"
      6 
      7 typedef struct basic_key_cb basic_key_cb;
      8 
      9 basic_key_cb *basic_key_cb_map_get_entry(char *text, size_t len);
     10 int basic_key_cb_modemask_is_valid(basic_key_cb *cb, ledit_mode modes);
     11 
     12 /* perform cleanup of global data */
     13 void basic_key_cleanup(void);
     14 struct action basic_key_handler(ledit_view *view, unsigned int key_state, KeySym sym, char *buf, int n, int lang_index);
     15 
     16 #endif