That’s what I was doing for 4 years (vim), but live preview and easy copy and paste with the mouse makes writing significantly faster. Copy and paste is more annoying in Vim (because it’s modal and I use the terminal, not gvim), and I realized that the writing process involves extreme amounts of copying between different drafts, from the web, from code examples, etc.
I’m fastest with vim for code, but not for writing blog posts
For pulling copy/paste in from other environments, I’ve found the defining :Copy and :Paste commands to interact with the system clipboard to be really helpful. It’s taken me from “Vim is hard to copy/paste” to “I can copy anything up to, and including terminal output”.
Thanks! I tried it and it does work. (It’s funny that after using Vim for 15 years I have no idea how any of that works :-/ )
Still I think I prefer mouse-based copy-and-paste for blog writing. I have a keyboard-only workflow for code, but writing pulls in content from many different sources, and the revision process is very different.
Cool, I will probably try this out. Right now I’m using https://stackedit.io which is in-browser and has live preview. Even though it’s a browser app, it’s very fast. It doesn’t hit the network at all unless you tell it to. It’s essentially a “local first” app.
Does anyone use another markdown editor with live preview? I see VSCode. I saw things like
I’m a sucker for “WYSIWYG” for Markdown. I tried marktext for a while, but for some reason I don’t recall now I eventually came back to https://www.zettlr.com/. It’s still Electron AFAIK, but I haven’t seen a non-Electron WYSIWYG markdown editor yet, nor have written one either still.
I like the idea of the “Hemingway Mode”, to disable the backspace and delete keys. It must be efficient to force the user to keep writing, and not editing.
Never understood the need for “markdown editors”. Isn’t it simple enough to use your everyday text editor?
Because it’s super useful for someone non-tech.
Using this app you send .md files to your coworkers. Alternatives are:
All in all I find it’s a good way to spread the use for markdown.
That’s what I was doing for 4 years (vim), but live preview and easy copy and paste with the mouse makes writing significantly faster. Copy and paste is more annoying in Vim (because it’s modal and I use the terminal, not gvim), and I realized that the writing process involves extreme amounts of copying between different drafts, from the web, from code examples, etc.
I’m fastest with vim for code, but not for writing blog posts
For pulling copy/paste in from other environments, I’ve found the defining
:Copy
and:Paste
commands to interact with the system clipboard to be really helpful. It’s taken me from “Vim is hard to copy/paste” to “I can copy anything up to, and including terminal output”.From my .vimrc
Thanks! I tried it and it does work. (It’s funny that after using Vim for 15 years I have no idea how any of that works :-/ )
Still I think I prefer mouse-based copy-and-paste for blog writing. I have a keyboard-only workflow for code, but writing pulls in content from many different sources, and the revision process is very different.
Totally fair, just thought I’d share something I’d found very useful
With
and xsel being installed you can share the Vim and X clipboards.
I use VS Code + the built in preview. Has worked excellently for years.
Cool, I will probably try this out. Right now I’m using https://stackedit.io which is in-browser and has live preview. Even though it’s a browser app, it’s very fast. It doesn’t hit the network at all unless you tell it to. It’s essentially a “local first” app.
Does anyone use another markdown editor with live preview? I see VSCode. I saw things like
https://github.com/marktext/marktext
but I didn’t want to use an Electron app. I also looked at:
https://remarkableapp.github.io/linux/screenshots.html
but it wasn’t quite what I wanted.
I’m a sucker for “WYSIWYG” for Markdown. I tried marktext for a while, but for some reason I don’t recall now I eventually came back to https://www.zettlr.com/. It’s still Electron AFAIK, but I haven’t seen a non-Electron WYSIWYG markdown editor yet, nor have written one either still.
I got lot of alternate suggestions on linux subreddit. See if any of them fits your need.
I was about to be disappointed that the homepage documented it as using Sundown as a base, but I see they transitioned to cmark-gfm last June-ish.
I like the idea of the “Hemingway Mode”, to disable the backspace and delete keys. It must be efficient to force the user to keep writing, and not editing.
I find ed(1) provides a similar experience. It is quite nice in the beginning of the writing process.
Been using it for a couple of years. Good application
Just another tool placement 😞