From 69081ab0baeab6fd6ffa688a0042f820f3d95fbb Mon Sep 17 00:00:00 2001 From: Howard Abrams Date: Sun, 6 Feb 2022 20:11:45 -0800 Subject: [PATCH] Better loading of the tables --- .gitignore | 2 ++ README.org | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cc30d3d --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +kannan.org +tables/captiva*.org diff --git a/README.org b/README.org index a2387f3..f28dcd5 100644 --- a/README.org +++ b/README.org @@ -229,7 +229,7 @@ Assuming we have a new character, let's query the user for all of these stats, a (setq name (rpgdm-tables-choose "names-ironlander"))) (goto-char (point-max)) (insert "# Local Variables: - # eval: (progn (require 'rpgdm-ironsworn) (rpgdm-mode) (rpgdm-tables-load (concat rpgdm-ironsworn-project \"tables\"))) + # eval: (progn (require 'rpgdm-ironsworn) (rpgdm-mode)) # End: ") (insert (format frmt name)) @@ -674,7 +674,7 @@ Let's make sure these function work as we expect: Shawn Tompkin has created some useful oracles (random tables) to consult. I'm breaking my own [[https://gitlab.com/howardabrams/emacs-rpgdm][rpgdm project]] convention, and having this code automatically load those tables. #+BEGIN_SRC emacs-lisp -(rpgdm-tables-load "ironsworn") + (rpgdm-tables-load (concat rpgdm-ironsworn-project "tables")) #+END_SRC He designed many of the tables to work together, for instance, you should roll on both the [[file:tables/actions.org][actions]] and [[file:tables/themes.org][themes]] and combine the result to kick-start your ideas.