2021-08-09 15:24:33 +08:00
|
|
|
/* bind.h -- bindable functions dealing with name and key bindings */
|
2013-05-20 13:16:08 +08:00
|
|
|
#ifndef _BIND_H_
|
|
|
|
#define _BIND_H_
|
|
|
|
|
2021-08-13 11:06:58 +08:00
|
|
|
#include "names.h" /* BINDABLE() */
|
2021-07-19 15:39:00 +08:00
|
|
|
|
2021-07-30 16:24:52 +08:00
|
|
|
/* Bindable uEMACS functions */
|
|
|
|
BINDABLE( apro) ;
|
|
|
|
BINDABLE( bindtokey) ;
|
|
|
|
BINDABLE( desbind) ;
|
|
|
|
BINDABLE( deskey) ;
|
|
|
|
BINDABLE( help) ;
|
|
|
|
BINDABLE( unbindkey) ;
|
2021-07-20 17:34:35 +08:00
|
|
|
|
2015-01-16 21:12:27 +08:00
|
|
|
int startup( const char *fname) ;
|
2021-07-20 17:34:35 +08:00
|
|
|
|
|
|
|
/* find a key to function association in the key to function mapping table */
|
2021-08-09 15:24:33 +08:00
|
|
|
const char *transbind( char *skey) ; /* by string representation of key */
|
2013-05-20 13:16:08 +08:00
|
|
|
|
|
|
|
#endif
|
2021-08-09 15:24:33 +08:00
|
|
|
/* end of bind.h */
|