Jakub Buczak

Results 20 comments of Jakub Buczak

@afshinm any news on this?

I was hoping to have similar data structure for: * representing form as a scheme * representing form data * representing form errors Currently first two are represented as nested...

For now I'm using this solution (inspired by [this stackoverlow answer](https://stackoverflow.com/questions/13218745/convert-complex-javascript-object-to-dot-notation-object)) ```js function dotize(src) { let res = {}; // regex for detecting keys, that should hold array value (ending...

@matt1003 yeah, I also was playing with this. There are couple options: 1. Parse regions to codes. 2. Save the codes in region key 3. Save codes somewhere else 4....

@heyblinken - really nice work! Just added callback removing on_close. I'm sceptical about using active_window() - settings change listener is assign for each view, and it's callback shouldn't change other...

I added check for none window - hopefully this will work.

This is big wtf for me. Can you send error logs?

I still don't get it. I suppose that line 314 is this one (the last line): ``` view.window().run_command("undo_ansi") ``` I just put another patch - hopefully it will work this...

I just dig in and found that there is better way of detecting syntax change with `on_text_command` and we don't have to pass view to check it. However we are...