在R提示中修改光标位置

时间:2017-06-22 19:34:24

标签: r cursor prompt

我想将光标的位置放在最后一行的R提示符中,而不是第一行,是否可能?:

text<-"Save all celltypes in a single sheet (1), or separated in sheets (2), (Note: choosing number 1, gives you the opportunity to add means and sums); Write 1 or 2"
text<-paste(strwrap(text,60), collapse="\n")
response <- as.numeric(readline(paste(text)))

在此代码中,光标太靠近最后一个单词&#34;在&#34;第一行

1 个答案:

答案 0 :(得分:0)

试试这个,基本上只是在strwrap之后在paste命令中添加一个空格字符。不希望将光标移动到最后一行,但会在文本和光标之间提供一个缓冲区。

text<-"Save all celltypes in a single sheet (1), or separated in sheets (2), (Note: choosing number 1, gives you the opportunity to add means and sums); Write 1 or 2"
text<-paste(strwrap(text,60)," ", collapse="\n")
response <- as.numeric(readline(paste(text)))