Is there an application you use to read code? And am I alone in feeling the need of such tool?
Ask HN: Is there a tool you use just for reading code?
1–10 of 16 posts
Re: Ask HN: Is there a tool you use just for reading code?
#2I write code with emacs. I could turn a file in read only mode but I prefer not to mix what I'm working on with what I'm only reading.
Re: Ask HN: Is there a tool you use just for reading code?
#3I don’t understand what is special about what you’re describing that isn’t done in hundred different IDEs
Re: Ask HN: Is there a tool you use just for reading code?
#4Re: Ask HN: Is there a tool you use just for reading code?
#5If it’s a single file I want to check out, I have an alias for “nvim -R” which I use a lot. Vim’s syntax highlighting is very good, prevents me from making accidental changes, and is very convienent if I’m in the terminal already.
If I’m looking at code on GitHub then their code-search feature is very cool (cs.GitHub.com or by pressing cmd+shift+f on GitHub).
Re: Ask HN: Is there a tool you use just for reading code?
#6Re: Ask HN: Is there a tool you use just for reading code?
#7i also have a self hosted instance of this : https://elixir.bootlin.com/linux/latest/source
what you asked, comes across with code auditing as well, i wasn't surprised to know security researchers use sourcetrail as well.
hope your favourite language is supported.
Re: Ask HN: Is there a tool you use just for reading code?
#8It is nice because it links to function and method definitions where it can, so as I go through the code I open each function I am teaching in a new tab - the open tab set simulates the call stack.
Re: Ask HN: Is there a tool you use just for reading code?
#9Print the relevant sections off to read and use pen to mark and note against them; I find it extremely useful (and less tiring on the eyes) for linking functions and clarifying code.