Questions regarding the ZK-Desktop view #58
anthrolisp
started this conversation in
Ideas
Replies: 1 comment
-
Interesting ideas! The following comes to mind, just as a starting point --- trying running this in a buffer with zk-ids: (defun zk-concat ()
(interactive)
(goto-char (point-min))
(while (re-search-forward zk-id-regexp nil nil)
(let ((id (match-string-no-properties 1)))
(get-buffer-create "ZK-Concat")
(with-current-buffer "ZK-Concat"
(insert-file (zk--parse-id 'file-path id))
(newline))))) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I can imagine the ZK-Desktop view as a place to work on different writing projects. Two thoughts:
Beta Was this translation helpful? Give feedback.
All reactions