mirror of
https://github.com/ascii-boxes/boxes.git
synced 2025-02-02 02:49:14 +01:00
c049484e4c
- Updated frameworks for better browser support - Improved responsive design - Versioned documentation - Better social media support via the Jekyll SEO plugin - New looks, fwiw - Start page has some more relevant info - Documentation sorted to be more easily accessible - Internally upgraded from plain CSS to SASS
1.0 KiB
1.0 KiB
title | permalink | created_at | last_modified_at |
---|---|---|---|
Editor Integration - Emacs | editors-emacs.html | 1999-04-06 | 2014-12-23 22:50:00 +0100 |
Back to All Editors
Integration with Emacs
@zerotao kindly provided the following information on integrating boxes with Emacs:
The simple interface (only a single box style, but easy):
(defun boxes-create ()
(interactive)
(shell-command-on-region (region-beginning) (region-end) "boxes -d c-cmt2" nil 1 nil))
(defun boxes-remove ()
(interactive)
(shell-command-on-region (region-beginning) (region-end) "boxes -r -d c-cmt2" nil 1 nil))
@zerotao also wrote a [boxes mode for Emacs](https://github.com/{{ site.github }}/blob/master/doc/boxes.el). Remember to update its design list when you add new designs to your config file.