├── .flake8 ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── Context.sublime-menu ├── Default (OSX).sublime-keymap ├── Default.sublime-commands ├── Default.sublime-keymap ├── LICENSE ├── Main.sublime-menu ├── README.md ├── Xdebug.sublime-settings ├── Xdebug.tmLanguage ├── icons ├── breakpoint_current.png ├── breakpoint_disabled.png ├── breakpoint_enabled.png └── current_line.png ├── main.py ├── messages.json ├── messages └── 1.1.0.txt ├── tests ├── integration │ ├── test_breakpoint_exception.py │ ├── test_breakpoint_start.py │ ├── test_breakpoint_step.py │ └── test_debug_layout.py ├── php-server ├── php-xdebug │ └── Dockerfile └── server │ ├── logs │ └── .gitkeep │ └── public │ ├── breakpoint_exception.php │ ├── breakpoint_exception_parse_error.php │ ├── breakpoint_start.php │ ├── breakpoint_step.php │ ├── index.php │ └── version.php ├── unittesting.json └── xdebug ├── __init__.py ├── config.py ├── dbgp.py ├── elementtree ├── ElementInclude.py ├── ElementPath.py ├── ElementTree.py ├── HTMLTreeBuilder.py ├── SgmlopXMLTreeBuilder.py ├── SimpleXMLTreeBuilder.py ├── SimpleXMLWriter.py ├── TidyHTMLTreeBuilder.py ├── TidyTools.py ├── XMLTreeBuilder.py └── __init__.py ├── helper ├── __init__.py ├── helper.py ├── helper_26.py ├── helper_27.py └── ordereddict.py ├── load.py ├── log.py ├── protocol.py ├── session.py ├── settings.py ├── unittesting.py ├── util.py └── view.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/.travis.yml -------------------------------------------------------------------------------- /Context.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/Context.sublime-menu -------------------------------------------------------------------------------- /Default (OSX).sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/Default (OSX).sublime-keymap -------------------------------------------------------------------------------- /Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/Default.sublime-commands -------------------------------------------------------------------------------- /Default.sublime-keymap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/Default.sublime-keymap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/LICENSE -------------------------------------------------------------------------------- /Main.sublime-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/Main.sublime-menu -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/README.md -------------------------------------------------------------------------------- /Xdebug.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/Xdebug.sublime-settings -------------------------------------------------------------------------------- /Xdebug.tmLanguage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/Xdebug.tmLanguage -------------------------------------------------------------------------------- /icons/breakpoint_current.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/icons/breakpoint_current.png -------------------------------------------------------------------------------- /icons/breakpoint_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/icons/breakpoint_disabled.png -------------------------------------------------------------------------------- /icons/breakpoint_enabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/icons/breakpoint_enabled.png -------------------------------------------------------------------------------- /icons/current_line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/icons/current_line.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/main.py -------------------------------------------------------------------------------- /messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/messages.json -------------------------------------------------------------------------------- /messages/1.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/messages/1.1.0.txt -------------------------------------------------------------------------------- /tests/integration/test_breakpoint_exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/tests/integration/test_breakpoint_exception.py -------------------------------------------------------------------------------- /tests/integration/test_breakpoint_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/tests/integration/test_breakpoint_start.py -------------------------------------------------------------------------------- /tests/integration/test_breakpoint_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/tests/integration/test_breakpoint_step.py -------------------------------------------------------------------------------- /tests/integration/test_debug_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/tests/integration/test_debug_layout.py -------------------------------------------------------------------------------- /tests/php-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/tests/php-server -------------------------------------------------------------------------------- /tests/php-xdebug/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/tests/php-xdebug/Dockerfile -------------------------------------------------------------------------------- /tests/server/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/server/public/breakpoint_exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martomo/SublimeTextXdebug/HEAD/tests/server/public/breakpoint_exception.php -------------------------------------------------------------------------------- /tests/server/public/breakpoint_exception_parse_error.php: -------------------------------------------------------------------------------- 1 |