Amir Dekel

Results 31 comments of Amir Dekel

A workaround: instead of just enabling the mode in `init.el` use ```emacs (if (daemonp) (add-hook 'server-after-make-frame-hook 'which-key-mode) (which-key-mode)) ```

A minor thing with background playback not worth its own issue: when reopening the player it is not focused as intuitively expected (by many I suppose). On a tiling WM...

The relevant test in `tests/Tests/Readers/Org/Meta.hs` ```haskell [ "Changing pre and post chars for emphasis" =: T.unlines [ "#+pandoc-emphasis-pre: \"[)\"" , "#+pandoc-emphasis-post: \"]\\n\"" , "([/emph/])*foo*" ] =?> para ("([" emph "emph"...

I tried more cases and it seems like this is more general that I first thought. The only characters I managed so far to have as `pre` are various parentheses,...

Tracing for `orgStateEmphasisPreChars` in the parser state shows that it updates as expected after `#+pandoc-emphasis-pre:`, i.e. also with chars that fail to become allowed before emphasis. The problem must be...

This happens to me on Ivy (Emacs Prelude) with the drop-in template ```emacs (setq org-roam-node-display-template (concat "${title:*} " (propertize "${tags:10}" 'face 'org-tag))) ``` suggested in the [commit](https://github.com/org-roam/org-roam/commit/6f5d65abd9e707b3fdb10092a9fef3b739e143dd). Strange that this...

This seems to be the same as issue https://github.com/org-roam/org-roam/issues/2066. Judging by the tags in your first screenshot, it's still not correct (unless you set `org-roam-node-display-template` to display them with a...

@nobiot @alienbogart This is not a Doom issue. It's reproduced on my setting with Emacs Prelude and Ivy. Setting `org-roam-node-display-template` to `"${title}"` "solves" the issue by not triggering it at...

@PRESFIL Indeed using this old `org-roam-node-read--to-candidate` fixes this, I can confirm for Ivy.

I agree, it's a difficult one to find an ideal solution. ``file-scope`` would indeed be problematic since in documents of such scale it's typical to reference to other chapters etc....