Youmu

Results 107 comments of Youmu

> @condy0919 非常感谢,我也十分怀疑 AOT native comp,但不会举证。想请教一下 native compile 出来的二进制位置在哪,如何查看。 ```elisp (cl-letf (((symbol-function 'delete-file) 'ignore)) (native-compile 'package-read-from-string)) ``` 然后在 /tmp/ 里查看 freefn 开头的 eln 文件, `objdump -d freefn-xxxyyyzzz.eln` 默认 AOT 是在...

> 很奇怪,还是有问题。 > > 现在好像没啥继续排查的思路了😕 要不你去邮件列表问问?

> 我看到别的地方有人指出根因了:https://github.com/syl20bnr/spacemacs/issues/16619#issuecomment-2708483244 ,这应该是上游的问题: > https://debbugs.gnu.org/cgi/bugreport.cgi?bug=76523 > https://debbugs.gnu.org/cgi/bugreport.cgi?bug=63288 > > 按我的理解,应当是说,当启用 AOT,并且高度并行化地构建 emacs 时,由于 native comp 的一些优化策略,就会导致有些 elisp 代码编译出错误的结果。 > > 目前上游 master 应该已经修复了,从而 archlinuxcn 的打包也好了(我试了),倒是正式版 30.1 还没 backport 过来 😂。...

The option `evil-collection-calendar-want-org-bindings` is to enable ``` c org-calendar-goto-agenda i org-agenda-diary-entry ``` M-x calendar then type `c` or `i`. Make sure `org-agenda-diary-file` is not `'diary-file`.

The binding are defined in `org-read-date-minibuffer-local-map` keymap. ```elisp (define-key org-read-date-minibuffer-local-map (kbd "j") (kbd "S-")) ``` to get evil-style motion. IMO, it's an org integration. Currently the org integration of evil-collection...

I'm using Emacs master (transient 0.7.4 is bundled), can't reproduce this issue.

Thanks, a great idea. But > evil-collection-consult.el:183:2: Error: docstring has wrong usage of unescaped single quotes (use \= or different quoting)

I can't reproduce that. A minimal POC is required.

It seems like the autoload file of evil-collection doesn't provide the definition of python-ts-mode. How do you turn on evil-collection-mode. My setup: ```elisp (use-package evil-collection :ensure t :hook (evil-mode ....