Hello, I'm beginner and a create a
custom_layer.cpp and I call
buildsuper.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32 | #include "4coder_default_include.cpp"
void custom_keys(Bind_Helper *context) {
begin_map(context, mapid_file); {
bind_vanilla_keys(context, write_character);
} end_map(context);
begin_map(context, default_code_map); {
inherit_map(context, mapid_file);
} end_map(context);
begin_map(context, default_lister_ui_map); {
bind_vanilla_keys(context, lister__write_character);
} end_map(context);
}
extern "C" int32_t
get_bindings(void *data, int32_t size){
Bind_Helper context_ = begin_bind_helper(data, size);
Bind_Helper *context = &context_;
set_all_default_hooks(context);
custom_keys(context);
int32_t result = end_bind_helper(context);
return(result);
}
|
So when I launch 4Coder all default shortcut don't work anymore, why ?
Does it exist a function for bind default shortcut ?