Home >php教程 >php手册 >Notepad++ 运行脚本快捷键设置,notepad脚本

Notepad++ 运行脚本快捷键设置,notepad脚本

WBOY
WBOYOriginal
2016-06-13 08:38:433388browse

Notepad++ 运行脚本快捷键设置,notepad脚本

php:
cmd /k /path/to/php.exe "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT


python:
cmd /k D: & cd "$(CURRENT_DIRECTORY)" & python "$(FULL_CURRENT_PATH)" & PAUSE & EXIT


javac & java:
cmd /k D: & cd "$(CURRENT_DIRECTORY)" & javac  "$(FULL_CURRENT_PATH)" & java "$(NAME_PART)" & PAUSE & EXIT

指定编码:

cmd /k D: & cd "$(CURRENT_DIRECTORY)" & javac -encoding utf-8  "$(FULL_CURRENT_PATH)" & java "$(NAME_PART)" & PAUSE & EXIT

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn