1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00
Witold Filipczyk 5fa0552ab0 [exmode] Introduced 10 macro config options. macro.0 to macro.9 . Refs
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"
2022-11-13 17:45:42 +01:00

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