File tree Expand file tree Collapse file tree
src/vs/workbench/contrib/notebook/browser Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66export const INSERT_CODE_CELL_ABOVE_COMMAND_ID = 'workbench.notebook.code.insertCellAbove' ;
77export const INSERT_CODE_CELL_BELOW_COMMAND_ID = 'workbench.notebook.code.insertCellBelow' ;
88export const INSERT_MARKDOWN_CELL_ABOVE_COMMAND_ID = 'workbench.notebook.markdown.insertCellAbove' ;
9- export const INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID = 'workbench.notebook.markdown.insertCellAbove ' ;
9+ export const INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID = 'workbench.notebook.markdown.insertCellBelow ' ;
1010
1111export const EDIT_CELL_COMMAND_ID = 'workbench.notebook.cell.edit' ;
1212export const SAVE_CELL_COMMAND_ID = 'workbench.notebook.cell.save' ;
Original file line number Diff line number Diff line change @@ -413,7 +413,7 @@ registerAction2(class extends InsertCellCommand {
413413 constructor ( ) {
414414 super (
415415 {
416- id : INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID ,
416+ id : INSERT_MARKDOWN_CELL_ABOVE_COMMAND_ID ,
417417 title : localize ( 'notebookActions.insertMarkdownCellAbove' , "Insert Markdown Cell Above" ) ,
418418 } ,
419419 CellKind . Markdown ,
@@ -428,7 +428,7 @@ registerAction2(class extends InsertCellCommand {
428428 id : INSERT_MARKDOWN_CELL_BELOW_COMMAND_ID ,
429429 title : localize ( 'notebookActions.insertMarkdownCellBelow' , "Insert Markdown Cell Below" ) ,
430430 } ,
431- CellKind . Code ,
431+ CellKind . Markdown ,
432432 'below' ) ;
433433 }
434434} ) ;
You can’t perform that action at this time.
0 commit comments