如何从Git Bash打开Notepad ++中的文件?

时间:2014-06-23 15:02:57

标签: git notepad++

我需要的是Git Bash中的命令,它将在Notepad ++中打开文件(txt,html,php ..)。就像我输入notepad test.txt test.txt在记事本中打开一样,我想要类似命令,让我们说npp test.txt将在Notepad ++中打开test.txt。我正在使用Win7(64)。

2 个答案:

答案 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为我做得更好。