JavaScript

Sublime Tip: Enable spell checking when you write Markdown

This is a huge lifesaver and I don’t know how I couldn’t come up with this before. Check out this post to learn how you can enable spell checking when writing Markdown documents with sublime.

Since I switched to Jekyll and GitHub Pages I’m writing all of my blogs posts in Markdown. Best thing I could do! Being a developer, I spend most of my time in my text editor which happens to be Sublime Text. Given its great plugin and packages ecosystem it obviously also has one for writing Markdown: MarkdownEditing.

MarkdownEditing not only allows you to quickly navigate through the document structure (ideal for large ones)

markdownediting-browsedocstructure

..but it also even does in-line highlighting (even your code) while you write

markdownediting-syntaxhighlighting

But there’s one thing that puzzled me: no spell checking. Or is there one??

Spell checking in action
Spell checking in action

Gosh!!

Here’s how you activate it.

sublime-enable-spellcheck
How to enable spell checking in sublime

You basically have to open a Markdown document, then go to Preferences > Settings - More > Syntax specific - user. Add

{
    'spell_check': true
}

That was easy, wasn’t it? Can’t believe I didn’t find this before!

Juri Strumpflohner

Juri Strumpflohner mainly operates in the web sector developing rich applications with HTML5 and JavaScript. Beside having a Java background and developing Android applications he currently works as a software architect in the e-government sector. When he’s not coding or blogging about his newest discoveries, he is practicing Yoseikan Budo where he owns a 2nd DAN.
Subscribe
Notify of
guest

This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Inline Feedbacks
View all comments
Back to top button