sokoban.love/0013-on.keychord_press

11 lines
312 B
Plaintext
Raw Normal View History

2023-11-15 14:06:56 +00:00
on.keychord_press = function(chord, key)
if chord == 'C-=' then
update_font_settings(Editor_state.font_height+2)
elseif chord == 'C--' then
update_font_settings(Editor_state.font_height-2)
elseif chord == 'C-0' then
update_font_settings(20)
else
edit.keychord_press(Editor_state, chord, key)
end
2023-11-15 14:06:56 +00:00
end