Jakub Buczak
Jakub Buczak
Hi @aepfli did you managed to do this MR?
Well, I couldn't reproduce it now. Is it still an issue?
Can you send the whole output string?
Currently this plug-in does not support codes for VT100 terminal. It deletes only the commands from [this](http://ascii-table.com/ansi-escape-sequences.php) list. I plan to rewrite some part of this plugin in near future...
Reloading from disk will work for most cases, but what with files: 1. not saved anywhere 2. with unsaved changes (you may put some changes in text mode and then...
@matt1003 `undo_ansi` during `pluggin_unloaded` sound great, but when I try - it doesn't work - does it for you?
@matt1003 I found that view.settings() are saved to `filename.sublime-workspace` at sublime close. We can use it to save regions (actually there is "regions" in view settings, but it's empty). If...
To reproduce it: 1. Open "ansi_test_file.txt" in sublime 2. Set ANSI sytax 3. Open the same file in other editor, add some spaces and save I couldn't find how to...
`on_activated` works only if view is in focus. I just finished patch for this issue using periodic callbacks and checking if there are any ansi codes in view.
I just find out, that reloading file fires `view.settings()` on_change, however it doesn't find new ansi codes immediately after. We can add `sublime.set_timeout_async` and then look for ANSI codes. What...