When I'm opening a new file (e.g. with Ctrl+N), the default Syntax in Sublime Text 3 is just Plain Text. I would like to change that into e.g. Markdown. (How) Is that possible?
I would like to avoid a "hacky" solution as proposed here:
creat a file in your Packages/User directory called 'default_syntax.py' or something, and add this:
import sublime, sublime_plugin class DefaultSyntaxCommand(sublime_plugin.EventListener): def on_new(self, view): view.set_syntax_file('Packages/HTML/HTML.tmLanguage')
Markdown
regardless of content? – Atone