From b405737272bfa2d9ea106311d52701c871c433d8 Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Tue, 21 Nov 2017 15:07:05 -0500 Subject: [PATCH] Fixed up mac bindings a bit --- meta/4ed_metagen.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/meta/4ed_metagen.cpp b/meta/4ed_metagen.cpp index 9510c01a..2edce411 100644 --- a/meta/4ed_metagen.cpp +++ b/meta/4ed_metagen.cpp @@ -839,7 +839,7 @@ generate_remapping_code_and_data(){ bind(mappings, '~', MDFR_CTRL, clean_all_lines); bind(mappings, '\n', MDFR_NONE, newline_or_goto_position); bind(mappings, '\n', MDFR_SHIFT, newline_or_goto_position_same_panel); - bind(mappings, ' ', MDFR_SHIFT, write_underscore); + bind(mappings, ' ', MDFR_SHIFT, write_character); end_map(mappings); @@ -933,6 +933,9 @@ generate_remapping_code_and_data(){ bind(mappings, key_page_up, MDFR_CMND, toggle_fullscreen); bind(mappings, 'E', MDFR_CTRL, exit_4coder); + bind(mappings, '+', MDFR_CTRL, increase_face_size); + bind(mappings, '-', MDFR_CTRL, decrease_face_size); + bind(mappings, key_f1, MDFR_NONE, project_fkey_command); bind(mappings, key_f2, MDFR_NONE, project_fkey_command); bind(mappings, key_f3, MDFR_NONE, project_fkey_command); @@ -1027,7 +1030,7 @@ generate_remapping_code_and_data(){ bind(mappings, '~', MDFR_CMND, clean_all_lines); bind(mappings, '\n', MDFR_NONE, newline_or_goto_position); bind(mappings, '\n', MDFR_SHIFT, newline_or_goto_position_same_panel); - bind(mappings, ' ', MDFR_SHIFT, write_underscore); + bind(mappings, ' ', MDFR_SHIFT, write_character); end_map(mappings);