我需要的是Git Bash中的命令,它将在Notepad ++中打开文件(txt,html,php ..)。就像我输入notepad test.txt
test.txt在记事本中打开一样,我想要类似命令,让我们说npp test.txt
将在Notepad ++中打开test.txt。我正在使用Win7(64)。
答案 0 :(得分:1)
我在Notepad ++安装目录中创建了一个名为npp
的文件。 npp
中包含以下内容:
#!/bin/sh
"c:/Program Files (x86)/Notepad++/notepad++.exe" -multiInst -notabbar -nosession -noPlugin "$*"
然后将Notepad ++安装添加到PATH。
现在,在git bash中,您可以使用如下命令:npp foo.txt
来启动Notepad ++编辑foo.txt。
答案 1 :(得分:0)
更新: 到目前为止最好的方法是在路径中添加记事本++和
$ start notepad++ [file path]
或者您可以添加
alias npp='winpty "C:/Program Files (x86)/Notepad++/notepad++.exe"'
到您主目录中的.bashrc文件。
使用Git Bash为我做得更好。