Chimera Linux actually uses apk or Alpine Package Keeper as its package manager, they acknowledge this but despite that market themselves as if they did something revolutionary that has never been done before
Chimera Linux actually uses apk or Alpine Package Keeper as its package manager, they acknowledge this but despite that market themselves as if they did something revolutionary that has never been done before
what about autocmd on DirChanged or VimEnter that sets the option?
I could watch 2 seconds before realizing it is a vtuber. Promptly blocked.
FlorisBoard from F-Droid
Think of AppImage like a standalone executable on windows, you download it, it just works and thats good. But it doesnt get automatic updates and to get a new feature you need to download it again. Flatpaks and Snaps don’t have this issue and are more like traditional package managers.
OpenSUSE
inb4 but thats a corporate distro, it is just sponsored by SUSE but is community maintained
I agree that there are not many distros that are both user friendly and not forks of something else, but I don’t see it as an issue, imo there is nothing wrong with forks.
A blog of course.
You can wrap the call in pcall, which is a lua builtin for catching errors, which would suppress the error and let you know if the command failed.
You could for example do:
local ok, res = pcall(vim.cmd.write)
if not ok
then
vim.notify('write failed with: ' .. res)
end
There are both lua and vim functions for writing to files but I recommend to not use them in this scenario, they write to the file directly and dont trigger autocommands.
I understand your frustration with no consitent error reporting and clear api, but I guess that’s the consequence of the entire history of vi and vim and trying to be backwards compatible.
vim.cmd.<command>
calls a command. So vim.cmd.write
is effectively the same as :write
, the arguments passed to the function are the same that the command would take. Check :h vim.cmd()
and for a specific command, e.g. write, you can check :h :write
.
You can call commands and vim functions from lua. To write the current buffer you can: vim.cmd.write()
. Vim functions can be called with vim.fn
.
It is completely fine to use vim functiona and not just pure lua, afaik some vim functions are not ever gonna get a lua alternative cause there is no need.
It seems like one is showing GiB and the other GB, which are two different units.
KB = 1000B KiB = 1024B
Which doesn’t seem significant but it adds up.
There are VPS services that dont give a fuck about DMCAs and pirated content. You should specifically look for one like that if this is your intent. I do not have any specific provider recommendations but you might find something useful in lowendtalk.
Store on the top right goes bankrupt, gets replaced with Sneed’s feed and seed
Fiona should turn back to ogre.
Dont count this as a move, it is just a natural consequence of the darkness.
I dislike when documentations add sudo because what if I am root already or what if sudo is not installed on my machine and I cannot just copy and paste the lines because I have to avoid pasting sudo.
Also fyi ArchWiki also uses the # approach.
Zuck takes this opportunity to attack blinded Will Smith, but due to being defederated he passes through and falls off the board.
I dislike general artificial intelligence. I understand that it can be a useful tool, but at the same time the thought of being in a world where people’s jobs can be replaced with robots for the sake of profit and you won’t be able to tell whether you are talking with a real person or not repulses me.
I understand, but I will continue to stubbornly dislike LLMs.
I honestly do not care whether it is or is not copyright infringment, just hope to see “AI” burn :3
Just use Alpine. Chimera uses Alpine’s package manager anyway. The only reason you havent heard about Alpine in this context is because they do not claim they are doing anything revolutionary, they just strive to make a great distro.