我知道有一个快捷方式可以打开一个带有来自终端的崇高文本的文件,但是有一些类似于geany的内容,我可以在网上找到的唯一信息就是打开从geany到终端的文件。
答案 0 :(得分:0)
您可以使用open
:
open [PATH_TO_FILE] -a [PATH_TO_GEANY_APP]
a
选项定义要使用的应用程序。
像echo 'alias geany="open $1 -a [PATH_TO_GEANY_APP]"' >> ~/.bash_profile && chmod u+x ~/.bash_profile
这样的东西。然后打开一个新的终端窗口并输入geany [path_to_file]
。
答案 1 :(得分:0)
如果Geany在您的路径中,请致电SYNOPSIS
geany [option] [+number] [files ...]
。这应该适用于Geany正在运行的每个平台。
出于Geany的手册页:
files ...
A space-separated list of filenames. Absolute and relative
filenames can be used. Geany also recognises line and column
information when appended to the filename with colons, e.g.
"geany foo.bar:10:5" will open the file foo.bar and place the
cursor in line 10 at column 5.
这将在新会话中打开文件,或者如果已经运行Geany会话,则在现有会话中打开文件。
文件可以以空格分隔列表的形式给出,并且可能采用偶数行号:
{{1}}