@@ -74,38 +74,34 @@ impl ActionCategory {
74
74
match self {
75
75
ActionCategory :: QuickFix ( tag) => {
76
76
if tag. is_empty ( ) {
77
- Cow :: Borrowed ( "quickfix.pglsp " )
77
+ Cow :: Borrowed ( "quickfix.pglt " )
78
78
} else {
79
- Cow :: Owned ( format ! ( "quickfix.pglsp .{tag}" ) )
79
+ Cow :: Owned ( format ! ( "quickfix.pglt .{tag}" ) )
80
80
}
81
81
}
82
82
83
- ActionCategory :: Refactor ( RefactorKind :: None ) => Cow :: Borrowed ( "refactor.pglsp " ) ,
83
+ ActionCategory :: Refactor ( RefactorKind :: None ) => Cow :: Borrowed ( "refactor.pglt " ) ,
84
84
ActionCategory :: Refactor ( RefactorKind :: Extract ) => {
85
- Cow :: Borrowed ( "refactor.extract.pglsp" )
86
- }
87
- ActionCategory :: Refactor ( RefactorKind :: Inline ) => {
88
- Cow :: Borrowed ( "refactor.inline.pglsp" )
85
+ Cow :: Borrowed ( "refactor.extract.pglt" )
89
86
}
87
+ ActionCategory :: Refactor ( RefactorKind :: Inline ) => Cow :: Borrowed ( "refactor.inline.pglt" ) ,
90
88
ActionCategory :: Refactor ( RefactorKind :: Rewrite ) => {
91
- Cow :: Borrowed ( "refactor.rewrite.pglsp " )
89
+ Cow :: Borrowed ( "refactor.rewrite.pglt " )
92
90
}
93
91
ActionCategory :: Refactor ( RefactorKind :: Other ( tag) ) => {
94
- Cow :: Owned ( format ! ( "refactor.{tag}.pglsp " ) )
92
+ Cow :: Owned ( format ! ( "refactor.{tag}.pglt " ) )
95
93
}
96
94
97
- ActionCategory :: Source ( SourceActionKind :: None ) => Cow :: Borrowed ( "source.pglsp" ) ,
98
- ActionCategory :: Source ( SourceActionKind :: FixAll ) => {
99
- Cow :: Borrowed ( "source.fixAll.pglsp" )
100
- }
95
+ ActionCategory :: Source ( SourceActionKind :: None ) => Cow :: Borrowed ( "source.pglt" ) ,
96
+ ActionCategory :: Source ( SourceActionKind :: FixAll ) => Cow :: Borrowed ( "source.fixAll.pglt" ) ,
101
97
ActionCategory :: Source ( SourceActionKind :: OrganizeImports ) => {
102
- Cow :: Borrowed ( "source.organizeImports.pglsp " )
98
+ Cow :: Borrowed ( "source.organizeImports.pglt " )
103
99
}
104
100
ActionCategory :: Source ( SourceActionKind :: Other ( tag) ) => {
105
- Cow :: Owned ( format ! ( "source.{tag}.pglsp " ) )
101
+ Cow :: Owned ( format ! ( "source.{tag}.pglt " ) )
106
102
}
107
103
108
- ActionCategory :: Other ( tag) => Cow :: Owned ( format ! ( "{tag}.pglsp " ) ) ,
104
+ ActionCategory :: Other ( tag) => Cow :: Owned ( format ! ( "{tag}.pglt " ) ) ,
109
105
}
110
106
}
111
107
}
0 commit comments