hongyi-zhao

Results 201 comments of hongyi-zhao

According to my experience, the Gmail web client has the feature of the phrase-and-sentence-based semantic completion to some extent.

Yes. It's based on AI. Another possible alternative is to [call LanguageTool from within Emacs](https://github.com/mhayashi1120/Emacs-langtool).

I tried [the company-mode backend for TabNine](https://github.com/TommyX12/company-tabnine). It looks great in a way, as shown below: ![image](https://user-images.githubusercontent.com/11155854/124225099-70fa4200-db39-11eb-92b7-9c9337a31a7c.png) See [here](https://github.com/company-mode/company-mode/issues/1128#issuecomment-872710453) for the corresponding configuration.

1. The core of [the python code](https://github.com/hongyi-zhao/test/blob/master/mu.py) is the *trapz* function. In fact, there are many ready-to-use implementations of it, say, [stdlib.fortran-lang.org](https://stdlib.fortran-lang.org/interface/trapz.html), [www.rosettacode.org](http://www.rosettacode.org/wiki/Numerical_integration), and so on. 2. In the long...

> Pyccel's aim is to translate subset of pure python code and support (partially) some libraries like `numpy, scipy, mpi4py, ...` If so, I think the following ones should have...

Comment out the following two lines in the above configuration seems to solve this problem: ```emacs-lisp (setq-local company-math-disallow-unicode-symbols-in-faces nil) (setq-local company-math-allow-latex-symbols-in-faces nil) ``` But some commands, say, `\bra`, can't be...

> This doens't seem right to me, but if it works for you ok. What's your working configuration?

If you want the normal human writing completion, the following backend should be appended to the list too: `company-ispell` But even so, there are still many commands that cannot be...

As described [here](https://github.com/jorgenschaefer/pyvenv/issues/51#issuecomment-929764706), I have found a feasible solution for the time being based on the currently implemented functions in `pyvenv`.