kakoune/TODO

31 lines
950 B
Plaintext
Raw Normal View History

2011-11-08 20:03:52 +01:00
High Priority
-------------
2011-11-08 20:03:52 +01:00
Medium Priority
---------------
2012-12-12 19:03:57 +01:00
* tweak editing model, some behaviours are not intuitive, fix append when
end of line is selected (maybe we can merge some code between editor and
IncrementalInserter. By the way, IncrementalInserter is now only used by
InputHandler's InputMode::Insert, maybe this could be refactored).
2011-11-08 20:03:52 +01:00
2012-10-16 18:46:06 +02:00
* encoding: support different encoding for files, make utf8 implementation
more robust
2011-11-08 20:03:52 +01:00
2012-10-16 18:46:06 +02:00
* key binding support
* configurable insert mode completion support
2012-11-23 13:41:17 +01:00
2012-12-12 19:03:57 +01:00
* pasting big chunks of text from the terminal is slooooow.
2012-12-13 18:48:54 +01:00
(this is due to WordCompletion regex matching the whole
buffer once per inserted char)
2012-12-03 14:02:16 +01:00
2012-12-12 19:03:57 +01:00
* Design an Asynchronous model for interaction with external tools.
For example Kakoune should provide a way to run a completion
shell command without freezing until the completer returns.
2013-01-04 18:46:20 +01:00
* EventManager should handle timers.
* automatic line splitting/paragraph formatting