You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We've added a new extension point `global.files.default-action` for allowing action extensions to register themselves for the left click default action.
Copy file name to clipboardexpand all lines: docs/extension-system/_index.md
+5-4
Original file line number
Diff line number
Diff line change
@@ -151,10 +151,11 @@ your extension will be used automatically.
151
151
2. Folder views for regular folders. ExtensionPointId `app.files.folder-views.folder`. Mounts extensions of type `folderView`.
152
152
3. Folder views for the project spaces overview. ExtensionPointId `app.files.folder-views.project-spaces`. Mounts extensions of type `folderView`.
153
153
4. Folder views for the favorites page. ExtensionPointId `app.files.folder-views.favorites`. Mounts extensions of type `folderView`.
154
-
5. Right click context menu. ExtensionPointId `app.files.context-actions`. Mounts extensions of type `action`.
155
-
6. Batch actions in the app bar above file lists. ExtensionPointId `app.files.batch-actions`. Mounts extensions of type `action`.
156
-
7. Upload menu. ExtensionPointId `app.files.upload-menu`. Mounts extensions of type `action`.
157
-
8. Quick actions. ExtensionPointId `app.files.quick-actions`. Mounts extensions of type `action`.
154
+
5. Right click context menu. ExtensionPointId `global.files.context-actions`. Mounts extensions of type `action`.
155
+
6. Batch actions in the app bar above file lists. ExtensionPointId `global.files.batch-actions`. Mounts extensions of type `action`.
156
+
7. Default actions (left click) on a file. ExtensionPointId `global.files.default-actions`. Mounts extensions of type `action`.
157
+
8. Upload menu. ExtensionPointId `app.files.upload-menu`. Mounts extensions of type `action`.
158
+
9. Quick actions. ExtensionPointId `app.files.quick-actions`. Mounts extensions of type `action`.
158
159
4. Global search providers. ExtensionPointId `app.search.providers`. Utilizes extensions of type `search` as search engines for the search input in the global top bar.
0 commit comments