Last Updated: February 25, 2016
·
9.102K
· leostatic

Spell Check for Markdown in Sublime Text

There's no point of enabling spell check for your html/js/css/c/php/py.... files but when you are writing in Markdown, you'd probably appreciate spell check. It is simple enough to enable specifically for Markdown.

Open any markdown file.
Go to:
(Preferences) -> (Settings - More) -> (Syntax Specific - User)

This will open up a file named: Markdown.sublime-settings

Add the following

{
  "spell_check": true
} 

Save it in ~/.config/sublime-text2/Packages/User/ and you are done.

8 Responses
Add your response

great suggestion. thanks much!

over 1 year ago ·

cool! I just applied this tip to Sublime 3. Once you open this file, you can use Save As and it should open that User folder. Also, to turn on spell checking, see View > Spell Check or press F6.

over 1 year ago ·

Proper key is spell_check

over 1 year ago ·

Awesome, thanks for the tip ;)

over 1 year ago ·

Cool cool! Thank you sir!

over 1 year ago ·

I think it's:

{
    "spell_check": true
}

With an underscore.

over 1 year ago ·

Ah, yes, that should be an underscore. Edited. Thanks!

over 1 year ago ·

Thanks for the concise help on this!

over 1 year ago ·