Ask HN: Good fast IDE for reading and navigating code in multiple languages
1–10 of 12 posts
With the use AI I find myself writing less and less code, but reading way more than before at work. I have been using IDEA, because in my experience no IDE offers code inspection and navigation as good as IDEA across multiple languages. But it's very slow and mostly geared towards refactoring and editing. I have used VScode and I found it lacking as it is also slow. Nvim is very close to what I want but it takes some getting used to. Which IDE do you use?
Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#2Good, fast, easy for novices.
Choose two.
I use nvim and emacs.
Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#3Good, fast, easy for novices. Choose two. I use nvim and emacs.
Nvim is good but requires set up which now I delegate to Claude
Emacs feels too slow and not good if you have carpel tunnel syndrome
Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#4[flagged]
Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#5Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#6Neovim is where it's at. You can use lazyvim which has tons of languages you can select to add LSPs for.
Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#7antigravity
Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#8Neovim is where it's at. You can use lazyvim which has tons of languages you can select to add LSPs for.
well i am lazy and i dislike my experience of configuring astrovim
Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#9Lightest weight: bat and ripgrep
Though not a traditional ide
Re: Ask HN: Good fast IDE for reading and navigating code in multiple languages
#10I use Emacs and ripgrep with the deadgrep plugin[0]. Emacs does have the `rgrep` command but the plugin presents a nicer interface. With no Emacs, I use `ripgrep` (sometimes with fd for the file candidates) and `less`.
I only bother with LSP for projects I'm currently working on. Even then, I sometimes use `project-find-regexp` for whole codebase search.
In Vim, I had the fzf plugin[1] with the command `:RG` bound to fg.