Rahul Shah před 6 roky
rodič
revize
ad086c6389

+ 0 - 3
packages/fileeditor-extension/src/index.ts

@@ -87,8 +87,6 @@ namespace CommandIDs {
 
   export const runAllCode = 'fileeditor:run-all';
 
-  export const runAllMarkdown = 'fileeditor:run-all-markdown';
-
   export const markdownPreview = 'fileeditor:markdown-preview';
 }
 
@@ -748,7 +746,6 @@ function activate(
       },
       run: () => commands.execute(CommandIDs.runCode),
       runAll: () => commands.execute(CommandIDs.runAllCode),
-      runAllMarkdown: () => commands.execute(CommandIDs.runAllMarkdown),
       restartAndRunAll: current => {
         return current.context.session.restart().then(restarted => {
           if (restarted) {

+ 1 - 1
packages/notebook-extension/src/index.ts

@@ -1040,7 +1040,7 @@ function addCommands(
     }
   });
   commands.addCommand(CommandIDs.runAllMarkdown, {
-    label: 'Run All Markdown Cells',
+    label: 'Render All Markdown Cells',
     execute: args => {
       const current = getCurrent(args);
       if (current) {