我想定制我的roxygen2模板,这是当我
C-c C-o C-o
关于R函数。
以R函数为例:
add <- function(x, y) {
return(x + y)
}
我在我的.emacs中添加了这个模板:
(setq ess-roxy-template-alist (list (cons "title" "")
(cons "description" "")
(cons "param" "")
(cons "return" "")))
##' @title
##'
##'
##' @param x
##' @param y
##' @return
add <- function(x, y) {
return(x + y)
}
我想要这个:
##' add
##'
##' @param x
##' @param y
##' @return
add <- function(x, y) {
return(x + y)
}
https://stat.ethz.ch/pipermail/ess-help/2011-December/007342.html
这对我来说解决不了。