We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03b3fa4 commit 56d6342Copy full SHA for 56d6342
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "codify-plugin-lib",
3
- "version": "1.0.165",
+ "version": "1.0.166",
4
"description": "Library plugin library",
5
"main": "dist/index.js",
6
"typings": "dist/index.d.ts",
src/pty/background-pty.ts
@@ -123,6 +123,7 @@ export class BackgroundPty implements IPty {
123
let outputBuffer = '';
124
125
return new Promise(resolve => {
126
+ this.basePty.write('set +o history;\n');
127
this.basePty.write('unset PS1;\n');
128
this.basePty.write('unset PS0;\n')
129
this.basePty.write('echo setup complete\\"\n')
0 commit comments