ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Rust​Auto​Complete

by defuz ST3

A SublimeText binding for RACER (Rust auto completion tool)

Details

Installs

  • Total 32K
  • Win 15K
  • Mac 8K
  • Linux 9K
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 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5
Windows 0 0 1 1 0 1 1 1 2 0 0 2 3 2 0 0 1 1 2 0 5 2 1 2 1 4 2 1 0 1 1 0 0 1 1 2 1 0 5 3 3 1 2 2 0 5
Mac 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 2 0 1 0 0 0 2 1 0 1 0 0 0 0 1 0 1 1
Linux 1 1 1 1 5 0 1 1 0 1 0 0 0 0 2 0 4 0 0 1 1 0 1 0 0 1 0 2 0 1 0 2 0 0 2 1 0 2 0 1 3 1 2 0 2 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).

Example

Example

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

  1. Install the Rust syntax highlighting package from Package Control: https://sublime.wbond.net/packages/Rust
  2. Clone and build the auto completion tool racer: https://github.com/phildawes/racer
  3. Install the package through package control (or clone from git if you prefer): https://sublime.wbond.net/packages/RustAutoComplete
  4. 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"
  ]
}

Contact

https://github.com/glennw/RustAutoComplete