branch: elpa/lua-mode
commit d142ed1f8b883f62ae77a7b687d7489cd05eee76
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>
Update TODO
---
TODO | 28 ++++++++++++++++++++++------
1 file changed, 22 insertions(+), 6 deletions(-)
diff --git a/TODO b/TODO
index 6b5def5..130fd89 100644
--- a/TODO
+++ b/TODO
@@ -1,14 +1,30 @@
-* Add docs about lua-prefix-key machinery
-* Support line-continuation with commas, e.g.
- x,y = long_value,
- other_long_value
+# -*- mode: org -*-
-* Support line-continuation commas in `for ... do ' operators
-* Fix braces/parens that reduce indent by const offset
+* TODO Improve lua-prefix-key machinery [0/2]
+ - [ ] add docs
+ - [ ] improve setting prefix-key
+ Currently, prefix-key is parsed from a macro string (which may
+ contain more than one key) and all keys but the first one are
+ silently removed. Maybe there's a better way to do it.
+
+* TODO Support line-continuation with commas [0/2]
+ - [ ] assignments
+ x,y = long_value,
+ other_long_value
+ - [ ] `for ... do' operators
+* TODO Fix braces/parens that reduce indent by const offset
this causes wrong behavior when indented block was
anchored to first line, e.g.
my_func( hello,
world
)
+* TODO lua-mark-all-multiline-literals [2/5]
+ - [ ] process --[[ as multiline comment
+ - [ ] process ---[[ as single-line comment
+ distinguish by syntax state of last dash before square bracket
+ - [X] don't recognize [[ in comments or literals
+ - [ ] extend region backwards if BEGIN is inside multiline literal
+ - [X] don't change buffer-modified-p state
+
* Redo syntax engine using semantic/wisent