errors.fyi community error code reference
E109
vim

Missing ':' after '?'

A ternary expression in Vim script is missing the colon that separates the true and false branches. The correct form is condition ? true_val : false_val.

References

โ† all namespaces for E109