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
"test": "npm run compile && node ./node_modules/vscode/bin/test"
29
-
},
30
-
"devDependencies": {
31
-
"typescript": "^2.5.2",
32
-
"vscode": "^1.1.5",
33
-
"mocha": "^3.5.0",
34
-
"@types/node": "^7.0.43",
35
-
"@types/mocha": "^2.2.42"
25
+
"configuration": {
26
+
"title": "vscode-jupyter-python",
27
+
"properties": {
28
+
"vscode-jupyter-python.expandCode": {
29
+
"type": "boolean",
30
+
"default": "true",
31
+
"description": "When a line is executed without selection, when this setting is turned off execution only happens on code up that is indented compared to the current line. In python that unfortunately does not always work, because some control structures (e.g. else) continue on the same indentation level. Enabling this setting expands the executed code beyond what hydrogen suggests on the basis of the indentation level. The statements which trigger such extension can be defined below."
32
+
},
33
+
"vscode-jupyter-python.expandCodeList": {
34
+
"title": "Code to Expand",
35
+
"type": "array",
36
+
"items": {
37
+
"type": "string"
38
+
},
39
+
"default": [
40
+
"else",
41
+
"elif",
42
+
"except",
43
+
"finally",
44
+
"\\}",
45
+
"\\]",
46
+
"\\)"
47
+
],
48
+
"description": "If the above setting is enabled, this list will be passed to a regex. Any of these items in the list need to occur on the same intentation level as the first line. You may define your own custom elements to modify the code to your preferred behaviour. In the default setting, else, elif, except, finally, as well as all closing braces are expanded on."
0 commit comments