Hi folks,
Is there any program language that’s not compatible with Sublime text editor? Also, I’m would to enter the JavaScript job market - part-time - where is a good place to start?
Thanks.
kc
Hi folks,
Is there any program language that’s not compatible with Sublime text editor? Also, I’m would to enter the JavaScript job market - part-time - where is a good place to start?
Thanks.
kc
Not really. Sublime’s language handling comes down to syntax definition files which define scopes which are used for colouring and other editor components, for example identifying symbols and logical code blocks eg. functions. Sublime provides out of the box support for many languages, but unsupported languages can be easily added and in many cases already have been by members of Sublime’s community.
Much of Sublime’s programming language support is extensible. This includes syntax definitions which allow for scope definition, colourisers that provide colour schemes for ‘well known’ scopes, snippets which provide convenience for inserting ‘typical’ code blocks. Beyond that, Sublime’s Python extensions allow for virtually unlimited language specific text manipulation and convenience functions to be built.
There are some limitations - Sublime’s indenting, code folding and tabstop handling all leave something to be desired - but these aren’t major issues.
On the question of JS, I’m not sure how to read your question - do you want to know the best way to find jobs, or the best ways to learn JS?