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
* added code lens option and code snippet to add a new cell, in order to make it easier * added news entry * only add the 'Add Cell' code lens on the last cell, add cell when you press Alt+Enter, update codewatcher.unit.test.ts to expect more code lenses * removed addcellbelow from the default settings, changed the command for the keybing 'alt+enter', user can now make 'Add Cell' code lens appear anywhere he likes, but it will always appear as the last code lens in the last cell, updated codewatcher unit test to reflect the changes in code lens * added code snippets to add markdown cells, added instruction comments at the begining of imported jupyter files, and added a keybinding for alt+enter with a command that matches the behaviour in jupyter. * localized a constant string, used cellMatcher in the codewatcher command, and returned codewatcher unit test to its original expected Code Lenses amount * changed a label, also updated the codewatcher unit test with correct amount of code lenses
Copy file name to clipboardExpand all lines: package.nls.json
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -302,6 +302,7 @@
302
302
"DataScience.jupyterDataRateExceeded": "Cannot view variable because data rate exceeded. Please restart your server with a higher data rate limit. For example, --NotebookApp.iopub_data_rate_limit=10000000000.0",
"DataScience.runCurrentCellAndAddBelow":"Run current and add cell below",
305
306
"DataScience.variableExplorerDisabledDuringDebugging": "Variables are not available while debugging.",
306
307
"DataScience.jupyterDebuggerNotInstalledError" : "Pip module ptvsd is required for debugging cells. You will need to install it to debug cells.",
307
308
"DataScience.jupyterDebuggerPortNotAvailableError" : "Port {0} cannot be opened for debugging. Please specify a different port in the remoteDebuggerPort setting.",
@@ -312,5 +313,6 @@
312
313
"DataScience.jupyterDebuggerInstallPtvsdUpdate" : "The version of ptvsd installed does not support debugging cells. Update ptvsd to newest version and continue to debug cell?",
exportconstjupyterDataRateExceeded=localize('DataScience.jupyterDataRateExceeded','Cannot view variable because data rate exceeded. Please restart your server with a higher data rate limit. For example, --NotebookApp.iopub_data_rate_limit=10000000000.0');
exportconstrunCurrentCellAndAddBelow=localize('DataScience.runCurrentCellAndAddBelow','Run current and add cell below');
231
232
exportconstvariableExplorerDisabledDuringDebugging=localize('DataScience.variableExplorerDisabledDuringDebugging','Variables are not available while debugging.');
232
233
exportconstjupyterDebuggerNotInstalledError=localize('DataScience.jupyterDebuggerNotInstalledError','Pip module ptvsd is required for debugging cells. You will need to install it to debug cells.');
233
234
exportconstjupyterDebuggerPortNotAvailableError=localize('DataScience.jupyterDebuggerPortNotAvailableError','Port {0} cannot be opened for debugging. Please specify a different port in the remoteDebuggerPort setting.');
exportconstcellStopOnErrorFormatMessage=localize('DataScience.cellStopOnErrorFormatMessage','{0} cells were canceled due to an error in the previous cell.');
243
+
exportconstinstructionComments=localize('DataScience.instructionComments','# To add a new cell, type "#%%"\n# To add a new markdown cell, type "#%% [markdown]"\n');
0 commit comments