Skip to content

Commit 531bb15

Browse files
committed
commands in results view
1 parent 33d10d9 commit 531bb15

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,6 @@
709709
"default": "Python Test Log",
710710
"description": "The output window name for the unit test messages, defaults to Python output window."
711711
},
712-
713712
"python.terminal.executeInFileDir": {
714713
"type": "boolean",
715714
"default": false,

src/client/jupyter/display/resultView.ts

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,13 @@ export class TextDocumentContentProvider extends Disposable implements vscode.Te
6464
<script src="http://localhost:${this.serverPort}/socket.io/socket.io.js"></script>
6565
</head>
6666
<body onload="initializeResults('${dirNameForScripts}', ${this.serverPort})">
67-
<!--
68-
<label for"displayStyle">Result display style </label>
6967
<select id="displayStyle">
70-
<option value="append">Append</option>
71-
<option value="clear">Clear Previous Results</option>
68+
<option value="append">Append results</option>
69+
<option value="clear">Clear previous results</option>
7270
</select>
73-
<span id='clearResults' class="octicon octicon-circle-slash" tooltip='Clear Results'></span>
71+
&nbsp;
72+
<button id="clearResults">Clear Results</button>
7473
<br>
75-
-->
7674
<script type="text/javascript">
7775
window.JUPYTER_DATA = ${JSON.stringify(this.results)};
7876
</script>

0 commit comments

Comments
 (0)