-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtodo.txt
53 lines (31 loc) · 1.3 KB
/
todo.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
DONE 2022-03-12 16:34:20: fix makefile to not compile everthing everytime
DONE 2022-03-12 05:42:20: "x"
DONE 2022-03-09 **:**:**: after ":" cmd, buffer needs to go back to correct location
DONE 2022-03-12 16:25:45: encapsulate commands and the gui interface they use in a class
DONE 2022-03-12 16:59:15: "f"
DONE 2022-08-20 02:33: "P" for "dd"
DONE 2023-06-10 **:**:**: "yy"
DONE 2023-06-10 ":" handles deletes
DONE 2023-06-23 10:41:00 d<n>d
search
redo indentation
get a c++ lint/format rule setup
"r"
visual mode
write tests for command.cpp
refactor command.cpp
write tests for cursor.cpp
refactor cursor.cpp
write tests for window.cpp
refactor window.cpp
move tests into a tests folder in project root
prevent quit when changes
when line wrapping, if there isn't a new line to wrap to, it gets stuck
it doesn't handle broken ":" commands like ":asdf"
"dd" keeps the cursor in the same spot
pressing <enter> in insert mode at the end of the buffer breaks whereas "o" in normal mode doesn't
mouse scrolling doesn't work
if command_mode errors, I can't immediately go back into command mode to retype the command
undo
camelCase -> snake_case (maybe use a java script)
When the line is so long that it linewraps, the inserts after it are broken (because the ncurses line increments while the logical line doesn't )