template-carousel-mobile/0013-on.keychord_press

26 lines
732 B
Plaintext

on.keychord_press = function(chord, key)
if Show_file_dialog then
keychord_press_on_file_dialog(chord, key)
return
end
if chord == 'C-=' then
update_font_settings(Current_pane.editor_state.font_height+2)
elseif chord == 'C--' then
update_font_settings(Current_pane.editor_state.font_height-2)
elseif chord == 'C-0' then
update_font_settings(20)
elseif Show_code then
if Current_pane.editor_state.cursor_x then
-- send keys to editor if cursor is visible
edit.keychord_press(Current_pane.editor_state, chord, key)
end
else
-- editors hidden
if car.keychord_press then
call_protected(car.keychord_press, chord, key)
end
if car.keypressed then
call_protected(car.keypressed, key)
end
end
end