Kite Autocomplete Plugin for Visual Studio Code
Go to file
2019-01-15 15:19:23 +01:00
.vscode Cleanup editors from open and new actions 2018-11-14 15:32:46 +01:00
assets Protect access to vscode api in tests 2019-01-15 15:19:22 +01: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 Add new views for account verification and creation 2019-01-15 15:19:23 +01:00
test Protect access to vscode api in tests 2019-01-15 15:19:22 +01: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 🔥 formidable and other unused element in install webview 2019-01-15 15:19:22 +01:00
package.json 🔥 formidable and other unused element in install webview 2019-01-15 15:19:22 +01:00
README.md Use docs instead of more for docs links 2018-10-08 12:43:27 +02:00
vsc-extension-quickstart.md VSCode boilerplate 2017-04-19 14:42:07 +02:00

Kite for Visual Studio Code

This extension adds support for Kite in Visual Studio Code and adds the features:

  • Completions
  • Function Signatures
  • Hover info and Sidebar
  • Go to Definition
  • Search

How to install this extension

This extension is automatically installed by Kite when you select Visual Studio Code in the list of plugins.

Startup

When starting VSCode with Kite for the first time, a brief tour about Kite will be displayed in the active pane.

Kite Tour

This tour will only be displayed once. If you want to see it again on next startup you can activate the kite.showTourOnStartup setting.

Status Bar

The Kite icon in the status bar displays the state of Kite for the current file. Clicking on the icon will open the status panel with additional information.

kite status bar

The icon in the status bar can take three different colors:

  • blue: The Kite Engine is available and functioning properly.
    kite status ready
  • gray: Theres either no open file or, if theres an active file, the file is either not supported or not whitelisted.
    kite status not whitelisted
  • red: Something went wrong when the plugin tried to contact the Kite service on your computer. Depending on the issue, the status panel can offer actions to solve the problem.
    kite status not running

Quick Info

kite hover

Hovering your mouse over an expression will show you a popup with up to three links:

  • def will open the file where this symbol is defined (this may not be available if Kite cannot find the definition)
  • docs will open the sidebar with docs for this expression

Sidebar

The sidebar offers a more detailed view of an expression. You can use it to browse the members of a module or a type, or to access curated examples, and more.

Kite Expand Panel

Search is available using the corresponding command from the command palette. It will open the search panel on the side.

Type a module, function or symbol name and browse the results in the panel.

Kite Active Search