Name of Mine

Results 84 comments of Name of Mine

First, thanks for your help. I actually learned from other users and set my orgfiles to be of the form: ```orgmode #+startup: overview #+startup: indent #+options: toc:nil num:nil #+todo: TODO...

Thanks! (1) deft-strip-title-regexp: `"\\(?:^%+\\|^#\\+TITLE: *\\|^[#* ]+\\|-\\*-[[:alpha:]]+-\\*-\\|^Title:[ ]*\\|#+$\\)"` This is a regex issue, and I don't know much regex, so I guess I will be stuck here. I read the thread...

> ```emacs-lisp > (setq zetteldeft-link-indicator "[[") > (setq zetteldeft-link-suffix "]]") > (setq zetteldeft-id-format "%Y%m%d%H%M") > (setq zetteldeft-id-regex "20[0-9]\\{10\\}") > ``` Is this a viable formatting for links in zetteldeft that...

Yes, just tried. I noticed some discussion around this topic. I suppose there is no way to have it then! :)

Thanks for this. I wanted to know whether I should open a new issue for this quick question, relevant here: How to customize the link format? AT the moment it...

Thanks for this. I just tried and it prompts to find the file. The scenario I have in mind is the following: 1. I work on a file and copy...

Thanks! It's not working, and giving me this error: `Debugger entered--Lisp error: (wrong-type-argument stringp nil)`

Thanks. Now it won't spit out any error message. For some reason it's returning: `[2022-03-03-1911-16]]: nil`

Thanks. So in the lines ``` concat "\\(?1:" zetteldeft-id-regex "\\).\\(?2:.*\\)") ``` I should replace `\\).\\(?2:.*\\`) by my `zetteldeft-id-regex` expression?

> > The functions zetteldeft--lift-file-title and zetteldeft--id-to-title return a title in the form "id title", so it's necessary to extract the actual title manually with the regexp. :/ > >...