我想将当前选择提交给R而不是整个文件。 目前我在我的r.properties中有这个(它提交整个文件):
command.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
答案 0 :(得分:0)
您可以使用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
工具是否接受这样的管道输入,但你可能已经知道了。