Grant Rosson

Results 35 comments of Grant Rosson

I accidentally pushed an update before I saw your changes to zetteldeft.org. I've added them back in a separate commit. Sorry about that. The update accounts for the use of...

Haven’t tested this, but try: ```elisp (defun zetteldeft-copy-id-title-current-file () "Copy current ID and title. Add the id and title from the filename the buffer is currently visiting to the kill...

It was a bit more complicated than I expected. 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...

That will be caused by the regex argument passed to `string-match` in the function above. I guess it’s not general enough, but it could be changed to match the title...

Sorry, I see my misunderstanding. I didn't realize that `deft-parse-title` takes the title from the first line of the file itself, not from the file name. My mistake!

I am in org-mode, so that might be the root of the problem. My hacky solution, then, is to add (eval visible-mode 1) to my zettekasten directory's "directory local variables"...

> Seems like a good solution, but you might want to check the variable `org-hide-emphasis-markers` instead. That should include the `[[` visibility, if I remember correctly. The variable `org-hide-emphasis-marks` only...

@tshu-w thanks for putting together this code, it's working great so far. I'm wondering if you've managed to solve the matter of running `ebib-generate-autokey` automatically after import? I've hacked the...

This seems to work so far, using `ebib--goto-entry-in-index` this time, but perhaps there's a better way. ``` (defun ebib-zotero-import-identifier (identifier) "Fetch a entry from zotero translation server via an IDENTIFIER....

This only works if the zk-id is at the front of the string output by `zk-index-format-function`, which by default it is not. Have you changed `zk-index-format` to put the ids...