mirror of
https://github.com/rkd77/elinks.git
synced 2025-02-02 15:09:23 -05:00
They can be bind to keys. For example set macro.0 = "set ui.show_title_bar = 0" set macro.1 = "set ui.show_title_bar = 1" bind "main" "z" = "macro-0" bind "main" "Z" = "macro-1"
22 lines
316 B
C
22 lines
316 B
C
#ifndef EL__DIALOGS_EXMODE_H
|
|
#define EL__DIALOGS_EXMODE_H
|
|
|
|
#include "main/module.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
struct session;
|
|
|
|
extern struct module exmode_module;
|
|
|
|
void exmode_start(struct session *ses);
|
|
void try_exmode_exec(struct session *ses, const char *val);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|