New idea for mac-4coder-like organization, added debug to command caller

master
Allen Webster 2017-11-08 19:56:26 -05:00
parent 30c16d6752
commit 7ee470cf6e
5 changed files with 530 additions and 626 deletions

View File

@ -870,7 +870,7 @@ STRUCT Binding_Unit{
STRUCT{ int32_t total_size; int32_t user_map_count; int32_t error; } header;
STRUCT{ int32_t mapid; int32_t replace; int32_t bind_count; } map_begin;
STRUCT{ int32_t mapid; } map_inherit;
STRUCT{ Key_Code code; uint8_t modifiers; int32_t command_id; } binding;
STRUCT{ Key_Code code; uint8_t modifiers; Command_ID command_id; } binding;
STRUCT{ Key_Code code; uint8_t modifiers; Custom_Command_Function *func; } callback;
STRUCT{ int32_t hook_id; void *func; } hook;
};

View File

@ -54,6 +54,22 @@ START_HOOK_SIG(default_start){
COMMAND_CALLER_HOOK(default_command_caller){
View_Summary view = get_active_view(app, AccessAll);
#if 1
#include <stdio.h>
User_Input in = get_command_input(app);
if (in.type == UserInputKey){
Key_Event_Data key = in.key;
fprintf(stdout, "keycode %u/'%c'\n", key.keycode, (char)key.keycode);
fprintf(stdout, "character %u/'%c'\n", key.character, (char)key.character);
fprintf(stdout, "character_no_caps_lock %u/'%c'\n", key.character_no_caps_lock, (char)key.character_no_caps_lock);
fprintf(stdout, "ctrl: %s ", key.modifiers[MDFR_CONTROL_INDEX]?" true":"false");
fprintf(stdout, "alt: %s " , key.modifiers[MDFR_ALT_INDEX] ?" true":"false");
fprintf(stdout, "cmnd: %s ", key.modifiers[MDFR_COMMAND_INDEX]?" true":"false");
fprintf(stdout, "shift: %s", key.modifiers[MDFR_SHIFT_INDEX] ?" true":"false");
fprintf(stdout, "\n");
}
#endif
view_paste_index[view.view_id].next_rewrite = 0;
exec_command(app, cmd);
view_paste_index[view.view_id].rewrite = view_paste_index[view.view_id].next_rewrite;

View File

@ -86,7 +86,7 @@ end_map(Bind_Helper *helper){
}
inline void
bind(Bind_Helper *helper, Key_Code code, uint8_t modifiers, int32_t cmdid){
bind(Bind_Helper *helper, Key_Code code, uint8_t modifiers, Command_ID cmdid){
if (helper->group == 0 && helper->error == 0) helper->error = BH_ERR_MISSING_BEGIN;
if (!helper->error) ++helper->group->map_begin.bind_count;
@ -113,6 +113,16 @@ bind(Bind_Helper *helper, Key_Code code, uint8_t modifiers, Custom_Command_Funct
write_unit(helper, unit);
}
inline void
bind(Bind_Helper *helper, Key_Code code, uint8_t modifiers, Generic_Command cmd){
if (cmd.cmdid < cmdid_count){
bind(helper, code, modifiers, cmd.cmdid);
}
else{
bind(helper, code, modifiers, cmd.command);
}
}
inline void
bind_vanilla_keys(Bind_Helper *helper, int32_t cmdid){
bind(helper, 0, 0, cmdid);

View File

@ -15,77 +15,137 @@ TYPE: 'drop-in-command-pack'
//
enum{
B_None,
B_Major,
B_Minor,
B_Both,
B_None = 0x0,
B_Major = 0x1,
B_Minor = 0x2,
B_Both = 0x3,
B_MASK = 0x3,
B_Shift = 0x4,
};
void
bind(Bind_Helper *context,
bind(Bind_Helper *context, Key_Code code, int32_t m, int32_t t, Generic_Command cmd){
uint8_t f = 0;
if (m & B_Shift){
f |= MDFR_SHIFT;
}
switch (m & B_MASK){
case B_None:
{
bind(context, code, MDFR_NONE|f, cmd);
}break;
case B_Major:
{
if (t == 0){
bind(context, code, MDFR_CTRL|f, cmd);
}
else if (t == 1){
bind(context, code, MDFR_CTRL|f, cmd);
bind(context, code, MDFR_ALT|f, cmd);
}
}break;
case B_Minor:
{
if (t == 0){
bind(context, code, MDFR_ALT|f, cmd);
}
else if (t == 1){
bind(context, code, MDFR_CMND|f, cmd);
}
}break;
case B_Both:
{
if (t == 0){
bind(context, code, MDFR_CTRL|MDFR_ALT|f, cmd);
}
else if (t == 1){
bind(context, code, MDFR_CTRL|MDFR_CMND|f, cmd);
bind(context, code, MDFR_ALT|MDFR_CMND|f, cmd);
}
}break;
}
}
void
default_keys(Bind_Helper *context){
bind(Bind_Helper *context, Key_Code code, int32_t m, int32_t t, Command_ID cmdid){
Generic_Command cmd = {0};
cmd.cmdid = cmdid;
bind(context, code, m, t, cmd);
}
void
bind(Bind_Helper *context, Key_Code code, int32_t m, int32_t t, Custom_Command_Function *func){
Generic_Command cmd = {0};
cmd.command = func;
bind(context, code, m, t, cmd);
}
void
default_key_template(Bind_Helper *context, int32_t t){
// NOTE(allen|a4.0.22): GLOBAL
begin_map(context, mapid_global);
bind(context, 'p', MDFR_CTRL, open_panel_vsplit);
bind(context, '_', MDFR_CTRL, open_panel_hsplit);
bind(context, 'P', MDFR_CTRL, close_panel);
bind(context, ',', MDFR_CTRL, change_active_panel);
bind(context, '<', MDFR_CTRL, change_active_panel_backwards);
bind(context, 'p', B_Major, t, open_panel_vsplit);
bind(context, '_', B_Major, t, open_panel_hsplit);
bind(context, 'P', B_Major, t, close_panel);
bind(context, ',', B_Major, t, change_active_panel);
bind(context, '<', B_Major, t, change_active_panel_backwards);
bind(context, 'n', MDFR_CTRL, interactive_new);
bind(context, 'o', MDFR_CTRL, interactive_open_or_new);
bind(context, 'o', MDFR_ALT, open_in_other);
bind(context, 'k', MDFR_CTRL, interactive_kill_buffer);
bind(context, 'i', MDFR_CTRL, interactive_switch_buffer);
bind(context, 'w', MDFR_CTRL, save_as);
bind(context, 'h', MDFR_CTRL, project_go_to_root_directory);
bind(context, 'S', MDFR_CTRL, save_all_dirty_buffers);
bind(context, 'n', B_Major, t, interactive_new);
bind(context, 'o', B_Major, t, interactive_open_or_new);
bind(context, 'o', B_Minor, t, open_in_other);
bind(context, 'k', B_Major, t, interactive_kill_buffer);
bind(context, 'i', B_Major, t, interactive_switch_buffer);
bind(context, 'w', B_Major, t, save_as);
bind(context, 'h', B_Major, t, project_go_to_root_directory);
bind(context, 'S', B_Major, t, save_all_dirty_buffers);
bind(context, 'c', MDFR_ALT, open_color_tweaker);
bind(context, 'd', MDFR_ALT, open_debug);
bind(context, 'c', B_Minor, t, open_color_tweaker);
bind(context, 'd', B_Minor, t, open_debug);
bind(context, '.', MDFR_ALT, change_to_build_panel);
bind(context, ',', MDFR_ALT, close_build_panel);
bind(context, 'n', MDFR_ALT, goto_next_error);
bind(context, 'N', MDFR_ALT, goto_prev_error);
bind(context, 'M', MDFR_ALT, goto_first_error);
bind(context, 'm', MDFR_ALT, build_in_build_panel);
bind(context, '.', B_Minor, t, change_to_build_panel);
bind(context, ',', B_Minor, t, close_build_panel);
bind(context, 'n', B_Minor, t, goto_next_error);
bind(context, 'N', B_Minor, t, goto_prev_error);
bind(context, 'M', B_Minor, t, goto_first_error);
bind(context, 'm', B_Minor, t, build_in_build_panel);
bind(context, 'z', MDFR_ALT, execute_any_cli);
bind(context, 'Z', MDFR_ALT, execute_previous_cli);
bind(context, 'z', B_Minor, t, execute_any_cli);
bind(context, 'Z', B_Minor, t, execute_previous_cli);
bind(context, 'x', MDFR_ALT, execute_arbitrary_command);
bind(context, 'x', B_Minor, t, execute_arbitrary_command);
bind(context, 's', MDFR_ALT, show_scrollbar);
bind(context, 'w', MDFR_ALT, hide_scrollbar);
bind(context, 'b', MDFR_ALT, toggle_filebar);
bind(context, 's', B_Minor, t, show_scrollbar);
bind(context, 'w', B_Minor, t, hide_scrollbar);
bind(context, 'b', B_Minor, t, toggle_filebar);
bind(context, '@', MDFR_ALT, toggle_mouse);
bind(context, key_page_up, MDFR_CTRL, toggle_fullscreen);
bind(context, 'E', MDFR_ALT, exit_4coder);
bind(context, '@', B_Minor, t, toggle_mouse);
bind(context, key_page_up, B_Major, t, toggle_fullscreen);
bind(context, 'E', B_Minor, t, exit_4coder);
bind(context, key_f1, MDFR_NONE, project_fkey_command);
bind(context, key_f2, MDFR_NONE, project_fkey_command);
bind(context, key_f3, MDFR_NONE, project_fkey_command);
bind(context, key_f4, MDFR_NONE, project_fkey_command);
bind(context, key_f1, B_None, t, project_fkey_command);
bind(context, key_f2, B_None, t, project_fkey_command);
bind(context, key_f3, B_None, t, project_fkey_command);
bind(context, key_f4, B_None, t, project_fkey_command);
bind(context, key_f5, MDFR_NONE, project_fkey_command);
bind(context, key_f6, MDFR_NONE, project_fkey_command);
bind(context, key_f7, MDFR_NONE, project_fkey_command);
bind(context, key_f8, MDFR_NONE, project_fkey_command);
bind(context, key_f5, B_None, t, project_fkey_command);
bind(context, key_f6, B_None, t, project_fkey_command);
bind(context, key_f7, B_None, t, project_fkey_command);
bind(context, key_f8, B_None, t, project_fkey_command);
bind(context, key_f9, MDFR_NONE, project_fkey_command);
bind(context, key_f10, MDFR_NONE, project_fkey_command);
bind(context, key_f11, MDFR_NONE, project_fkey_command);
bind(context, key_f12, MDFR_NONE, project_fkey_command);
bind(context, key_f9, B_None, t, project_fkey_command);
bind(context, key_f10, B_None, t, project_fkey_command);
bind(context, key_f11, B_None, t, project_fkey_command);
bind(context, key_f12, B_None, t, project_fkey_command);
bind(context, key_f13, MDFR_NONE, project_fkey_command);
bind(context, key_f14, MDFR_NONE, project_fkey_command);
bind(context, key_f15, MDFR_NONE, project_fkey_command);
bind(context, key_f16, MDFR_NONE, project_fkey_command);
bind(context, key_f13, B_None, t, project_fkey_command);
bind(context, key_f14, B_None, t, project_fkey_command);
bind(context, key_f15, B_None, t, project_fkey_command);
bind(context, key_f16, B_None, t, project_fkey_command);
end_map(context);
@ -94,74 +154,73 @@ bind(Bind_Helper *context,
bind_vanilla_keys(context, write_character);
bind(context, key_mouse_left, MDFR_NONE, click_set_cursor);
bind(context, key_mouse_right, MDFR_NONE, click_set_mark);
bind(context, key_mouse_left, B_None, t, click_set_cursor);
bind(context, key_mouse_right, B_None, t, click_set_mark);
bind(context, key_mouse_left_release, B_None, t, click_set_mark);
bind(context, key_mouse_left_release, MDFR_NONE, click_set_mark);
bind(context, key_left, B_None, t, move_left);
bind(context, key_right, B_None, t, move_right);
bind(context, key_del, B_None, t, delete_char);
bind(context, key_del, B_Shift, t, delete_char);
bind(context, key_back, B_None, t, backspace_char);
bind(context, key_back, B_Shift, t, backspace_char);
bind(context, key_up, B_None, t, move_up);
bind(context, key_down, B_None, t, move_down);
bind(context, key_end, B_None, t, seek_end_of_line);
bind(context, key_home, B_None, t, seek_beginning_of_line);
bind(context, key_page_up, B_None, t, page_up);
bind(context, key_page_down, B_None, t, page_down);
bind(context, key_left, MDFR_NONE, move_left);
bind(context, key_right, MDFR_NONE, move_right);
bind(context, key_del, MDFR_NONE, delete_char);
bind(context, key_del, MDFR_SHIFT, delete_char);
bind(context, key_back, MDFR_NONE, backspace_char);
bind(context, key_back, MDFR_SHIFT, backspace_char);
bind(context, key_up, MDFR_NONE, move_up);
bind(context, key_down, MDFR_NONE, move_down);
bind(context, key_end, MDFR_NONE, seek_end_of_line);
bind(context, key_home, MDFR_NONE, seek_beginning_of_line);
bind(context, key_page_up, MDFR_NONE, page_up);
bind(context, key_page_down, MDFR_NONE, page_down);
bind(context, key_right, B_Major, t, seek_whitespace_right);
bind(context, key_left, B_Major, t, seek_whitespace_left);
bind(context, key_up, B_Major, t, seek_whitespace_up_end_line);
bind(context, key_down, B_Major, t, seek_whitespace_down_end_line);
bind(context, key_right, MDFR_CTRL, seek_whitespace_right);
bind(context, key_left, MDFR_CTRL, seek_whitespace_left);
bind(context, key_up, MDFR_CTRL, seek_whitespace_up_end_line);
bind(context, key_down, MDFR_CTRL, seek_whitespace_down_end_line);
bind(context, key_up, B_Minor, t, move_up_10);
bind(context, key_down, B_Minor, t, move_down_10);
bind(context, key_up, MDFR_ALT, move_up_10);
bind(context, key_down, MDFR_ALT, move_down_10);
bind(context, key_back, B_Major, t, backspace_word);
bind(context, key_del, B_Major, t, delete_word);
bind(context, key_back, B_Minor, t, snipe_token_or_word);
bind(context, key_del, B_Minor, t, snipe_token_or_word_right);
bind(context, key_back, MDFR_CTRL, backspace_word);
bind(context, key_del, MDFR_CTRL, delete_word);
bind(context, key_back, MDFR_ALT, snipe_token_or_word);
bind(context, key_del, MDFR_ALT, snipe_token_or_word_right);
bind(context, ' ', B_Major, t, set_mark);
bind(context, 'a', B_Major, t, replace_in_range);
bind(context, 'c', B_Major, t, copy);
bind(context, 'd', B_Major, t, delete_range);
bind(context, 'e', B_Major, t, center_view);
bind(context, 'E', B_Major, t, left_adjust_view);
bind(context, 'f', B_Major, t, search);
bind(context, 'F', B_Major, t, list_all_locations);
bind(context, 'F', B_Minor, t, list_all_substring_locations_case_insensitive);
bind(context, 'g', B_Major, t, goto_line);
bind(context, 'j', B_Major, t, to_lowercase);
bind(context, 'K', B_Major, t, kill_buffer);
bind(context, 'l', B_Major, t, toggle_line_wrap);
bind(context, 'm', B_Major, t, cursor_mark_swap);
bind(context, 'O', B_Major, t, reopen);
bind(context, 'q', B_Major, t, query_replace);
bind(context, 'Q', B_Major, t, query_replace_identifier);
bind(context, 'r', B_Major, t, reverse_search);
bind(context, 's', B_Major, t, save);
bind(context, 't', B_Major, t, search_identifier);
bind(context, 'T', B_Major, t, list_all_locations_of_identifier);
bind(context, 'u', B_Major, t, to_uppercase);
bind(context, 'v', B_Major, t, paste_and_indent);
bind(context, 'v', B_Minor, t, toggle_virtual_whitespace);
bind(context, 'V', B_Major, t, paste_next_and_indent);
bind(context, 'x', B_Major, t, cut);
bind(context, 'y', B_Major, t, redo);
bind(context, 'z', B_Major, t, undo);
bind(context, ' ', MDFR_CTRL, set_mark);
bind(context, 'a', MDFR_CTRL, replace_in_range);
bind(context, 'c', MDFR_CTRL, copy);
bind(context, 'd', MDFR_CTRL, delete_range);
bind(context, 'e', MDFR_CTRL, center_view);
bind(context, 'E', MDFR_CTRL, left_adjust_view);
bind(context, 'f', MDFR_CTRL, search);
bind(context, 'F', MDFR_CTRL, list_all_locations);
bind(context, 'F', MDFR_ALT, list_all_substring_locations_case_insensitive);
bind(context, 'g', MDFR_CTRL, goto_line);
bind(context, 'j', MDFR_CTRL, to_lowercase);
bind(context, 'K', MDFR_CTRL, kill_buffer);
bind(context, 'l', MDFR_CTRL, toggle_line_wrap);
bind(context, 'm', MDFR_CTRL, cursor_mark_swap);
bind(context, 'O', MDFR_CTRL, reopen);
bind(context, 'q', MDFR_CTRL, query_replace);
bind(context, 'Q', MDFR_CTRL, query_replace_identifier);
bind(context, 'r', MDFR_CTRL, reverse_search);
bind(context, 's', MDFR_CTRL, save);
bind(context, 't', MDFR_CTRL, search_identifier);
bind(context, 'T', MDFR_CTRL, list_all_locations_of_identifier);
bind(context, 'u', MDFR_CTRL, to_uppercase);
bind(context, 'v', MDFR_CTRL, paste_and_indent);
bind(context, 'v', MDFR_ALT, toggle_virtual_whitespace);
bind(context, 'V', MDFR_CTRL, paste_next_and_indent);
bind(context, 'x', MDFR_CTRL, cut);
bind(context, 'y', MDFR_CTRL, redo);
bind(context, 'z', MDFR_CTRL, undo);
bind(context, '2', B_Major, t, decrease_line_wrap);
bind(context, '3', B_Major, t, increase_line_wrap);
bind(context, '2', MDFR_CTRL, decrease_line_wrap);
bind(context, '3', MDFR_CTRL, increase_line_wrap);
bind(context, '?', MDFR_CTRL, toggle_show_whitespace);
bind(context, '~', MDFR_CTRL, clean_all_lines);
bind(context, '\n', MDFR_NONE, newline_or_goto_position);
bind(context, '\n', MDFR_SHIFT, newline_or_goto_position_same_panel);
bind(context, ' ', MDFR_SHIFT, write_character);
bind(context, '?', B_Major, t, toggle_show_whitespace);
bind(context, '~', B_Major, t, clean_all_lines);
bind(context, '\n', B_None, t, newline_or_goto_position);
bind(context, '\n', B_Shift, t, newline_or_goto_position_same_panel);
bind(context, ' ', B_Shift, t, write_character);
end_map(context);
@ -170,225 +229,45 @@ bind(Bind_Helper *context,
inherit_map(context, mapid_file);
bind(context, key_right, MDFR_CTRL, seek_alphanumeric_or_camel_right);
bind(context, key_left, MDFR_CTRL, seek_alphanumeric_or_camel_left);
bind(context, key_right, B_Major, t, seek_alphanumeric_or_camel_right);
bind(context, key_left, B_Major, t, seek_alphanumeric_or_camel_left);
bind(context, '\n', MDFR_NONE, write_and_auto_tab);
bind(context, '\n', MDFR_SHIFT, write_and_auto_tab);
bind(context, '}', MDFR_NONE, write_and_auto_tab);
bind(context, ')', MDFR_NONE, write_and_auto_tab);
bind(context, ']', MDFR_NONE, write_and_auto_tab);
bind(context, ';', MDFR_NONE, write_and_auto_tab);
bind(context, '#', MDFR_NONE, write_and_auto_tab);
bind(context, '\n', B_None, t, write_and_auto_tab);
bind(context, '\n', B_Shift, t, write_and_auto_tab);
bind(context, '}', B_None, t, write_and_auto_tab);
bind(context, ')', B_None, t, write_and_auto_tab);
bind(context, ']', B_None, t, write_and_auto_tab);
bind(context, ';', B_None, t, write_and_auto_tab);
bind(context, '#', B_None, t, write_and_auto_tab);
bind(context, '\t', MDFR_NONE, word_complete);
bind(context, '\t', MDFR_CTRL, auto_tab_range);
bind(context, '\t', MDFR_SHIFT, auto_tab_line_at_cursor);
bind(context, '\t', B_None, t, word_complete);
bind(context, '\t', B_Major, t, auto_tab_range);
bind(context, '\t', B_Shift, t, auto_tab_line_at_cursor);
bind(context, 'h', MDFR_ALT, write_hack);
bind(context, 'r', MDFR_ALT, write_block);
bind(context, 't', MDFR_ALT, write_todo);
bind(context, 'y', MDFR_ALT, write_note);
bind(context, '[', MDFR_CTRL, open_long_braces);
bind(context, '{', MDFR_CTRL, open_long_braces_semicolon);
bind(context, '}', MDFR_CTRL, open_long_braces_break);
bind(context, 'i', MDFR_ALT, if0_off);
bind(context, '1', MDFR_ALT, open_file_in_quotes);
bind(context, '2', MDFR_ALT, open_matching_file_cpp);
bind(context, '0', MDFR_CTRL, write_zero_struct);
bind(context, 'I', MDFR_CTRL, list_all_functions_current_buffer);
bind(context, 'h', B_Minor, t, write_hack);
bind(context, 'r', B_Minor, t, write_block);
bind(context, 't', B_Minor, t, write_todo);
bind(context, 'y', B_Minor, t, write_note);
bind(context, '[', B_Major, t, open_long_braces);
bind(context, '{', B_Major, t, open_long_braces_semicolon);
bind(context, '}', B_Major, t, open_long_braces_break);
bind(context, 'i', B_Minor, t, if0_off);
bind(context, '1', B_Minor, t, open_file_in_quotes);
bind(context, '2', B_Minor, t, open_matching_file_cpp);
bind(context, '0', B_Major, t, write_zero_struct);
bind(context, 'I', B_Major, t, list_all_functions_current_buffer);
end_map(context);
}
void
bind_ctrl_and_cmnd(Bind_Helper *context, Key_Code code, int32_t command){
bind(context, code, MDFR_CTRL, command);
bind(context, code, MDFR_CMND, command);
}
void
bind_ctrl_and_cmnd(Bind_Helper *context, Key_Code code, Custom_Command_Function *command){
bind(context, code, MDFR_CTRL, command);
bind(context, code, MDFR_CMND, command);
bind(context, code, MDFR_CTRL|MDFR_CMND, command);
default_keys(Bind_Helper *context){
default_key_template(context, 0);
}
void
mac_4coder_like_keys(Bind_Helper *context){
// NOTE(allen|a4.0.22): GLOBAL
begin_map(context, mapid_global);
bind_ctrl_and_cmnd(context, 'p', open_panel_vsplit);
bind_ctrl_and_cmnd(context, '_', open_panel_hsplit);
bind_ctrl_and_cmnd(context, 'P', close_panel);
bind_ctrl_and_cmnd(context, ',', change_active_panel);
bind_ctrl_and_cmnd(context, '<', change_active_panel_backwards);
bind_ctrl_and_cmnd(context, 'n', interactive_new);
bind_ctrl_and_cmnd(context, 'o', interactive_open_or_new);
bind(context, 'o', MDFR_ALT, open_in_other);
bind_ctrl_and_cmnd(context, 'k', interactive_kill_buffer);
bind_ctrl_and_cmnd(context, 'i', interactive_switch_buffer);
bind_ctrl_and_cmnd(context, 'w', save_as);
bind_ctrl_and_cmnd(context, 'h', project_go_to_root_directory);
bind_ctrl_and_cmnd(context, 'S', save_all_dirty_buffers);
bind(context, 'c', MDFR_ALT, open_color_tweaker);
bind(context, 'd', MDFR_ALT, open_debug);
bind(context, '.', MDFR_ALT, change_to_build_panel);
bind(context, ',', MDFR_ALT, close_build_panel);
bind(context, 'n', MDFR_ALT, goto_next_error);
bind(context, 'N', MDFR_ALT, goto_prev_error);
bind(context, 'M', MDFR_ALT, goto_first_error);
bind(context, 'm', MDFR_ALT, build_in_build_panel);
bind(context, 'z', MDFR_ALT, execute_any_cli);
bind(context, 'Z', MDFR_ALT, execute_previous_cli);
bind(context, 'x', MDFR_ALT, execute_arbitrary_command);
bind(context, 's', MDFR_ALT, show_scrollbar);
bind(context, 'w', MDFR_ALT, hide_scrollbar);
bind(context, 'b', MDFR_ALT, toggle_filebar);
bind(context, '@', MDFR_ALT, toggle_mouse);
bind(context, key_page_up, MDFR_CTRL, toggle_fullscreen);
bind(context, 'E', MDFR_ALT, exit_4coder);
bind(context, key_f1, MDFR_NONE, project_fkey_command);
bind(context, key_f2, MDFR_NONE, project_fkey_command);
bind(context, key_f3, MDFR_NONE, project_fkey_command);
bind(context, key_f4, MDFR_NONE, project_fkey_command);
bind(context, key_f5, MDFR_NONE, project_fkey_command);
bind(context, key_f6, MDFR_NONE, project_fkey_command);
bind(context, key_f7, MDFR_NONE, project_fkey_command);
bind(context, key_f8, MDFR_NONE, project_fkey_command);
bind(context, key_f9, MDFR_NONE, project_fkey_command);
bind(context, key_f10, MDFR_NONE, project_fkey_command);
bind(context, key_f11, MDFR_NONE, project_fkey_command);
bind(context, key_f12, MDFR_NONE, project_fkey_command);
bind(context, key_f13, MDFR_NONE, project_fkey_command);
bind(context, key_f14, MDFR_NONE, project_fkey_command);
bind(context, key_f15, MDFR_NONE, project_fkey_command);
bind(context, key_f16, MDFR_NONE, project_fkey_command);
end_map(context);
// NOTE(allen|a4.0.22): FILE
begin_map(context, mapid_file);
bind_vanilla_keys(context, write_character);
bind(context, key_mouse_left, MDFR_NONE, click_set_cursor);
bind(context, key_mouse_right, MDFR_NONE, click_set_mark);
bind(context, key_mouse_left_release, MDFR_NONE, click_set_mark);
bind(context, key_left, MDFR_NONE, move_left);
bind(context, key_right, MDFR_NONE, move_right);
bind(context, key_del, MDFR_NONE, delete_char);
bind(context, key_del, MDFR_SHIFT, delete_char);
bind(context, key_back, MDFR_NONE, backspace_char);
bind(context, key_back, MDFR_SHIFT, backspace_char);
bind(context, key_up, MDFR_NONE, move_up);
bind(context, key_down, MDFR_NONE, move_down);
bind(context, key_end, MDFR_NONE, seek_end_of_line);
bind(context, key_home, MDFR_NONE, seek_beginning_of_line);
bind(context, key_page_up, MDFR_NONE, page_up);
bind(context, key_page_down, MDFR_NONE, page_down);
bind(context, key_right, MDFR_CMND, seek_whitespace_right);
bind(context, key_left, MDFR_CMND, seek_whitespace_left);
bind(context, key_up, MDFR_CMND, seek_whitespace_up_end_line);
bind(context, key_down, MDFR_CMND, seek_whitespace_down_end_line);
bind(context, key_up, MDFR_ALT, move_up_10);
bind(context, key_down, MDFR_ALT, move_down_10);
bind_ctrl_and_cmnd(context, key_back, backspace_word);
bind_ctrl_and_cmnd(context, key_del, delete_word);
bind(context, key_back, MDFR_ALT, snipe_token_or_word);
bind(context, key_del, MDFR_ALT, snipe_token_or_word_right);
bind_ctrl_and_cmnd(context, ' ', set_mark);
bind_ctrl_and_cmnd(context, 'a', replace_in_range);
bind_ctrl_and_cmnd(context, 'c', copy);
bind_ctrl_and_cmnd(context, 'd', delete_range);
bind_ctrl_and_cmnd(context, 'e', center_view);
bind_ctrl_and_cmnd(context, 'E', left_adjust_view);
bind_ctrl_and_cmnd(context, 'f', search);
bind_ctrl_and_cmnd(context, 'F', list_all_locations);
bind(context, 'F', MDFR_ALT, list_all_substring_locations_case_insensitive);
bind_ctrl_and_cmnd(context, 'g', goto_line);
bind_ctrl_and_cmnd(context, 'j', to_lowercase);
bind_ctrl_and_cmnd(context, 'K', kill_buffer);
bind_ctrl_and_cmnd(context, 'l', toggle_line_wrap);
bind_ctrl_and_cmnd(context, 'm', cursor_mark_swap);
bind_ctrl_and_cmnd(context, 'O', reopen);
bind_ctrl_and_cmnd(context, 'q', query_replace);
bind_ctrl_and_cmnd(context, 'Q', query_replace_identifier);
bind_ctrl_and_cmnd(context, 'r', reverse_search);
bind_ctrl_and_cmnd(context, 's', save);
bind_ctrl_and_cmnd(context, 't', search_identifier);
bind_ctrl_and_cmnd(context, 'T', list_all_locations_of_identifier);
bind_ctrl_and_cmnd(context, 'u', to_uppercase);
bind_ctrl_and_cmnd(context, 'v', paste_and_indent);
bind(context, 'v', MDFR_ALT, toggle_virtual_whitespace);
bind_ctrl_and_cmnd(context, 'V', paste_next_and_indent);
bind_ctrl_and_cmnd(context, 'x', cut);
bind_ctrl_and_cmnd(context, 'y', redo);
bind_ctrl_and_cmnd(context, 'z', undo);
bind_ctrl_and_cmnd(context, '2', decrease_line_wrap);
bind_ctrl_and_cmnd(context, '3', increase_line_wrap);
bind_ctrl_and_cmnd(context, '?', toggle_show_whitespace);
bind_ctrl_and_cmnd(context, '~', clean_all_lines);
bind(context, '\n', MDFR_NONE, newline_or_goto_position);
bind(context, '\n', MDFR_SHIFT, newline_or_goto_position_same_panel);
bind(context, ' ', MDFR_SHIFT, write_character);
end_map(context);
// NOTE(allen|a4.0.22): CODE
begin_map(context, default_code_map);
inherit_map(context, mapid_file);
bind_ctrl_and_cmnd(context, key_right, seek_alphanumeric_or_camel_right);
bind_ctrl_and_cmnd(context, key_left, seek_alphanumeric_or_camel_left);
bind(context, '\n', MDFR_NONE, write_and_auto_tab);
bind(context, '\n', MDFR_SHIFT, write_and_auto_tab);
bind(context, '}', MDFR_NONE, write_and_auto_tab);
bind(context, ')', MDFR_NONE, write_and_auto_tab);
bind(context, ']', MDFR_NONE, write_and_auto_tab);
bind(context, ';', MDFR_NONE, write_and_auto_tab);
bind(context, '#', MDFR_NONE, write_and_auto_tab);
bind(context, '\t', MDFR_NONE, word_complete);
bind_ctrl_and_cmnd(context, '\t', auto_tab_range);
bind(context, '\t', MDFR_SHIFT, auto_tab_line_at_cursor);
bind(context, 'h', MDFR_ALT, write_hack);
bind(context, 'r', MDFR_ALT, write_block);
bind(context, 't', MDFR_ALT, write_todo);
bind(context, 'y', MDFR_ALT, write_note);
bind_ctrl_and_cmnd(context, '[', open_long_braces);
bind_ctrl_and_cmnd(context, '{', open_long_braces_semicolon);
bind_ctrl_and_cmnd(context, '}', open_long_braces_break);
bind(context, 'i', MDFR_ALT, if0_off);
bind(context, '1', MDFR_ALT, open_file_in_quotes);
bind(context, '2', MDFR_ALT, open_matching_file_cpp);
bind_ctrl_and_cmnd(context, '0', write_zero_struct);
bind_ctrl_and_cmnd(context, 'I', list_all_functions_current_buffer);
end_map(context);
default_key_template(context, 1);
}
void
@ -640,4 +519,3 @@ bind(Bind_Helper *context,
// BOTTOM

View File

@ -1070,7 +1070,7 @@ WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdS
}
LOG("Creating window... ");
i32 window_style = WS_CAPTION|WS_MINIMIZEBOX|WS_BORDER;
i32 window_style = WS_OVERLAPPEDWINDOW;
if (!plat_settings.fullscreen_window && plat_settings.maximize_window){
window_style |= WS_MAXIMIZE;
}