浏览代码

Added a README

Samuel W. Flint 9 年之前
父节点
当前提交
98eaaea485
共有 1 个文件被更改,包括 12 次插入0 次删除
  1. 12 0
      README.md

+ 12 - 0
README.md

@@ -0,0 +1,12 @@
+This is Buffer Layers, a simple, layer-based buffer management system.
+
+It works by defining buffer layers using a fairly simple macro.  An example is as follows:
+
+```elisp
+(define-buffer-layer org
+  :files ("~/org/"
+          "~/org/main.org")
+  :buffer-to-select "main.org"
+  :run-on-apply ((my/find-current-notes-file)))
+```
+