代码之家  ›  专栏  ›  技术社区  ›  trosendal

ESS ESS roxy模板列表

  •  0
  • trosendal  · 技术社区  · 6 年前

    我想定制我的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 这对我来说解决不了。

    0 回复  |  直到 6 年前