fosstodon.org is one of the many independent Mastodon servers you can use to participate in the fediverse.
Fosstodon is an invite only Mastodon instance that is open to those who are interested in technology; particularly free & open source software. If you wish to join, contact us for an invite.

Administered by:

Server stats:

10K
active users

#Vim

26 posts25 participants5 posts today

🧠 Thursday Flow — April 10, 2025
Fueling progress one keystroke at a time ⚡💡

📈 Daily Progress Report:
🗓 #Beyond365DaysOfCode Day 102
🔁 #100DaysOfCode Day 102
📚 #freeCodeCamp – Full Stack journey in motion

🔍 Daily Reading Log:
✅ 1 article from freeCodeCamp News
✅ 1 article on Daily.dev

🎯 Hands-On Work:
🔸 30 minutes of focused Vim practice 🎯
🔸 Trello board updated and streamlined 📋
🔸 Continued with Full Stack Developer Curriculum 💻

#Python #Vim #SecondYearOfCode #Code_Academy

Replied in thread

@devnull @xalofar @bookynette

À vrai dire, je suis plutôt à l’aise avec une poignée de fonctionnalités de #vim mais la première et dernière fois que j’ai essayé #Emacs, j’ai commencé à paniquer parce que je ne trouvais pas comment… le quitter !

NB : c’était il y a très longtemps et dans un terminal physique, donc il *fallait* que je trouve comment quitter…

Thinking about re-learning #vim keybindings for VSCode at work. The only downside of #Emacs is when you can't use Emacs...

I mean most plugins to emulate Emacs are just ok.. Vim emulation is generally pretty good across IDEs

I gotta say it feels so weird that after switching to neovim from vscode, my mindset switched from "missing features? I want to find the correct plugin" to "missing features? I want to write it myself"

from themes, to statusline, to tabline, to cmdline, and now to treesitter

Probably will actually write a plugin in the future if got more time

Vim tip for today 🔥

Execute command on all lines that match the pattern. Example: `:g/#/d` to delete all lines that contain the # character (for example, a comment).

:g/ - execute command on all lines that match the pattern
#/ - pattern to match
d - delete line