Youmu

Results 107 comments of Youmu

Could you provide a reproducible recipe? I'm using Emacs 30, the latest `evil` and `evil-collection` without errors.

What would you expected? And what's the current situation. Please elaborate more

There are many `bazel-mode`s in Emacs community. Everybody has his own configs. Looking at https://github.com/bazelbuild/emacs-bazel-mode, it provides the essential syntax highlighting, formatting and `bazel build/test/run` facilities which makes `bazel` integrate...

I found that `describe-variable` is 5x slower than ivy even `selectrum-should-sort-p` is `nil` ``` emacs-lisp ;; The default selectrum (benchmark 1 '(call-interactively #'describe-variable)) ;;=> "Elapsed time: 0.964549s" ;; selectrum with...

:+1: The ultimate response time

> We refer to our code here for the llama2 prompt: https://github.com/THUDM/LongBench/blob/main/pred.py#L33 The INST is necessary for llama2-7b/llama2-13b?

> Huh, since when is that not allowed? I get no warnings on GNU Emacs 29.3. Emacs 30 complains.

I'm upgrading Emacs to 31.0.50, It can still be reproduced in emacs -Q. ```bash # emacs -Q (byte-recompile-directory "~/.emacs.d/elpa/evil-20240915.832" 0 t) # fix the evil path ``` In the Compile-Log...

我已经复现出来了,看起来是 native-comp 的问题,与 xwidget 无关。 ``` emacs-lisp (with-temp-buffer (insert-file-contents "/home/condy/.emacs.d/elpa/lsp-mode-20241011.445/lsp-mode.el") (package-buffer-info)) ;; 根因其实是 package-read-from-string (package-read-from-string "((emacs))") ``` 首先可以以 lsp-mode.el 为例,看看有没有问题。我在 emacs-git 下测试是没有问题的,随后又安装了 archlinuxcn/emacs-native-comp-git 测试存在问题。 ```emacs-lisp (defun package-read-from-string (str) "Read a...