Lite XL: A lightweight text editor written in C and Lua
11–20 of 151 posts
Re: Lite XL: A lightweight text editor written in C and Lua
#12https://github.com/DigitalMars/med
It's the one I use every day. The executable on Windows is a little over a meg. It also works on Linux and Mac.
Re: Lite XL: A lightweight text editor written in C and Lua
#13Re: Lite XL: A lightweight text editor written in C and Lua
#14What GUI Library does the editor use?
Re: Lite XL: A lightweight text editor written in C and Lua
#15Here's another one with a very small footprint: https://github.com/DigitalMars/med It's the one I use every day. The executable on Windows is a little over a meg. It also works on Linux and Mac.
Re: Lite XL: A lightweight text editor written in C and Lua
#16It's a good stopgap between vim and vscode
Re: Lite XL: A lightweight text editor written in C and Lua
#17They have packages for pretty much every platform except Debian.
Re: Lite XL: A lightweight text editor written in C and Lua
#18The aim of Lite XL compared to lite is to be more user friendly, improve the quality of font rendering, and reduce CPU usage. Plug-ins are not necessarily compatible
The original Lite was an exercise in creating a minimal editor, which I think succeeded. This project tries to take that base and expand it to add a ton of features, but doesn't re-architect it to support that expansion. So instead, you have a big bowl of Lua flavored spaghetti.
On the bright side though, it does seem like the maintainers are dedicated to keeping it working. So if you're looking for a text editor, you could do worse than Lite XL.
Re: Lite XL: A lightweight text editor written in C and Lua
#19Re: Lite XL: A lightweight text editor written in C and Lua
#20What GUI Library does the editor use?
As simple as it goes. I was impressed by how fast it was given that software rendering should be quite slow, but these days CPU are so powerful that this might not be a problem
A simple OpenGL renderer could be added with minimal efforts I think.