caw.vim icon indicating copy to clipboard operation
caw.vim copied to clipboard

Use `#` instead of `"` in Vim9 script

Open tyru opened this issue 4 years ago • 2 comments

cc: @thinca

Ref. https://vim-jp.slack.com/archives/CLKR04BEF/p1629386264089200

tyru avatar Aug 19 '21 15:08 tyru

Where Vim9 script is enabled

By @thinca

  • Look up :vim9s[cript] at the beginning of file
  • Between :def ... :enddef
  • command Foo { ... }
  • autocmd BufEnter * { ... }
command Foo {
  # Vim9 script
}

autocmd BufEnter * {
  # Vim9 script
}

tyru avatar Aug 21 '21 05:08 tyru

I've created a pull request #170 to add an initial support for Vim9 script.

obcat avatar Sep 02 '21 07:09 obcat