branch: elpa/lua-mode
commit aa104402983b5cc66252e96bc815e05caf23ed0c
Author: immerrr <[email protected]>
Commit: immerrr <[email protected]>
Bump TODO
---
TODO | 39 ++++++++++++++++++---------------------
1 file changed, 18 insertions(+), 21 deletions(-)
diff --git a/TODO b/TODO
index 2855b58..097e514 100644
--- a/TODO
+++ b/TODO
@@ -1,40 +1,37 @@
# -*- mode: org -*-
+#+PROPERTY: COOKIE_DATA todo recursive
-* 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
+
+* TODO update site [0/2]
+** TODO reuse section-aware template
+** TODO add section for release downloading
+
+* TODO [#C] 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 [#C] Redo syntax engine using semantic/wisent
+
+* DONE 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 [4/5]
+* DONE lua-mark-all-multiline-literals [5/5]
- [X] process --[[ as multiline comment
- [X] 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] extend region backwards if BEGIN is inside multiline literal
- [X] don't change buffer-modified-p state
-
-* TODO lua-mark-multiline-region [0/3]
- - [ ] handle all pre-existing multiline markers inside the region
- If region contains multiline beginning markers, delete them along
- with their counterparts.
- - [ ] mark-up regions that become unmarked during last operation
- Specifically, there might be a problem when unmarked region spans
- further than the original one (maybe, need to recurse the call)
- - [ ] mark the whole multiline region with a property
- It might be easier to track region modifications on-fly this way
-
-* Redo syntax engine using semantic/wisent