From b9f59c6b8058f17f268934191fd5e8b42b778c16 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 5 Sep 2024 15:29:38 -0500 Subject: [PATCH] update to dnd --- README.org | 3 ++- init.el | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.org b/README.org index 11b1dbfa..fda3156f 100644 --- a/README.org +++ b/README.org @@ -5461,6 +5461,7 @@ Using emacs to run rpg things (add-to-list 'load-path "/home/chris/dev/emacs-rpgdm/") (use-package rpgdm :config + (setq chris/dnd-character "radon") (defun chris/dnd-get-table (table range) "Get a list of the contents of any `table' and use `range' to get the info" @@ -5474,7 +5475,7 @@ Using emacs to run rpg things (let* ((skills (with-current-buffer (find-file-noselect "~/docs/notes/20240804T132141--dungeons-and-dragons__area_fun_personal.org") (org-table-get-remote-range - "skills" "@I$1..@II$2"))) + (concat "skills" "-" chris/dnd-character) "@I$1..@II$2"))) (skill (completing-read "Which skill: " (seq-filter 'stringp diff --git a/init.el b/init.el index b06567af..bea0d706 100644 --- a/init.el +++ b/init.el @@ -4020,6 +4020,7 @@ interfere with the default `bongo-playlist-buffer'." (add-to-list 'load-path "/home/chris/dev/emacs-rpgdm/") (use-package rpgdm :config + (setq chris/dnd-character "radon") (defun chris/dnd-get-table (table range) "Get a list of the contents of any `table' and use `range' to get the info" @@ -4033,7 +4034,7 @@ interfere with the default `bongo-playlist-buffer'." (let* ((skills (with-current-buffer (find-file-noselect "~/docs/notes/20240804T132141--dungeons-and-dragons__area_fun_personal.org") (org-table-get-remote-range - "skills" "@I$1..@II$2"))) + (concat "skills" "-" chris/dnd-character) "@I$1..@II$2"))) (skill (completing-read "Which skill: " (seq-filter 'stringp