RustAutoComplete
A SublimeText binding for RACER (Rust auto completion tool)
Details
Installs
- Total 33K
- Win 16K
- Mac 8K
- Linux 10K
Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | Apr 13 | Apr 12 | Apr 11 | Apr 10 | Apr 9 | Apr 8 | Apr 7 | Apr 6 | Apr 5 | Apr 4 | Apr 3 | Apr 2 | Apr 1 | Mar 31 | Mar 30 | Mar 29 | Mar 28 | Mar 27 | Mar 26 | Mar 25 | Mar 24 | Mar 23 | Mar 22 | Mar 21 | Mar 20 | Mar 19 | Mar 18 | Mar 17 | Mar 16 | Mar 15 | Mar 14 | Mar 13 | Mar 12 | Mar 11 | Mar 10 | Mar 9 | Mar 8 | Mar 7 | Mar 6 | Mar 5 | Mar 4 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 3 | 1 | 0 | 0 | 2 | 2 | 0 | 0 | 3 | 1 | 1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 2 | 2 | 0 | 0 | 1 | 3 | 1 | 1 | 2 | 1 | 1 | 2 | 1 | 0 | 1 | 1 | 0 | 2 | 1 | 2 | 1 | 1 | 1 | 2 | 0 | 1 |
Mac | 0 | 2 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 3 | 0 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 2 | 0 | 0 | 0 | 0 | 1 | 0 |
Linux | 0 | 0 | 0 | 0 | 2 | 1 | 1 | 0 | 2 | 1 | 0 | 0 | 1 | 1 | 3 | 0 | 1 | 0 | 2 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 2 | 0 | 0 | 1 | 5 | 1 | 1 | 2 | 2 | 1 | 2 | 2 | 0 | 1 | 1 | 0 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
RustAutoComplete
A binding for Sublime Text to the Rust auto completion tool by Phil Dawes (https://github.com/phildawes/racer).
Features
- Auto complete (invoked automatically on Rust files).
- Go to definition (default key binding is F2).
Status
Initial version. Works on the basic projects I have tested on. Partially works on Servo when the search paths are set correctly.
Pull requests for fixes and new features are very welcome.
I have only tested this on Linux (Ubuntu 14.04). It may work on Mac / Windows.
Requirements
- Install the Rust syntax highlighting package from Package Control: https://sublime.wbond.net/packages/Rust
- Clone and build the auto completion tool racer: https://github.com/phildawes/racer
- Install the package through package control (or clone from git if you prefer): https://sublime.wbond.net/packages/RustAutoComplete
- Configure the plugin to be able to find the racer executable and
Rust source code. Open menu
Preferences -> Package settings -> RustAutoComplete -> Settings - User
and edit the settings file using below as a template:
{
// The full path to the racer binary. If racer is already
// in your system path, then this default will be fine.
"racer": "racer",
// A list of search paths. This should generally just
// be the path to the rust compiler src/ directory.
"search_paths": [
"/home/git/rust-lang/rust/src"
]
}