从 cygwin bash 访问 notepad++

从 cygwin bash 访问 notepad++

因此,当我编写代码时,我会使用 notepad++,完成后,我会将其复制粘贴到普通的记事本中,因为我使用 Cygwin,而记事本是我知道如何从 shell 访问的唯一文本编辑器。有人可以教我如何从提示符直接转到 N++ 吗?

答案1

notepad++.exe要将文件的 shell 路径转换为正确的 Windows 路径来启动,您可以使用以下脚本:

#!/bin/bash
/cygdrive/c/Program\ Files\ \(x86\)/Notepad++/notepad++.exe `cygpath.exe -w "$*"`

路径notepad++.exe可能会有所不同。

来源

相关内容