commit 70724afa2ddfd2be137b649857f0e1e47deed5e1
parent 17fd3454832f6f48b33a9edf4f7ed79953eab7cf
Author: Sylvia Ivory <git@sivory.net>
Date: Fri, 27 Jun 2025 02:23:42 -0700
Remove completed todos
Diffstat:
3 files changed, 2 insertions(+), 4 deletions(-)
diff --git a/readme.md b/readme.md
@@ -7,7 +7,8 @@ Fancy Lua REPl! Featuring support for Lua 5.1-5.4, LuaJIT, and Luau!
* Syntax highlighting
* Syntax checking
* Formatted table outputs
-* Saved REPL history (TODO)
+* Saved REPL history
+* Basic autocomplete
## Running
diff --git a/src/completion.rs b/src/completion.rs
@@ -90,8 +90,6 @@ impl LuaCompleter {
_ => {}
}
- // TODO; for loops
-
for node in scope.children::<LuaAst>() {
match node {
LuaAst::LuaLocalFuncStat(stat) => {
diff --git a/src/editor.rs b/src/editor.rs
@@ -133,7 +133,6 @@ impl Editor {
is_running_lua.store(false, Ordering::Relaxed);
}
- // TODO; this should cancel the current Lua execution if possible
Ok(Signal::CtrlC) | Ok(Signal::CtrlD) => break,
_ => {}
}