2015-11-09 15:25:20 +09:00
|
|
|
;;; boon.el --- An Ergonomic Command Mode -*- lexical-binding: t -*-
|
2014-10-18 23:16:06 +02:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
2014-10-23 13:42:18 +02:00
|
|
|
;; Boon brings modal editing capabilities to Emacs and...
|
|
|
|
;;
|
|
|
|
;; - It tries to be as ergonomic as possible.
|
|
|
|
;; - It remains lightweight (~300 loc for its core.)
|
|
|
|
;; - It attempts to integrate with Emacs as smoothly as possible
|
2014-10-18 23:16:06 +02:00
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
2016-08-31 21:58:55 +02:00
|
|
|
(require 'boon-main)
|
|
|
|
(require 'boon-keys)
|
|
|
|
(require 'boon-search)
|
|
|
|
(require 'boon-core)
|
|
|
|
(require 'boon-moves)
|
2014-10-18 23:16:06 +02:00
|
|
|
|
2014-10-19 14:17:46 +02:00
|
|
|
(provide 'boon)
|
|
|
|
;;; boon.el ends here
|