RustAutoComplete
A SublimeText binding for RACER (Rust auto completion tool)
Details
Installs
- Total 31K
- Win 15K
- Mac 7K
- Linux 9K
May 28 | May 27 | May 26 | May 25 | May 24 | May 23 | May 22 | May 21 | May 20 | May 19 | May 18 | May 17 | May 16 | May 15 | May 14 | May 13 | May 12 | May 11 | May 10 | May 9 | May 8 | May 7 | May 6 | May 5 | May 4 | May 3 | May 2 | May 1 | Apr 30 | Apr 29 | Apr 28 | Apr 27 | Apr 26 | Apr 25 | Apr 24 | Apr 23 | Apr 22 | Apr 21 | Apr 20 | Apr 19 | Apr 18 | Apr 17 | Apr 16 | Apr 15 | Apr 14 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 1 | 3 | 4 | 0 | 1 | 1 | 1 | 5 | 2 | 0 | 3 | 2 | 0 | 1 | 0 | 0 | 4 | 1 | 0 | 3 | 2 | 1 | 2 | 0 | 1 | 1 | 3 | 2 | 3 | 3 | 1 | 1 | 2 | 0 | 5 | 2 | 2 | 1 | 4 | 0 | 0 | 2 | 0 | 2 |
Mac | 0 | 0 | 2 | 2 | 0 | 0 | 0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 1 | 2 | 2 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 2 | 0 | 0 | 1 | 0 | 1 | 3 | 0 | 0 | 0 | 1 | 0 |
Linux | 0 | 1 | 3 | 0 | 0 | 1 | 1 | 1 | 2 | 0 | 0 | 3 | 1 | 0 | 0 | 2 | 0 | 1 | 1 | 1 | 3 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 3 | 0 | 0 | 2 | 2 | 4 | 2 | 1 | 3 | 2 | 1 | 1 | 4 | 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"
]
}