- Fix can not show panel when execute command which will block terminal
- Fix can not reopen after kill integrated terminal.
- Fix can not run file which path contain brackets.
- Fix can not close terminal "Run As" completely.
event-stream
package security update. #event-steam
- Fix can not changing
cwd
after killed integrated terminal.
- Correct the wrong of
README.md
andCHANGELOG.md
;
- Can set mode one time for commands on different platforms;
- Add 2 modes:
silent
andblock
for running a command in integrated terminal.
- Fix cannot run the file which has white space in the first directory of path, like
some words/file.ext
.
- Remove gulp.
- Fix the link of the README for Simplified Chinese;
- Update
devDependencies
.
- Refactor the extension;
- Fix cannot run in Command Palette when open a document;
- Add README for Simplified Chinese.
- Fix useless escape in notifications in vscode 1.21;
- Fix extglob cannot escape in globs;
- Fix did not work in vscode 1.22;
- Fix "Run As ..." item's position not correct on the right click menu.
- Fix configurations will not take effect before restarting vscode.
- Fix cannot use it after Killing Terminal of "Run as ...".
- Fix has not removed prefix from command when run in a new terminal window.
- Less useless code, more efficient.
- Fix cannot run the file if it is in the root and contains white space.
- less duplicated code;
- low module has less dependencies;
- new error handler to interrupt the program when having an error.
- Auto change current working directory of vscode inner terminal in workspace(multi-directories mode).
- Fix cannot run the file if the path contains dot;
- Use icon.
- Fix cannot run the file in the root folder.
- New variables to construct a file path:
root
,rPath
,dir
,lFile
,sFile
,ext
.
- Cache configuration before it change;
- Remind where is wrong;
- Support chinese;
- New icon.
$0
replaced by${command}
,$1
replaced by${file}
;
- Javascript can be surrounded by
${
and}
to execute; - Use
@out
an@in
at the start of command to force to run in new terminal window or not; - Show error message when no command to execute in your platform;
- Use new powershell command to execute a command in a new terminal window in
win32
.
- Use TypeScript rewrite source code;
- Execute command in
TERMINAL
panel instead ofOUTPUT
channel; - Fix cannot use it after killing terminal of "Run as ...";
- One globs can map to different command in different platform;
- Fix cannot open file with default application in a new terminal windows.
- After configuration, different files which matched by globs have different command to execute it;
- Set terminal workspace to VSCode workspace;
- After configuration, execute a command in a new terminal windows.
- Right click javascript file and select "Run as javascript", to use node execute it;
- Execute result output to
OUTPUT
channel.