Shaun Mitchell

Results 12 comments of Shaun Mitchell

I'm not sure where best to ask this, but what is the best way to work on this repository? I'm using it with glow, which currently imports `github.com/charmbracelet/glamour`. If I...

> Fair point. This is what the method currently looks like: > > ```go > func findEditor() (string, error) { > if os.Getenv("EDITOR") != "" { > return os.Getenv("EDITOR"), nil...

I went ahead and added the option :D Just waiting on them to review / approve the PR [![asciicast](https://asciinema.org/a/bux2n3SusgqKkqNdwRHjaunOM.svg)](https://asciinema.org/a/bux2n3SusgqKkqNdwRHjaunOM)

> Could not fork a fork. Lol! The change I wanted to make was to add the values ["code", "subl"] to the "editors" array. Code is for VSCode, and Subl...

No problem :) If you're not familiar with how to set the EDITOR variable, you put something like this in your .bashrc file: ```bash export EDITOR="subl" ``` Then, whenever you...

Well if anyone wants to use this, you can clone: https://github.com/shitchell/glow/tree/editor The guys in charge said (1) they're pretty busy and probably won't be able to review it for a...

> Any update on this? Would be way more practical to use Glow if I could create new documents via Glow and edit them as well. I've got a version...

So I'm realizing now which parts of this should be (non-)blocking. Launching the editor needs to be blocking. But once the edits are made, saving the local file / stashing...

Alright, as far as I can tell, this is in a pretty good state. Found no bugs while testing. Code is much more organized. Stuff that should block blocks and...

Baha, no worries. I'm happy to look over it, too. If there's a fork or branch where the update is being worked on, I could look over adjusting my code...