[bug] cannot handle nested brace
Open
- Dominant language
- Python
- Stars
- 306
- Forks
- 30
- PR merge metrics
- No merged PRs in 30d
Description
```vim
""
" foobar
call g:foobar#utils#plugin.Flag('g:foobar',
\ get(s:foobar, 0, '')
\ )
```
It can work:
```
*foobar:g:foobar*
foobar
Default: get(s:foobar, 0, '') `
```
However, the default of nested brace cannot be detected.
```vim
""
" foobar
call g:foobar#utils#plugin.Flag('g:foobar',
\ get(split(s:foobar), 0, '')
\ )
```
```
*foobar:g:foobar*
foobar
```
Contributor guide
Assessment
This issue has not been assessed yet.