Showing posts with label emacs. Show all posts
Showing posts with label emacs. Show all posts

Saturday, June 20, 2015

Writing a book in emacs

Emacs is a great tool for book editing and writing. I used reStructuredText text but Markdown, ASCIIDoc, Docbook or any number of formats would work equally well. Emacs’s ediff is a powerful diffing tool that made it possible for me to track the changes made by the proofreader and selectively apply, but also edit, the changes she made before committing them to the original manuscript. I think that feature alone made it worth writing it in Emacs.

How to write a book in Emacs, Mickey Petersen @ Mastering Emacs

A nice description of how reStructuredText and pandoc can be used in a publishing workflow.

Thursday, June 11, 2015

The Editor Wars, A Summary

Via Irreal

Wednesday, June 3, 2015

Disable emacs ido caching for bad directories on windows

I’ve been having a problem with ido screwing up on windows. Here is a fix.

;;disable ido caching on windows
(require 'ido)
(when (equal system-type 'windows-nt)
  (setq ido-max-dir-file-cache 0)
  (add-to-list 'ido-work-directory-list-ignore-regexps
           "Local Settings")
  (add-to-list 'ido-work-directory-list-ignore-regexps
           "Application Data"))

Pastebin link