breadncup

Results 17 comments of breadncup

Nevermind. This happens when "gls" is used which has been installed via the macport's coreutils ( sudo port install coreutils ) `(setq insert-directory-program "/opt/local/bin/gls")` This causes the issue. When I...

Looks like this patch make the fix? ```diff $ cat bm-updated3.diff.patch --- bm-original.el 2021-12-12 14:51:34.000000000 -0800 +++ bm-updated3.el 2021-12-17 15:04:52.000000000 -0800 @@ -1604,6 +1604,12 @@ (when (assoc key bm-repository) ;;...

Yes, the patch I put in previously is not working. I wish the contributor for this would fix this issue as soon as possible.

Hi Jen-Chieh, I did, but looks it doesn't seem to work. When I run below, it seems to work, but it shows incorrect the line number. In case of mu4e-compose-mode,...

There are two problems: 1. `(setq flycheck-grammarly-active-modes '(text-mode latex-mode org-mode markdown-mode mu4e-compose-mode))` is not good enough. 2. As a workaround, I run flycheck-define-generic-checker again as I told before, but the...

This is still happening in mu4e-compose Here is the output when `flycheck-grammarly--show-debug-message ` to `t` ``` [INFO] Reset grammarly requests! [4 times] connecting as [email protected] Quit [INFO] Start connecting to...

So, should we not use `post-config` for org-roam at all? It looks like `post-config` is never being called.

``` (spacemacs|use-package-add-hook org-roam :post-config ;; user configuration ) ``` I used the above format, and it works well to me before this change.

I have a private layer for my purpose and use this: ``` (defun bnc_personal/pre-init-org-roam () "Pre-initialize org-roam for personal configuration." (spacemacs|use-package-add-hook org-roam :post-init (progn (setq org-roam-directory (expand-file-name "~/roamfiles/") org-roam-db-location (concat...

It doesn't seem to work. ``` (defun bnc_personal/pre-init-org-roam () "Pre-initialize org-roam for personal configuration." (spacemacs|use-package-add-hook org-roam :post-init (progn (setq org-roam-directory (expand-file-name "~/roamfiles/") org-roam-db-location (concat bnc:dir:base "org-roam.db") ) ) :post-config (org-roam-db-autosync-mode)...