I Preserve the Old Ways I Guess?

13 dbalatero 2 8/20/2025, 10:02:16 PM learncodethehardway.com ↗

Comments (2)

c0balt · 54m ago
> This is similar to the red squiggles enjoyer, [..] I tend to just write my code so that I know where everything is, keep it small, and name things in a way that matches how I'm coding.

An interesting take, I do aim for the same style (especially as LSPs can break) but in shared code bases this almost always seems to be an issue.

Ime it mostly comes down to the other collaborators having a different naming sense. Keeping it small similarly can be challenging as code grows organically and debt is accumulated. At that point code navigation (especially workspaces wide goto and fuzzy symbol search) becomes immensly useful for fast navigation.

zem · 47m ago
I used to be a vim-without-lsp dev too, but "jump to definition" really is worth setting up the lsp integration.