RustAutoComplete
Sublime Text的RACER(Rust自动补全工具)绑定
详情
安装数量
- 总计 33K
- Win 16K
- Mac 8K
- Linux 9K
8月6日 | 8月5日 | 8月4日 | 8月3日 | 8月2日 | 8月1日 | 7月31日 | 7月30日 | 7月29日 | 7月28日 | 7月27日 | 7月26日 | 7月25日 | 7月24日 | 7月23日 | 7月22日 | 7月21日 | 7月20日 | 7月19日 | 7月18日 | 7月17日 | 7月16日 | 7月15日 | 7月14日 | 7月13日 | 7月12日 | 7月11日 | 7月10日 | 7月9日 | 7月8日 | 7月7日 | 7月6日 | 7月5日 | 7月4日 | 7月3日 | 7月2日 | 7月1日 | 6月30日 | 6月29日 | 6月28日 | 6月27日 | 6月26日 | 6月25日 | 6月24日 | 6月23日 | 6月22日 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 1 | 2 | 1 | 0 | 1 | 3 | 2 | 2 | 0 | 1 | 1 | 0 | 2 | 2 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 3 | 2 | 1 | 5 | 1 | 1 | 0 | 0 | 0 | 0 | 1 | 3 | 1 | 3 | 1 | 1 | 3 | 3 | 1 | 0 | 2 | 1 | 3 |
Mac | 2 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 1 | 0 | 1 | 1 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 |
Linux | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 2 | 1 | 0 | 0 | 2 | 0 | 1 | 1 | 1 | 2 | 3 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 1 | 1 | 0 | 2 | 0 | 0 | 2 | 1 | 1 | 1 | 1 | 0 | 2 | 1 | 1 | 1 |
readme
RustAutoComplete
Sublime Text用于Phil Dawes的Rust自动补全过程工具的绑定(https://github.com/phildawes/racer)。
特性
- 自动补全(在Rust文件中自动触发)。
- 转到定义(默认快捷键是F2)。
状态
初始版本。在我测试的基本项目上运行良好。在搜索路径设置正确时Servo部分工作。
对于修复和新增特性的拉取请求非常欢迎。
我仅在Linux(Ubuntu 14.04)上进行了测试。它可能在Mac / Windows上运行。
要求
- 从包控制安装Rust语法高亮显示包:https://sublime.wbond.net/packages/Rust
- 克隆并构建自动补全过程工具racer:https://github.com/phildawes/racer
- 通过包控制安装该插件(或如果您更喜欢,从git克隆):https://sublime.wbond.net/packages/RustAutoComplete
- 配置插件以找到racer可执行文件和Rust源代码。打开菜单
首选项 -> 包设置 -> RustAutoComplete -> 设置 - 用户
并使用以下模板编辑设置文件
{
// 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"
]
}