CodeIntel
CodeIntel copied to clipboard
Full-featured code intelligence and smart autocomplete engine
## ENV python version: ``` python3 --version Python 3.7.4 ``` host OS: ``` sw_vers ProductName: Mac OS X ProductVersion: 10.14.6 BuildVersion: 18G95 ``` install method: ```bash pip3 install --upgrade --pre...
Add linux aarch64 wheel build support. Related to https://github.com/SublimeCodeIntel/CodeIntel/issues/16
Problem --------- On aarch64, ‘pip install CodeIntel’ builds the wheels from source code and then installs it. It requires the user to have a development environment installed on his system....
With the following code: ```php private EntityManagerInterface $entityManager; ``` Auto-completion for methods of `$this->entityManager` does not work The following works fine: ```php /** * @var EntityManagerInterface */ private $entityManager; ```...
I am running `pip3 install --upgrade --pre CodeIntel` command and getting this error: > error: Microsoft Visual C++ 14.0 or greater is required. Get it with "Microsoft C++ Build Tools":...
This package, when installed from PyPI, lists 3to2 as a requirement. 3to2 can't even really be used by other libraries, all it does is automatically convert python3 code into python2...
See for python 2 error, issue #4 ``` $ python --version Python 2.7.15 $ pip install --upgrade --pre CodeIntel Collecting CodeIntel Using cached https://files.pythonhosted.org/packages/b9/e1/e8de333336f3b9ff2d3efa3be1468d633f7a504ff4787c2159470ab7157c/CodeIntel-2.0.0-cp27-cp27m-macosx_10_12_x86_64.whl Collecting inflector (from CodeIntel) Using cached...
```sh $ python --version Python 2.7.15 $ pip install --upgrade --pre CodeIntel Collecting CodeIntel Using cached https://files.pythonhosted.org/packages/b9/e1/e8de333336f3b9ff2d3efa3be1468d633f7a504ff4787c2159470ab7157c/CodeIntel-2.0.0-cp27-cp27m-macosx_10_12_x86_64.whl Collecting inflector (from CodeIntel) Using cached https://files.pythonhosted.org/packages/c4/51/d3cc209c8a0471ef5a04ac750f203b5b486fc70e6cb51c96d99decd49bc4/Inflector-2.0.12.tar.gz Collecting chardet (from CodeIntel) Using cached...
Hi, I installed CodeIntel to my Ubuntu 18.04 Vagrant box with following commands: ```console vagrant@ci:~$ python3 --version Python 3.6.7 vagrant@ci:~$ pip3 --version pip 9.0.1 from /usr/lib/python3/dist-packages (python 3.6) vagrant@ci:~$ pip3...
For PHP language methods prefixed with "__" should not be shown by autocomplete. These methods are considered in PHP as "magic" and should not be called directly. http://php.net/manual/en/language.oop5.magic.php