Five minutes, every editor
The plugin is free, works offline for local completions, and needs no account to start.
VS Code
Search the Marketplace for CodePilot, or install it straight from the command palette. The extension indexes your workspace on first open.
ext install codepilot.codepilotJetBrains IDEs
One plugin covers IntelliJ IDEA, PyCharm, WebStorm, GoLand, Rider and RubyMine. Install it from Settings, then restart the IDE once.
Settings > Plugins > Marketplace > CodePilotNeovim
Add the plugin with your package manager of choice and call the setup function. Works with the built-in LSP client.
Plug 'codepilot/codepilot.nvim'Emacs
Available from MELPA. Enable the minor mode globally, or per major mode if you would rather keep it to one language.
M-x package-install RET codepilot RETSublime Text
Install through Package Control. Completions render in the editor's own inline phantom, so nothing about the interface changes.
Package Control: Install PackageWhat the first hour looks like
Nothing to configure and nothing to learn. Open a repository, keep typing, and read the suggestions as they arrive at the caret.
Open your repository
The first index runs in the background and finishes in a couple of minutes on a large codebase. You can keep working while it runs.
Start typing
Completions arrive inline in the editor's own decoration layer. Tab accepts, Escape dismisses, and the suggestion never steals focus.
Ask for a rewrite
Select a block and ask for it cleaner or faster. The rewrite arrives as a diff against the selection so you read it before you take it.
Commit with confidence
The pre-commit check runs the same analysis the editor does, so a finding never appears for the first time in continuous integration.