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

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

WBOY
Release: 2016-06-13 08:38:43
Original
3387 people have browsed it

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template