]> Sergey Matveev's repositories - dotfiles.git/blobdiff - vim/.vim/plugin/defsplit.vim
Unify quotes
[dotfiles.git] / vim / .vim / plugin / defsplit.vim
index f995c8a072f4499927a01f576b113ab0725f45ce..ab422c0f284fa0b2de5c19d5b2201c0ca586fba5 100644 (file)
@@ -71,7 +71,7 @@ function! s:defsplit(brs_allowable, single_line_comma, ...)
     let [curly, round, squar, outbuf] = [0, 0, 0, ""]
     let ready = [strpart(line, 0, brfirst + 1)]
     let trailing_comma = 1
-    for c in split(line[brfirst + 1 : brlast-1], '\zs')
+    for c in split(line[brfirst + 1 : brlast-1], "\zs")
         if c ==# "*" | let trailing_comma = 0 | endif
         if outbuf ==# "" && c ==# " " | continue | endif
         let outbuf .= c