jim

Simple, lightweight, modal, vim-inspired text editor
git clone git://git.janpasierb.com/jim.git
Log | Files | Refs | README | LICENSE

editor.h (191B)


      1 #ifndef EDITOR_HEADER
      2 #define EDITOR_HEADER
      3 
      4 void editorInsertNewline();
      5 void editorInsertChar(int);
      6 void editorJumpToNewline(char);
      7 void editorDelChar();
      8 void editorBackspaceChar();
      9 
     10 #endif