Guldoman

Results 73 issues of Guldoman

`monitor->length` here https://github.com/lite-xl/lite-xl/blob/96d6d9acacda9f27b432d31c666d9783ae284b21/src/api/dirmonitor.c#L42-L43 is not protected and can potentially race with both `f_dirmonitor_gc` and `f_dirmonitor_check`. Might be the cause of random hangs happening while doing lots of file operations (like...

bug
dirmonitor

### [WIP] The `language` config entry can now be either a `string` which will be used in every case, or an array. In the array case, it's expected that each...

If `config.plugins.autocomplete.min_len` is greater than 1, when the autocomplete dialog is open, the completion isn't updated until `min_len` is reached. In servers that reply with a `textEdit`, this causes the...

It looks like `Server:write_request` is happily truncating lots of data, causing LSP servers like sumneko to crash. This is happening because `process.write` can sometimes *not* write the entire proposed buffer...

This needs to be tested to check for compatibility with Lite XL 2.1.1, as this was developed while using Lite XL `master`.

Hopefully didn't break anything, and bumped everything that needed bumping. Also removed some duplicate symbols.

Having: ``` aaaaa bbbbb| ccccc ``` where `|` is the caret. Using `ctrl+c` and then `ctrl+v`, the expected result is: ``` aaaaa bbbbb bbbbb| ccccc ``` but the actual result...

bug
windows

Variables like `VERSION` could be accidentally changed by plugins, so we should protect them. Other variables we might want to make difficult changing could be * `MOD_VERSION_MAJOR` * `MOD_VERSION_MINOR` *...

enhancement