g:vimwiki_listsyms is a string again, not a list

this is to be backwards compatible
we still need to split it into a list internally, because indexing
doesn't work for unicode symbols
This commit is contained in:
EinfachToll
2014-01-06 13:49:29 +01:00
parent 96dfabb03b
commit 9810ff1c55
7 changed files with 23 additions and 21 deletions

View File

@ -392,7 +392,7 @@ call s:default('ext2syntax', {}) " syntax map keyed on extension
call s:default('hl_headers', 0)
call s:default('hl_cb_checked', 0)
call s:default('list_ignore_newline', 1)
call s:default('listsyms', [' ', '.', 'o', 'O', 'X'])
call s:default('listsyms', ' .oOX')
call s:default('use_calendar', 1)
call s:default('table_mappings', 1)
call s:default('table_auto_fmt', 1)