74
IDE/Text Editor Recommendations for Go Development on Linux
(sh.itjust.works)
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
I use lite-xl, it has been very good, but I'm not a Go developer though.
They also release an appimage and I just did a quick test on a alpine container and it works, so it should work on Chimera as well.
lite-xl seems very interesting, but sadly I wasn't able to launch it on Chimera Linux (I get the error
cannot execute command "./LiteXL-v2.1.5-x86_64.AppImage": No such file or directory
on any shell I try to launch it with). Is this a simple problem I can fix, or should I run it with Distrobox?That's interesting that it doesn't work, iirc the biggest difference of chimera is that it uses musl like alpine does.
Can you extract the appimage with
--appimage-extract
flag and run the AppRun that's inside of it directly? Or that also fails?Isn't lite-xl in your distro repo?
nvm I just noticed that the issue is that I had the gcompat package installed in alpine, which fixes that issue you just had, I don't know if chimera has something similar to it.
Installing gcompat worked and Lite-XL is running now. Thanks!