我想将当前选择提交给 R 而不是整个文件。目前我在我的 r.properties 中有这个(它提交整个文件):
命令.go. .R="C:\Program Files\R\R-2.15.2\bin\x64\Rscript.exe" --vanilla "$(FileNameExt)" command.go.subsystem。.R=0
如何仅提交我当前在 Scite(在 Windows 上)中选择的内容? http://www.scintilla.org/SciTEDoc.html
我想将当前选择提交给 R 而不是整个文件。目前我在我的 r.properties 中有这个(它提交整个文件):
命令.go. .R="C:\Program Files\R\R-2.15.2\bin\x64\Rscript.exe" --vanilla "$(FileNameExt)" command.go.subsystem。.R=0
如何仅提交我当前在 Scite(在 Windows 上)中选择的内容? http://www.scintilla.org/SciTEDoc.html
您可以使用command.input.number.filepattern
,您链接的文档中对此进行了说明。例如:
command.name.10.$(file.patterns.r)=Pipe selection to R
command.mode.10.$(file.patterns.r)=subsystem:0,savebefore:no
command.10.$(file.patterns.r)="C:\Program Files\R\R-2.15.2\bin\x64\Rscript.exe"
command.input.10.$(file.patterns.r)=$(CurrentSelection)
它将当前选择的数据通过管道传输到Rscript.exe
. 我不使用 R,所以我不知道你的Rscript.exe
工具是否接受这样的管道输入,但你可能已经知道了。