Mercurial > vim
view runtime/indent/testdir/vim.in @ 24632:9e72076e31f8 v8.2.2855
patch 8.2.2855: white space after "->" does not give E274
Commit: https://github.com/vim/vim/commit/0820f4de5872bfbdc25bf6cba6ec5646dbcec156
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat May 15 20:06:58 2021 +0200
patch 8.2.2855: white space after "->" does not give E274
Problem: White space after "->" does not give E274.
Solution: Do not skip white space in legacy script. (closes https://github.com/vim/vim/issues/8212)
author | Bram Moolenaar <Bram@vim.org> |
---|---|
date | Sat, 15 May 2021 20:15:03 +0200 |
parents | 5b37a0bf7e3a |
children | d314efe6447a |
line wrap: on
line source
" vim: set ft=vim sw=4 : " START_INDENT func Some() let x = 1 endfunc let cmd = \ 'some ' \ 'string' if 1 let x = [ \ ] endif " TODO: add searchpair() to find matching { "for x in [ "{ "key: 'value' "}, "] "eval 0 "endfor for x in [ {key: 'value'}, ] eval 0 endfor " END_INDENT " START_INDENT " INDENT_EXE let g:vim_indent_cont = 6 let cmd = \ 'some ' \ 'string' " END_INDENT " START_INDENT " INDENT_EXE let g:vim_indent_cont = 5 let list = [ \ 'one', \ 'two'] " END_INDENT " START_INDENT " INDENT_EXE unlet g:vim_indent_cont let list = [ 'one', 'two', ] echo " END_INDENT " START_INDENT " INDENT_AT this-line func Some() let f = x " this-line endfunc " END_INDENT " START_INDENT " INDENT_NEXT next-line func Some() " next-line let f = x endfunc " END_INDENT " START_INDENT " INDENT_PREV prev-line func Some() let f = x " prev-line endfunc " END_INDENT " START_INDENT let a =<< END nothing END " END_INDENT " START_INDENT " INDENT_AT this-line let a=<< trim END blah blah blah this-line END " END_INDENT