emacsmirror / waf-mode

Waf integration for Emacs

Home Page:https://bitbucket.org/dvalchuk/waf-mode

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

waf-mode

Waf integration for Emacs Waf Documentation: https://github.com/waf-project/waf

How to enable:

(use-package waf-mode
  :ensure t
  :pin melpa
  :init
  (setq waf-mode-keymap-prefix (kbd "C-c b"))  ;; Or any other prefix - you prefer. By defaul it will be "C-c ^".
  (add-hook 'python-mode-hook #'waf-conditionally-enable)
  (add-hook 'c++-mode-hook #'waf-conditionally-enable)
  (add-hook 'c-mode-common-hook #'waf-conditionally-enable))

Default key bindings:

  1. "C-c ^" - prefix
  2. " b" - build
  3. " c" - clean
  4. " C" - configure
  5. " r" - re-build
  6. " R" - re-configure
  7. " B" - re-build all

About

Waf integration for Emacs

https://bitbucket.org/dvalchuk/waf-mode

License:GNU General Public License v3.0


Languages

Language:Emacs Lisp 100.0%