File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -1036,6 +1036,14 @@ type ServerCapabilitiesWorkspaceFolders struct {
1036
1036
ChangeNotifications interface {} `json:"changeNotifications,omitempty"` // string | boolean
1037
1037
}
1038
1038
1039
+ // FileOperationRegistrationOptions is the options to register for file operations.
1040
+ //
1041
+ // @since 3.16.0.
1042
+ type FileOperationRegistrationOptions struct {
1043
+ // filters is the actual filters.
1044
+ Filters []FileOperationFilter `json:"filters"`
1045
+ }
1046
+
1039
1047
// ServerCapabilitiesWorkspaceFileOperations is the server is interested in file notifications/requests.
1040
1048
//
1041
1049
// @since 3.16.0.
Original file line number Diff line number Diff line change @@ -108,14 +108,6 @@ type SetTraceParams struct {
108
108
Value TraceValue `json:"value"`
109
109
}
110
110
111
- // FileOperationRegistrationOptions is the options to register for file operations.
112
- //
113
- // @since 3.16.0.
114
- type FileOperationRegistrationOptions struct {
115
- // filters is the actual filters.
116
- Filters []FileOperationFilter `json:"filters"`
117
- }
118
-
119
111
// FileOperationPatternKind is a pattern kind describing if a glob pattern matches a file a folder or
120
112
// both.
121
113
//
You can’t perform that action at this time.
0 commit comments