E730
vim using List as a String
A List was used where a String value was expected, such as in string concatenation. Convert the List to a string with string() or join() before the operation.
A List was used where a String value was expected, such as in string concatenation. Convert the List to a string with string() or join() before the operation.