Whitespace cleanup

This commit is contained in:
2026-01-11 01:15:49 +00:00
parent f2f176e8c8
commit bb87ae32f9
2 changed files with 1 additions and 2 deletions

View File

@@ -140,3 +140,4 @@ log INFO "You typed: $user_input"
# End marker # End marker
log INFO "Script finished (version $VERSION)" log INFO "Script finished (version $VERSION)"

View File

@@ -24,7 +24,6 @@ void background_lsp() {
} }
void input_listener() { void input_listener() {
while (running) { while (running) {
KeyEvent event = throttle(1ms, read_key); KeyEvent event = throttle(1ms, read_key);
if (event.key_type == KEY_NONE) if (event.key_type == KEY_NONE)
@@ -131,4 +130,3 @@ int main(int argc, char *argv[]) {
clear_regex_cache(); clear_regex_cache();
return 0; return 0;
} }