uemacs/basic.h

33 lines
834 B
C
Raw Normal View History

2016-05-22 14:22:39 +00:00
/* basic.h -- basic commands for cursor movement in active window */
2013-05-19 00:13:48 +00:00
#ifndef _BASIC_H_
#define _BASIC_H_
2013-05-19 00:13:48 +00:00
#include "names.h" /* BINDABLE() */
2016-05-22 14:22:39 +00:00
/* $overlap is the size of the line overlap when kbd calls page forw/back
if 0, page will move by 2/3 of the window size (1/3 page overlap)
default to 0
*/
extern int overlap ; /* $overlap: line overlap in forw/back page */
2016-05-22 14:22:39 +00:00
/* $target (== curgoal) is the column target when doing line move */
extern int curgoal ; /* $target: Goal for C-P previous-line, C-N next-line */
2013-10-10 03:49:04 +00:00
/* Bindable functions */
BBINDABLE( backline) ;
TBINDABLE( backpage) ;
BBINDABLE( forwline) ;
TBINDABLE( forwpage) ;
TBINDABLE( gotobob) ;
TBINDABLE( gotobol) ;
TBINDABLE( gotoeob) ;
TBINDABLE( gotoeol) ;
BINDABLE( gotoline) ;
TBINDABLE( setmark) ;
TBINDABLE( swapmark) ;
2013-05-19 00:13:48 +00:00
#endif
2016-05-22 14:22:39 +00:00
/* end of basic.h */