Yue Bulu
Yue Bulu
A "String" in Elisp VM can be used to present a byte slice `Vec`, not only a regular string. We can enable this conversion for the convenience. And we can...
According to https://rust-lang.github.io/api-guidelines/naming.html. I think we'd better to rename `make_global_ref` to `to_global_ref` to help user discover this API. What's your opinion?
crun expose a static archive(or even shared library if you want) for user, but lacks a good header file to use it. If I want to use libcrun in my...
Fluent is a wonderful project for localization. Somebody is talking about use fluent to power the localization of Emacs. Emacs is written in C and Elisp, a C interface of...
Current web-mode doesn't use `lexical-binding` According to the docstring of `lexical-binding` ``` Non-nil means that the code in the current buffer should be evaluated with lexical binding. This variable is...
``` Selector: t Passed: 123 Failed: 1 (1 unexpected) Skipped: 1 Total: 125/125 Started at: 2019-08-10 12:16:20+0800 Finished. Finished at: 2019-08-10 12:16:21+0800 .......................................................................F.....................s............................... F company-idle-begin-allows-async-candidates (ert-test-failed ((should (equal '("abc" "abd")...
 I think use `pulse-momentary-highlight-*` to flash target line(marked with red block in picture) when navigating in lsp-ui-peek-mode by using `C-n` `C-p` is useful. But it seems LSP servers won't...
Thank you for taking the time to report an issue and improve Flycheck. This template is for **actual bugs you observed**. If you have trouble setting up Flycheck, or if...
https://github.com/wingo/fibers/blob/master/fibers/scheduler.scm#L272 I see `(atomic-box-set! box (+ (atomic-box-ref ...) ...))` pattern here, but IIUC this will cause race condition in multithreading context, the box maybe update after `atomic-box-ref` and before `atomic-box-set!`...