M README.md => README.md +7 -3
@@ 2,7 2,7 @@
nano-like editor made with termbox.
-This is a work in progress, and there are currently no tests. Use at your own risk.
+This is a work in progress. Use at your own risk.

@@ 22,10 22,14 @@ This is a work in progress, and there are currently no tests. Use at your own ri
- [termbox](https://github.com/nsf/termbox)
- libclang
+For building/debugging :
+
+- tmux
+- zapcc
+
### TODO
-- [ ] TESTS !
+- [ ] More tests
- [ ] Multiple buffers
- [ ] Better mouse support
- [ ] Basic C lexer
-- [ ] Tmux debugging setup
M debug.sh => debug.sh +3 -3
@@ 1,4 1,4 @@
#!/bin/sh
-exec xterm -e ./ke &
-sleep 1
-sudo gdb -q -p $(pidof -s ke)
+tmux \
+ new-session './ke' \; \
+ split-window 'sudo gdb -q -p $(pidof -s ke)'<
\ No newline at end of file