1

How do I permanently extend my PATH variable from sublime text 3?

Specifically I am doing this for my scala REPL for the SublimeREPL package

"default_extend_env": {'{PATH};H:\\scala-2.10.2\\bin'},

I get "error trying to parse strings" error, and have tried with ", and with single \.

A T
  • 13,008
  • 21
  • 97
  • 158

1 Answers1

0

You forgot to add the key name "PATH":

"default_extend_env": { "PATH" : "{PATH};H:\\scala-2.10.2\\bin" }

Your full user config file should look like this:

{
   "default_extend_env": { "PATH" : "{PATH};H:\\scala-2.10.2\\bin" }
}
Massimiliano
  • 16,770
  • 10
  • 69
  • 112