updating jump to line

This commit is contained in:
2026-01-01 19:12:46 -08:00
parent cc0c187481
commit 2542690eca
5 changed files with 478 additions and 474 deletions

11
main.cc
View File

@@ -192,13 +192,11 @@ main(int argc, const char *argv[])
} else if (req_term) {
use_gui = false;
} else {
// Default depends on build target: kge defaults to GUI, kte to terminal
// Default depends on build target: kge defaults to GUI, kte to terminal
#if defined(KTE_DEFAULT_GUI)
use_gui = true;
use_gui = true;
#else
use_gui = false;
use_gui = false;
#endif
}
#endif
@@ -307,6 +305,7 @@ main(int argc, const char *argv[])
return 1;
}
bool running = true;
while (running) {
fe->Step(editor, running);
@@ -315,4 +314,4 @@ main(int argc, const char *argv[])
fe->Shutdown();
return 0;
}
}