Kite Autocomplete Plugin for Visual Studio Code
Go to file
2019-02-26 07:51:15 -08:00
.vscode Cleanup editors from open and new actions 2018-11-14 15:32:46 +01:00
assets remove kite tour 2019-01-15 12:52:16 -08:00
docker-image add back kite-installer 2017-05-10 17:02:55 -07:00
docs/images Moved user documentation to the top-level. Keep original readme as DEVELOPMENT.md 2017-11-06 19:25:52 +01:00
src Merge branch 'master' into laggy-status 2019-02-25 18:00:57 -08:00
test fix test 2019-01-28 10:16:43 -08:00
.eslintrc.json VSCode boilerplate 2017-04-19 14:42:07 +02:00
.gitignore Ignore local .vscode-test directory 2018-10-09 14:34:21 +02:00
.travis.yml Avoid kited-test locking the build 2018-12-12 15:36:45 +01:00
.vscodeignore VSCode boilerplate 2017-04-19 14:42:07 +02:00
build_release.sh make executable 2017-05-15 20:36:45 -07:00
CHANGELOG.md VSCode boilerplate 2017-04-19 14:42:07 +02:00
DEVELOPMENT.md Moved user documentation to the top-level. Keep original readme as DEVELOPMENT.md 2017-11-06 19:25:52 +01:00
jsconfig.json VSCode boilerplate 2017-04-19 14:42:07 +02:00
LICENSE Update LICENSE 2017-05-26 12:03:56 -07:00
logo.png Change plugin icon. 2018-04-16 13:52:18 -07:00
Makefile make sure to include rollbar, do not have quiet flag for the build 2017-05-24 15:16:45 -07:00
package-lock.json adds refreshed package-lock 2019-02-26 07:51:15 -08:00
package.json updates versions 2019-02-25 18:02:15 -08:00
README.md fix typos, fix description 2019-01-16 20:14:13 -08:00
vsc-extension-quickstart.md VSCode boilerplate 2017-04-19 14:42:07 +02:00

Kite Python Assistant for Visual Studio Code

Kite is an AI-powered programming assistant that helps you write Python code inside Visual Studio Code. The Kite Engine needs to be installed in order for the extension to work properly. The extension itself provides the frontend that interfaces with the Kite Engine, which performs all the code analysis and machine learning.

Features

Kite's goal is to help you write code faster by showing you the right information at the right time. At a high level, Kite provides you with:

  • 🧠 Smart autocompletions powered by machine learning models trained on the entire open source code universe
  • 👀 Function signatures that show you the official signature of a function you're currently using
  • 🔍 Instant documentation for the symbol underneath your cursor

Requirements

  • macOS 10.10+ or Windows 7+
  • Visual Studio Code v1.28.0+
  • Kite Engine

Installation

Installing the Kite Engine

macOS Instructions

  1. Download the installer and open the downloaded .dmg file.
  2. Drag the Kite icon into the Applications folder.
  3. Run Kite.app to start the Kite Engine.

Windows Instructions

  1. Download the installer and run the downloaded .exe file.
  2. The installer should run the Kite Engine automatically after installation is complete.

Installing the Kite Assistant for Visual Studio Code

When running the Kite Engine for the first time, you'll be guided through a setup process which will allow you to install the VS Code extension. You can also install or uninstall the VS Code extension at any time using the Kite Engine's plugin manager.

Alternatively, you have 2 options to manually install the package:

  1. Search for "Kite" in VS Code's built-in extension marketplace and install from there.
  2. Run the command code --install-extension kiteco.kite in your terminal.

Usage

The following is a brief guide to using Kite in its default configuration.

Hover

Hover your mouse cursor over a symbol to view a short summary of what the symbol represents.

hover

Documentation

Click on the Docs link in the hover popup to open the documentation for the symbol inside the Copilot, Kite's standalone reference tool.

copilot

Definitions

If a Def link is available in the hover popup, clicking on it will jump to the definition of the symbol.

Autocompletions

Simply start typing in a saved Python file and Kite will automatically suggest completions for what you're typing. Kite's autocompletions are all labeled with the symbol.

completions

Function Signatures

When you call a function, Kite will show you the arguments required to call it. Kite's function signatures are also all labeled with the symbol.

signature

Note: If you have the Microsoft Python extension installed, Kite will not be able to show you information on function signatures.

Commands

Kite comes with sevaral commands that you can run from VS Code's command palette.

Command Description
kite.open-copilot Open the Copilot
kite.docs-at-cursor Show documentation of the symbol underneath your cursor in the Copilot
kite.engine-settings Open the settings for the Kite Engine
kite.help Open Kite's help website in the browser

Contact Us

Feel free to contact us with bug reports, feature requests, or general comments at feedback@kite.com.

Happy coding!