File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -287,6 +287,14 @@ const commands = [
287287 settings . update ( false ) ;
288288 } ,
289289 } ,
290+ {
291+ name : "openPluginsPage" ,
292+ description : "Open Plugins Page" ,
293+ exec ( ) {
294+ acode . exec ( "open" , "plugins" ) ;
295+ } ,
296+ readOnly : true ,
297+ } ,
290298] ;
291299
292300export function setCommands ( editor ) {
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import fsOperation from "fileSystem";
77import actions from "handlers/quickTools" ;
88import recents from "lib/recents" ;
99import FileBrowser from "pages/fileBrowser" ;
10+ import plugins from "pages/plugins" ;
1011import Problems from "pages/problems/problems" ;
1112import changeEncoding from "palettes/changeEncoding" ;
1213import changeMode from "palettes/changeMode" ;
@@ -176,6 +177,10 @@ export default {
176177 Problems ( ) ;
177178 break ;
178179
180+ case "plugins" :
181+ plugins ( ) ;
182+ break ;
183+
179184 default :
180185 return ;
181186 }
You can’t perform that action at this time.
0 commit comments