Nice idea! I’m excited to check it out. I write a lot of docs in Markdown and this could be a great way to browse them. Out of curiosity, have you seen glow[0]? [0] https://github.com/charmbracelet/glow
Show HN: Frogmouth – A Markdown browser for the terminal
31–40 of 71 posts
Re: Show HN: Frogmouth – A Markdown browser for the terminal
#32I'm a big fan of the Markdown Preview feature in VS Code Honest question: why do developers insist so much on using command line based tools? What's the advantage over using an IDE? (e.g. VS Code or PyCharm)
Re: Show HN: Frogmouth – A Markdown browser for the terminal
#33Re: Show HN: Frogmouth – A Markdown browser for the terminal
#34You might consider Sixel support as a way of doing images. There are a number of excellent libraries that support it.
Re: Show HN: Frogmouth – A Markdown browser for the terminal
#35Nice! Is there a story behind the name Frogmouth?
We're using bird names as a convention for our projects. Which may or may not be the name of the apps. Frogmouth felt more memorable than "mdbrowser" or "markdown-view"
Re: Show HN: Frogmouth – A Markdown browser for the terminal
#36Earlier quoted context omitted.
I used to prefer Vim but moved to using IDEs. In professional development, you want to use the best tools - a forklift vs. a shovel. I don’t think text editors are the best tool for that, but why do programmers insist on using worse tools? From my previous experience, I’d guess it’s these psychological factors: 1. IDEs have more cognitive overhead, and programmers have to keep a lot of state in their heads. So using…
> 3. A lot of programmers have a sense of elitism, and using text-based tools looks retro and more intimidating to those not familiar with it. In so doing, this validates the view of oneself as a member of a priestly class of text-slinging wizards. That's usually what I hear from people finding out I like/use Vim. It's like they can't come to peace with the fact that I like it for its bindings and plugins, no, it has…
Re: Show HN: Frogmouth – A Markdown browser for the terminal
#37I'm a big fan of the Markdown Preview feature in VS Code Honest question: why do developers insist so much on using command line based tools? What's the advantage over using an IDE? (e.g. VS Code or PyCharm)
I used to prefer Vim but moved to using IDEs. In professional development, you want to use the best tools - a forklift vs. a shovel. I don’t think text editors are the best tool for that, but why do programmers insist on using worse tools? From my previous experience, I’d guess it’s these psychological factors: 1. IDEs have more cognitive overhead, and programmers have to keep a lot of state in their heads. So using…
Have you tried LSP, say like in a LunarVIM or AstroVIM setup? These are self-contained packagings so you don't have to fiddle around with plugins (though you can also achieve the same results through plugins), and as I understand it you get the same code completion and intelligence you get in VSCode.
Re: Show HN: Frogmouth – A Markdown browser for the terminal
#381. Zellij split panes
2. Left pane: Helix editor with built-in Marksman (markdown LSP) support.
3. Right pane: watchexec (re- runs commands when watched files change) running Glow (Terminal markdown renderer) on the last modified markdown file (‘ls’ gives you that)
Then you can use ‘gd’ and whatnot to move between references from one markdown file to another.
This is easily composed of smaller parts, so you can use vim instead of helix, tmux instead of zellij, mdcat instead of glow.
It’s really the same process I might use to edit code on the left and re run tests or compiler checks or linting on the right. Since I was already doing those things, turning my terminal into a markdown viewer was trivial.
Re: Show HN: Frogmouth – A Markdown browser for the terminal
#39Could one use this for epubs?