codebug

https://github.com/shano/emacs-codebug.git

git clone 'git://github.com/shano/emacs-codebug.git'
2

emacs-codebug

Emacs plugin for interaction with Codebug (http://codebugapp.com)

Installation

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

Usage

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

Customization

To set up a shortcut for example C-c b, add this to your .emacs

(global-set-key (kbd "C-c b") 'codebug)

Bitdeli Badge