diff options
author | Aleksey Kladov <[email protected]> | 2019-01-03 11:14:17 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-03 12:21:31 +0000 |
commit | 5323e599964005bc58cf89c27201973bc1ff51dd (patch) | |
tree | 995beda2df98d0252d44d2ff27c6bd047c2dc587 /crates/ra_editor/src | |
parent | 0a80d9685a1db1bb39104a741922f6c9526eaf94 (diff) |
rename code-actions -> assists
Diffstat (limited to 'crates/ra_editor/src')
-rw-r--r-- | crates/ra_editor/src/assists.rs (renamed from crates/ra_editor/src/code_actions.rs) | 0 | ||||
-rw-r--r-- | crates/ra_editor/src/lib.rs | 4 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_editor/src/code_actions.rs b/crates/ra_editor/src/assists.rs index 7615f37a6..7615f37a6 100644 --- a/crates/ra_editor/src/code_actions.rs +++ b/crates/ra_editor/src/assists.rs | |||
diff --git a/crates/ra_editor/src/lib.rs b/crates/ra_editor/src/lib.rs index bfc745e58..46d521e4b 100644 --- a/crates/ra_editor/src/lib.rs +++ b/crates/ra_editor/src/lib.rs | |||
@@ -1,4 +1,4 @@ | |||
1 | mod code_actions; | 1 | pub mod assists; |
2 | mod extend_selection; | 2 | mod extend_selection; |
3 | mod folding_ranges; | 3 | mod folding_ranges; |
4 | mod line_index; | 4 | mod line_index; |
@@ -10,7 +10,7 @@ mod typing; | |||
10 | mod diagnostics; | 10 | mod diagnostics; |
11 | 11 | ||
12 | pub use self::{ | 12 | pub use self::{ |
13 | code_actions::{add_derive, add_impl, flip_comma, introduce_variable, make_pub_crate, LocalEdit}, | 13 | assists::LocalEdit, |
14 | extend_selection::extend_selection, | 14 | extend_selection::extend_selection, |
15 | folding_ranges::{folding_ranges, Fold, FoldKind}, | 15 | folding_ranges::{folding_ranges, Fold, FoldKind}, |
16 | line_index::{LineCol, LineIndex}, | 16 | line_index::{LineCol, LineIndex}, |