Use Markdown as default language for new docs.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add this script in your SublimeText Packages/User directory | |
import sublime, sublime_plugin | |
class DefaultSyntaxCommand(sublime_plugin.EventListener): | |
def on_new(self, view): | |
view.set_syntax_file('Packages/Markdown/Markdown.tmLanguage') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment