https://github.com/shano/emacs-codebug.git
git clone 'git://github.com/shano/emacs-codebug.git'
Emacs plugin for interaction with Codebug (http://codebugapp.com)
Add this to your emacs init
(when (>= emacs-major-version 24)
(require 'package)
(package-initialize)
(add-to-list 'package-archives '("melpa" . "http://melpa.milkbox.net/packages/") t)
)
Then restart emacs and run
M-x package-install codebug
Require this script in your emacs iniit file
(require 'codebug)
Then navigate to the breakpoint line you wish to set and activate with M-x codebug
To set up a shortcut for example C-c b, add this to your .emacs
(global-set-key (kbd "C-c b") 'codebug)