We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Guess no one has used these yet! I tracked these down to the following lines
if exists('a:1') && len(a:1) == 1 && !type('a:1') let l:pathmode = a:1 elseif exists('a:1') && len(a:1) > 1 && type('a:1')
which should be changed to
if exists('a:1') && len(a:1) == 1 && !type(a:1) let l:pathmode = a:1 elseif exists('a:1') && len(a:1) > 1 && type(a:1)
The text was updated successfully, but these errors were encountered:
That's great. Thank you! This just prompted me to check all the type() instances.
Sorry, something went wrong.
Merge pull request kien#6 from codepiano/translate-cn
c1317c4
Translate documentation to Chinese
No branches or pull requests
Guess no one has used these yet! I tracked these down to the following lines
which should be changed to
The text was updated successfully, but these errors were encountered: