diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2022-12-23 19:53:38 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2022-12-23 19:53:38 -0800 |
commit | 8e782947950cb6c1a0dce2d603e96bd520a52843 (patch) | |
tree | 56eda59123c2267dd72a2ea828a84ebc92d96814 /commands.lua | |
parent | c51ab8739296f9b5a72508045b0b3e4b1910006d (diff) | |
parent | 48541656304c49005e951f7d67f6b5e47485dd53 (diff) | |
download | view.love-8e782947950cb6c1a0dce2d603e96bd520a52843.tar.gz |
Merge text.love
Diffstat (limited to 'commands.lua')
-rw-r--r-- | commands.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands.lua b/commands.lua index dd096ac..b1ac5ab 100644 --- a/commands.lua +++ b/commands.lua @@ -151,7 +151,7 @@ function reset_file_navigator() File_navigation.candidates = File_navigation.all_candidates end -function keychord_pressed_on_file_navigator(chord, key) +function keychord_press_on_file_navigator(chord, key) log(2, 'file navigator: '..chord) log(2, {name='file_navigator_state', files=File_navigation.candidates, index=File_navigation.index}) if chord == 'escape' then @@ -289,7 +289,7 @@ function file_index(fy, fx, fwidth) return best_guess end -function textinput_on_file_navigator(t) +function text_input_on_file_navigator(t) File_navigation.filter = File_navigation.filter..t File_navigation.candidates = source.file_navigator_candidates() end |