Hi there. Great plugin. Suggestion when using the function `type()`. Use the `v:t_<type>` built-in variables. Like this: ```vim if type("hello") == v:t_string echo "it's a string" endif ``` Take a look at `:help type()`.