1 2 3 4 5 | begin_map(context, mapid_file);
{
bind(context, '\t', MDFR_NONE, write_character);
}
end_map(context);
|
1 2 3 4 5 6 7 | begin_map(context, mapid_file);
{
bind(context, key_del, MDFR_SHIFT, delete_line);
bind(context, 'a', MDFR_CTRL, select_all);
bind(context, ' ', MDFR_CTRL, word_complete);
}
end_map(context);
|