Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Was able to get XDEBUG working with this new plugin https://github.com/martomo/SublimeTextXdebug. Need to follow the directions in the readme for constructing appropriate settings. I have attached an example of kalademo.sublime-project:

 
Code Block
languagejs
 {

...


 "folders":

...


 [

...


  {

...


   "path": "/Users/mpirog/kalabox/www/kalademo"

...


  }

...


 ],

...


 "settings":

...


  {

...


   "xdebug": {

...


    "path_mapping": {

...


      "/var/www/kalademo" : "/Users/mpirog/kalabox/www/kalademo"

...


     },

...


    "ide_key": "sublime.xdebug",

...


    "url": "kalademo.kala",

...


    "port": 9000

...


   }

...


  }

...


 }

 

In order to get the get the debugger running you need to attach the following to the page you are debugging:

...