#symbols #ide #query #search #debugging #ast #file

app rustsym

Tool to query symbols from rust code for use in IDEs

5 unstable releases

Uses old Rust 2015

0.3.2 Aug 9, 2017
0.3.1 Aug 25, 2016
0.2.2 Jul 27, 2016
0.1.0 Jul 23, 2016

#38 in #ide

MIT license

26KB
564 lines

rustsym Build Status crates.io version crates.io downloads

A tool to query symbols from rust code for use in IDEs

Installation

cargo install rustsym

Running

rustsym supports three modes of querying symbols:

  • Global Searches the crate root for any *.rs source files and appends the collected symbols to the final list.
  • Local Searches a specific *.rs file for symbols and skips child modules.
  • LocalChildren The default search. This searches a specific *.rs file and any child modules required by the file.

For example, to find symbols matching foo in bar.rs (excluding child modules), you should invoke rustsym as follows: rustsym search -l bar.rs foo. Omitting the -l will search child modules.

If you run rustsym search -g . foo then you will search all source files under the current directory for foo.

rustsym also supports pretty printing the AST for debugging why certain symbols may not appear, but to also improve the turn around time of additional symbol types. This functionality is entirely provided by syntex. It can be invoked with rustsym ast file.rs.

Supported IDEs

Go To Symbol

Dependencies

~6MB
~118K SLoC