summaryrefslogtreecommitdiff
path: root/README.emacs
diff options
context:
space:
mode:
Diffstat (limited to 'README.emacs')
-rw-r--r--README.emacs18
1 files changed, 18 insertions, 0 deletions
diff --git a/README.emacs b/README.emacs
new file mode 100644
index 000000000..277424230
--- /dev/null
+++ b/README.emacs
@@ -0,0 +1,18 @@
+To match the CVC4 coding style, drop the following in your ~/.emacs,
+replacing "/home/mdeters/cvc4.*" in the last line with a regexp
+describing your usual cvc4 editing location(s):
+
+
+; CVC4 mode
+(defun cvc4-c++-editing-mode ()
+ "C++ mode with adjusted defaults for use with editing CVC4 code."
+ (interactive)
+ (message "CVC4 variant of C++ mode activated.")
+ (c++-mode)
+ (setq c-basic-offset 2)
+ (c-set-offset 'innamespace 0)
+ (setq indent-tabs-mode nil))
+(setq auto-mode-alist (cons '("/home/mdeters/cvc4.*/.*\\.\\(cc\\|cpp\\|h\\|hh\\|hpp\\)$" . cvc4-c++-editing-mode) auto-mode-alist))
+
+
+-- Morgan Deters <mdeters@cs.nyu.edu> Mon, 02 Nov 2009 18:19:22 -0500
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback