mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
073907ec5f
* usermap.h: Likewise. * Makefile.am: Likewise. * editcmd.c: Define new editor commands which had been coded inline before. This change also affects some other files. * edit-widget.h: Invented a new type edit_key_map_type instead of using long for. * editkeys.c: Using that type.
12 lines
178 B
C
12 lines
178 B
C
#ifndef MC_USERMAP_H
|
|
#define MC_USERMAP_H
|
|
|
|
#define MC_USERMAP ".mc/cedit/cooledit.bindings"
|
|
|
|
#include "edit.h"
|
|
|
|
/* load user map */
|
|
gboolean edit_load_user_map(WEdit *);
|
|
|
|
#endif
|