angularjs sublime text editor
After working on AngularJS for sometime now, I was looking for an editor which helps to code efficiently and effectively with AngularJS. This is when I discovered Sublime Text Editor. This article presents tips on what needs to be done to write AngularJS code with Sublime Text Editor.
I have to confess that it has been a fulfilling experience to code in AngularJS with Sublime once installation and configuration is done. I was able to complete my AngularJS hello world program within few minutes. Trust me, it is worth your time. Let me know what you think about it.
Do the following and enjoy the Angular ride much more than ever:
// Settings in here override those in "Default/Preferences.sublime-settings", and // are overridden in turn by file type specific settings. { "auto_complete_selector": "source - comment, meta.tag - punctuation.definition.tag.begin", "auto_complete_triggers": [ { "characters": "ng-controller=\"*", "selector": "punctuation.definition.string" } ] }
Large language models (LLMs) have fundamentally transformed our digital landscape, powering everything from chatbots and…
As Large Language Models (LLMs) evolve into autonomous agents, understanding agentic workflow design patterns has…
In today's data-driven business landscape, organizations are constantly seeking ways to harness the power of…
In this blog, you would get to know the essential mathematical topics you need to…
This blog represents a list of questions you can ask when thinking like a product…
AI agents are autonomous systems combining three core components: a reasoning engine (powered by LLM),…
View Comments
Nice post. Very useful.
Sorry, but I could not understand one of the points in your post.
That is:
"Paste some of the following configuration (JSON format) by opening the “Preferences > Settings – User”.
There has to be an escape character before double quote for sublime to understand the auto triggering of angular controller as shown below. This will take care of issue while saving the settings.
"characters": "ng-controller=\"*",