hongyi-zhao

Results 201 comments of hongyi-zhao

> If you query the variable `features` in a fresh emacs, you'll see that the first defined named feature is `emacs`: I checked with `emacs -Q -eval "(describe-variable 'features)"`, and...

> please try again clean init.el and please tell use whole repro step? Not quite sure what you expect me to do. Sorry for my poor English comprehension ability.

Thanks a lot for your clarification. I'll try and feedback necessary questions. BTW, why do you still want to create [yet another Emacs package manager](https://github.com/conao3/leaf.el) considering that there are already...

I tried exactly according to your instructions with your above code and Emacs works well. But it will be better if we use a list to store the packages list...

@tangxinfa > ("RET" . my/company-bypass-ret) > ("" . my/company-bypass-ret) > ("" . my/company-complete-first) > ;; Enable press TAB to search candidates > ("TAB" . my/company-search) > ("" . my/company-search)) ```...

I figured out [the solution for the question 2](https://github.com/company-mode/company-mode/discussions/1244#discussioncomment-1521875).

> This feature can be very useful, for example when I installed yasnippet and yasnippet-snippets. The latter doesn't need any configuration, and even if it did it just makes a...

But [the suggested method in prelude project by bbatsov](https://github.com/bbatsov/prelude/blob/aaedc8537c04e4af7a53690b8bbb8522d5a35b9d/core/prelude-packages.el#L56) is a general way for all cases.

Thank you for clarification. Then how to simplify/enhance the following code snippet in order to take full advantage of `use-package`'s capabilities and features: ```emacs-lisp (use-package company) (add-hook 'after-init-hook 'global-company-mode) (use-package...