linuxusers.in is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.
This server runs the snac software and there is no automatic sign-up process.
Trying out Zed after more than a decade of Vim/Neovim
Link: https://sgoel.dev/posts/trying-out-zed-after-more-than-a-decade-of-vim-neovim/
Discussion: https://news.ycombinator.com/item?id=42817277
The State of Vim
Link: https://lwn.net/Articles/1002342/
Discussion: https://news.ycombinator.com/item?id=42810176
Llama.vim – Local LLM-assisted text completion
Link: https://github.com/ggml-org/llama.vim
Discussion: https://news.ycombinator.com/item?id=42806328
Bad Apple but it's 6,500 regexes that I search for in Vim
Link: https://eieio.games/blog/bad-apple-with-regex-in-vim/
Discussion: https://news.ycombinator.com/item?id=42674116
The State of Vim
Link: https://lwn.net/SubscriberLink/1002342/a8d8a17f30968b93/
Discussion: https://news.ycombinator.com/item?id=42665222
here's a #vim theme based on this one frame of the Nostromo UI from Alien.
here’s the theme https://github.com/dhrm1k/nostromo.vim. feel free to use it. fork it. edit it.
do let me know how it is. #vim #neovim #texteditor #nvim
here’s the theme https://github.com/dhrm1k/nostromo.vim. feel free to use it. fork it. edit it.
vsplit | term
to split when using #vim and get stuck into a buffer where you can't then change the window, i got you.add this to your config:
" Use Ctrl + ] to exit terminal mode and return to normal modealso, did you know that
tnoremap <C-]> <C-\><C-N>
C-]
works like Esc
. i don't know why.vsplit | term
`` to split when using #vim and get stuck into a buffer where you can't then change the window, i got you.add this to your config:
" Use Ctrl + ] to exit terminal mode and return to normal mode
tnoremap <C-]> <C-\><C-N>
```also, did you know that `C-]` works like `Esc`. i don't know why.
@djsundog I actually learned microemacs before vi (stevie, then elvis) on my ST, MIT Scheme has edwin which is emacs but Scheme-coded, and much later the NeXTstep/Mac text areas all take emacs keys. But I'm so much better adapted to vi/Vim and just writing shell scripts as filters, than fucking around with a giant emacs.el for 30 years. I like an editor that starts instantly, not in 30-60s.
Vim scripting is useful these days, but I really just use it to hotkey my filters instead of :!foo
#vim
Realized in terminal I was running system vim:
VIM - Vi IMproved 9.0 (2022 Jun 28, compiled Jul 2 2023 20:19:01)
macOS version - x86_64
Included patches: 1-1544
Compiled by root@apple.com
Normal version without GUI. Features included (+) or not (-):
Because `packadd comment` from 9.1 was failing.
But find the mvim script (which calls the MacVim.app ... internals) and
ln -s mvim vim
And now:
VIM - Vi IMproved 9.1 (2024 Jan 02, compiled Oct 23 2024 14:24:06)
macOS version - x86_64
#mac #vim
Ah yes that ubiquitous pop culture fandom,
VIM!
https://vim.fandom.com/wiki/Vim_Tips_Wiki
What wacky adventures has Vim had? Which technologies are allowed OR FORBIDDEN in Vim? Who are the main characters in Vim‽ Find out on the fandom wiki for VIM!
What Is Vim?
Link: https://blog.jonas.foo/whats_vim.html
Discussion: https://news.ycombinator.com/item?id=42420138
My Vim cheat sheet. A page folded over & in thirds. I got a whole interior side I could use!
Your necessary commands may vary.
Yes, I know how to exit Vim, at least 3 ways, joke is as stale as yo momma.
#vim
Qutebrowser: A keyboard-driven, Vim-like browser
Link: https://github.com/qutebrowser/qutebrowser
Discussion: https://news.ycombinator.com/item?id=42356668
split | terminal
splits the window with the machines terminal with #vim, but this is also seems to be mode. typing exit
closes the window.https://gist.github.com/mahemoff/8967b5de067cffc67cec174cb3a9f49d
Also, hooray new MacVim version!
https://github.com/macvim-dev/macvim/releases/
packadd comment
seems to Just Work™, gcc (no relation) to toggle comment a line, V<move>gc to do region, etc.
Tho it doesn't understand Schemers use ; for inline, ;; important, #| block |#. Will see what I can configure, or just keep using my comment script.
getregion should be useful, I have a couple actions I want to make easier.
FIX TAB REORDERING. WHEW.
#vim
My stock answer to all the oh-so-tired "how to exit vim(1)" schtick includes ref to https://nxdomain.no/~peter/ed_mastery_is_a_must_for_real_unix_person.html (alternatively https://bsdly.blogspot.com/2018/04/ed1-mastery-is-must-for-real-unix-person.html if you really don't mind being tracked) #vi #vim #howtoexitvim #ed #editors #standardeditor #unix #oldfart #greybeard
When we read books, in real life, we turn pages. Indeed, scrolling book would be so inconvenient, most likely a miserable experience.
Why we do scroll so much when we read on PC screens is a mystery to me.
We also scroll like there's no tomorrow when we code.
#Emacs and #Vim get this right (respectively with `C-l (recenter-top-bottom)` and `zz`, `zt`, `zb`)