Guldoman
Guldoman
Right now the only thing that shows up is a small error message in the `StatusBar`. We should probably use the `NagBar` to alert the user of the situation, and...
As tab size is set only on the font specified by `DocView:get_font`, if a different font is used for a token type, its tab size isn't set. Also, because the...
If the editor is executed specifying a _relative_ path argument, on restart the argument can potentially become invalid. This can result in `error: invalid file or directory "./path_to_file" at ...build/src/data/core/init.lua:986`....
This implements #1119 as the new default multicursor paste behavior. The old behavior can still be achieved by pressing `space`, then `escape`. Mixed normal and full line paste is now...
This works with the WIP `minimap` plugin PR lite-xl/lite-xl-plugins#284.  Should this be a config option? If so, name suggestions are welcome.
It would be useful for drag and drop support in SDL3 to get the same treatment of the clipboard support, by allowing specifying the MIME type to accept. Ideally SDL3...
In the "end" pattern we weren't considering the multiple types. ~~Creating as draft as I need to check some more cases.~~ Example: Using ```lua local syntax = require "core.syntax" syntax.add({...
These patterns cause infinite loops, so warn about them and skip them.
At the moment we just raise a generic "failed to load font" error. Ideally we should distinguish whether the font was invalid, unsupported or just not found in the specified...
When a project dir loaded from the session file isn't available, we load the cwd. A better solution might be to load an older project dir from the session file....