Skip to content

Commit c7a467a

Browse files
committed
builtin completion
1 parent 0dd37ab commit c7a467a

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

app/ExternalCommand.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ExternalCommand extends Command {
3333
child.stdout.on('data', (data) => {
3434
const output = data.toString();
3535
stdout += output;
36-
this.outputHandler.write(output, false, true);
36+
this.outputHandler.write(output, false);
3737
resolve(stdout);
3838
});
3939

app/OutputHandler.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ class OutputHandler {
7575
if (this.fileInitialized) {
7676
const content = newLine ? message + '\n' : message;
7777
fs.appendFileSync(this.outputFile, content);
78-
process.stderr.write(newLine ? message + '\n' : message);
7978
} else {
8079
// Fall back to stderr console
8180
process.stderr.write(newLine ? message + '\n' : message);

foo.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ davefelkf
33
cat: nonexistent: No such file or directory
44
ls: nonexistent: No such file or directory
55
fkdjf
6+
ls: nonexistent: No such file or directory

0 commit comments

Comments
 (0)