diff options
author | Thanos Apollo <[email protected]> | 2023-12-19 20:19:48 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-12-19 20:19:48 +0200 |
commit | 13837a97f9b4ed2afbf1c01d9f9f66387df93d78 (patch) | |
tree | 02cfdf31b7180c34cf888031c27647f3bee9af9e | |
parent | fffb1d949c5fdaac7fb83cc62ff6a2c3b63639a8 (diff) |
Fix displaying of questions
-rw-r--r-- | gnosis.el | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -77,9 +77,12 @@ Example: (defun gnosis--display-question (id) "Display main row for question ID." (let ((question (gnosis-get 'main 'notes `(= id ,id)))) - (erase-buffer) - (insert question 1) - (sit-for 0.5))) + (with-current-buffer + (switch-to-buffer + (get-buffer-create "*gnosis*")) + (erase-buffer) + (insert question) + (sit-for 0.5)))) (defun gnosis--ask-input (prompt) "PROMPT user for input until `q' is given. |