Andrii Kolomoiets

Results 92 comments of Andrii Kolomoiets

Please see https://debbugs.gnu.org/cgi/bugreport.cgi?bug=44415

What I tried: ``` emacs -Q M-x p-ini M-x icomplete-mode M-x mini-frame-mode ``` Then evaluated your `mini-frame-show-parameters` settings and `M-x m` Maybe it is something else in your config? Please,...

It's `package-initialize`. Emacs shows the following message when invoking `M-x package-initialize` ``` You can run the command ‘package-initialize’ with M-x p-ini ```

Now, let's try this configuration without `mini-buffer` but with minibuffer separate frame with auto resize enabled: ``` emacs -Q --eval "(setq default-frame-alist '((minibuffer . nil)))" --eval "(setq resize-mini-frames t)" M-x...

I believe this is related to #78 Try turning off the mini-frame resize by setting the `mini-frame-resize` to `nil`: ```elisp (require 'mini-frame) (sets mini-frame-resize nil) (setq mini-frame-standalone t) (mini-frame-mode 1)...

@haoyuan80s Maybe enabling [pyls.plugins.jedi_completion.fuzzy option](https://github.com/palantir/python-language-server/blob/eb479ff2b214a13fd1c2fb1dcf2993a45c3bb830/vscode-client/package.json#L63) in `pyls` will help?

@haoyuan80s You are right. Enabling `fuzzy` for `pyls` doesn't help. `test.py` with point on `|`: ```python from datetime import datetime def dotandmime(): pass dtm| ``` `pyls` response: ``` [client-request] (id:18)...

@joaotavora Yes, sorry, forgot to mention configuration: ```elisp (setq-default eglot-workspace-configuration '((:pyls :plugins (:jedi_completion (:fuzzy t))))) ```

Well, here is the full receipt to check this: Emacs 28.0.50 Python 3.7.8 python-language-server 0.35.0 1. emacs -Q 2. Insert into `*scratch*` buffer: ```elisp (progn (setq package-user-dir "/tmp/tmp-elpa") (require 'package)...

How can I forget! Thanks to one great man we now have `flex` completion style in Emacs 27! @haoyuan80s If you use Emacs 27, just `(add-to-list 'completion-styles 'flex)`.