aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_assists/src/handlers/change_visibility.rs
Commit message (Collapse)AuthorAgeFilesLines
* Rename ra_assists -> assistsAleksey Kladov2020-08-131-200/+0
|
* Rename ra_syntax -> syntaxAleksey Kladov2020-08-121-1/+1
|
* Finalize Trait grammarAleksey Kladov2020-07-301-2/+2
|
* Finalize const&static grammarAleksey Kladov2020-07-301-2/+2
|
* Rename EnumDef -> EnumAleksey Kladov2020-07-301-2/+2
|
* Rename StructDef -> StructAleksey Kladov2020-07-301-2/+2
|
* Rename FieldDef -> FieldAleksey Kladov2020-07-301-2/+2
|
* Rename TypeAliasDef -> TypeAliasAleksey Kladov2020-07-301-3/+1
|
* Rename FnDef -> FnAleksey Kladov2020-07-301-2/+2
|
* change vis works on staticsAleksey Kladov2020-07-121-3/+13
|
* Move AssistKind into AssistIdkjeremy2020-07-021-6/+3
|
* Categorize assistsJeremy Kolb2020-07-021-4/+12
|
* Get rid of unused importsVeetaha2020-06-281-5/+2
|
* Follow matklad suggestionsVeetaha2020-06-281-8/+1
| | | | | | - Move vis_offset() to utils.rs - Shorten explicit ra_syntax::ast -> ast - Undo refactoring exhaustive pattern to non-exhaustive
* Simlify with matches!()Veetaha2020-06-281-8/+3
|
* Relax cursor position tests in assistsAleksey Kladov2020-05-201-17/+13
| | | | Those will be replaced with snippets anyway
* Don't set cursor in change_visibilityAleksey Kladov2020-05-201-6/+3
|
* Split change_ and fix_ visibility assistsAleksey Kladov2020-05-201-506/+1
|
* Switch to new magic marksAleksey Kladov2020-05-201-4/+4
|
* Trigger change_visibility assist when on an invisible struct fieldTimo Freiberg2020-05-101-61/+248
| | | | Union fields apparently don't work :(
* Trigger change_visibility assist when on a path to an invisible defTimo Freiberg2020-05-101-1/+328
|
* Refactor assists API to be more convenient for adding new assistsAleksey Kladov2020-05-071-18/+13
| | | | It now duplicates completion API in its shape.
* Move target to AssistLabelAleksey Kladov2020-05-061-11/+21
| | | | | Target is used for assists sorting, so we need it before we compute the action.
* Merge assits::test_helpers and testsAleksey Kladov2020-05-061-1/+1
|
* Make `change_visibility` assist work for tuple struct field visibilityJesse Bakker2020-05-021-3/+10
|
* Convert code to text-sizeAleksey Kladov2020-04-251-2/+2
|
* Fix add visibility false-positiveAleksey Kladov2020-03-251-12/+28
|
* introduce const visibility assistDouglas Campos2020-02-281-4/+9
|
* Name assist handlersAleksey Kladov2020-02-071-0/+167