DevDev
DevDev

Reputation: 313

possibility of adding a debugger to ace-editor

There is a way to add a debugger to ace editor, I mean add breackpoints to the gutter, highlight lines, go to next step etc..

Thank you in advance

Upvotes: 5

Views: 1281

Answers (1)

Stephen Graham
Stephen Graham

Reputation: 439

This is possible, but not very straightforward.

Cloud9 do this and the plugin code they use is available at: https://github.com/c9/c9.ide.run.debug

The c9.ide.run.debug package offers a set of plugins that provide a generic, configurable and extendable user interface for step-through debuggers.

They talk more about it at: https://cloud9-sdk.readme.io/docs/debugger-plugin

Upvotes: 3

Related Questions