Commit d6b6123 1 parent 066b541 commit d6b6123 Copy full SHA for d6b6123
File tree 2 files changed +12
-0
lines changed
2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -1555,6 +1555,7 @@ export class CodeActionKind {
1555
1555
public static readonly Refactor = CodeActionKind . Empty . append ( 'refactor' ) ;
1556
1556
public static readonly RefactorExtract = CodeActionKind . Refactor . append ( 'extract' ) ;
1557
1557
public static readonly RefactorInline = CodeActionKind . Refactor . append ( 'inline' ) ;
1558
+ public static readonly RefactorMove = CodeActionKind . Refactor . append ( 'move' ) ;
1558
1559
public static readonly RefactorRewrite = CodeActionKind . Refactor . append ( 'rewrite' ) ;
1559
1560
public static readonly Source = CodeActionKind . Empty . append ( 'source' ) ;
1560
1561
public static readonly SourceOrganizeImports = CodeActionKind . Source . append ( 'organizeImports' ) ;
Original file line number Diff line number Diff line change @@ -9184,6 +9184,17 @@ export module '@theia/plugin' {
9184
9184
*/
9185
9185
static readonly RefactorInline: CodeActionKind;
9186
9186
9187
+ /**
9188
+ * Base kind for refactoring inline actions: `refactor.move`
9189
+ *
9190
+ * Example move actions:
9191
+ *
9192
+ * - Move a function to a new file
9193
+ * - Move a property between classes
9194
+ * - Move method to base class
9195
+ */
9196
+ static readonly RefactorMove: CodeActionKind;
9197
+
9187
9198
/**
9188
9199
* Base kind for refactoring rewrite actions: `refactor.rewrite`
9189
9200
*
You can’t perform that action at this time.
0 commit comments