Getting Sublime Text 4 working with Elixir LSP
I'm running the latest versions of:
They are both installed by cloning the repo to get the latest versions:
// JavaScript variables belong to one of the following scopes: global or local(function). | |
// Basically, any variable defined outside of a function is a global variable. Variables | |
// defined inside of a function are scoped narrowly to that function, and any other | |
// functions defined within the scope of that function (explicit use of the var keyword assumed). | |
var myName = "john"; | |
var capitalizeMyName = function() { | |
myName = myName.substring(0).toUpperCase() + myName.slice(1); | |
var name = myName; |
Getting Sublime Text 4 working with Elixir LSP
I'm running the latest versions of:
They are both installed by cloning the repo to get the latest versions: