在Snipmate.vim片段中更改案例?

时间:2011-02-21 09:49:27

标签: vim snipmate

是否可以在Snipmate片段中更改变量值的大小写?

例如:

snippet dc
  def create
    @${1} = $1.new
  end

应输出:

def create
  @product = Product.new
end

我尝试使用反引号来调用自定义函数:

snippet dc
  def create
    @${1} = `ToUpperCase('$1')`.new
  end

在Vim中定义了这个函数:

function! ToUpperCase(str)
    let result = substitute(a:str, '\(\w\)', '\u\1', '')
    return result
endfunction

这不起作用,因为看起来Snipmate在执行了反引号之后扩展了它的$ n个变量

3 个答案:

答案 0 :(得分:6)

免责声明:我是UltiSnips的主要作者。

为了您的兴趣和rollin-the-drum的目的,我提出了UltiSnips的两个片段定义,这些定义在此之前已经提到过。两者都做OP想要的。第一个使用转换(TextMate语法):

snippet dc "create" b
def create
   @$1 = ${1/.*/\u$0/}.new
end
endsnippet

第二个使用python代码插值。对于我的口味,这更容易阅读,但它更冗长。

snippet dc "create" b
def create
   @$1 = `!p snip.rv = t[1].title()`.new
end
endsnippet

由于版本1.3 UltiSnips附带了一个可以转换snipMate片段的脚本,因此切换应该很容易。

答案 1 :(得分:3)

当前版本的snipMate无法对镜像文本执行转换。查看:help snipMate-disadvantages所在的位置:

  

无法对变量执行正则表达式,例如“$ {1 /.*/ \ U&}”

如果您真的想要此功能,可能需要尝试其中一个其他代码段插件。 UltiSnips使用相同的语法来定义代码段,并声称具有与TextMate相同的所有功能。

答案 2 :(得分:2)

我对snipMate进行了一些修改以允许我正在寻找的功能。

将此代码放入autoload / snipMate.vim到s:RemoveSnippet()函数的末尾(在第14行之后):

let linecount = len(getline("1", "$"))
for linenum in range(1, linecount)
    let line = getline(linenum)
    let line = substitute(line, '\v\%uc\(([^)]+)\)', '\U\1\E', 'g')
    let line = substitute(line, '\v\%ucfirst\(([^)]+)\)', '\u\1', 'g')
    call setline(linenum, line)
endfor

现在你可以像这样定义片段:

snippet dc
  def create
    @${1:product} = %ucfirst($1).new
    %uc($1) = "This is Ruby %uc(constant) example."
  end

输出:

def create
  @product = Product.new
  PRODUCT = "This is Ruby CONSTANT example."
end

请注意,替换不是实时完成,而是在您“退出”代码段之后。