We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of rebinding ctrl+N, using the on_new event should work a bit better.
on_new
The text was updated successfully, but these errors were encountered:
Will this fix the issue where the plugin doesn't take effect if you just start typing in an empty Sublime window? Hope so! :)
Sorry, something went wrong.
@Viper007Bond, you can use this one instead and activate it by adding "on_new": "new_file_syntax" on user settings.
"on_new": "new_file_syntax"
This all seems like overkill. Surely all you need is a simple macro?
import sublime, sublime_plugin class EverythingIsLanguage(sublime_plugin.EventListener): def on_new(self, view): view.set_syntax_file('PutYourLanguageHere')
No branches or pull requests
Instead of rebinding ctrl+N, using the
on_new
event should work a bit better.The text was updated successfully, but these errors were encountered: