Re: vimString breaks the syntax (syntax/vim.vim)

2014-06-09 Fir de Conversatie Charles Campbell
itchyny wrote: let m = 5 let y = 20 * (m / 4) + m / 4 let z = 10 for i in range(10) echo i endfor while i let i -= 1 endwhile Please try v7.4-30 which you can get from my website: http://www.drchip.org/astronaut/vim/index.html#SYNTAX_VIM . Thank you for the report, Chip Campbell -- --

Re: vimString breaks the syntax (syntax/vim.vim)

2014-06-09 Fir de Conversatie itchyny
Thank you so much. On Tuesday, June 10, 2014 5:39:34 AM UTC+9, Charles Campbell wrote: itchyny wrote: let m = 5 let y = 20 * (m / 4) + m / 4 let z = 10 for i in range(10) echo i endfor while i let i -= 1 endwhile Please try v7.4-30 which you can get

vimString breaks the syntax (syntax/vim.vim)

2014-05-31 Fir de Conversatie itchyny
Hi, list. This is a bug in syntax/vim.vim. Consider we are editing a Vim script file. (setl ft=vim) When we use two slashes in a line, the syntax is broken. For example: let [a, b] = [winheight(0) / 2, winwidth(0) / 2] '/ 2, winwidth(0) /' is considered as a string. It's tolerable if it does