0

ファイル全体ではなく、現在の選択範囲を 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

4

1 に答える 1

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ツールがそのようにパイプされた入力を受け入れるかどうかはわかりませんが、おそらくすでにそれを知っているでしょう。

于 2013-01-30T11:26:47.503 に答える