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
tabstop
We indent by tabs at work. For readability, i set tabstop=4, but now this
set tabstop=4
int some_function() { <tab>if (something) { <tab><tab>// blah <tab><tab>// blah <tab><tab>// blah <tab><tab>some_line(); <tab><tab>// blah
is rendered like this
int some_function() { if (something) { ==================================== <context.vim> some_line(); // blah
because context.vim renders tabs as 8 spaces, but vim (correctly) as 4 spaces.
The text was updated successfully, but these errors were encountered:
@metiulekm: Thank you, it should work properly now 👍
Sorry, something went wrong.
Thanks! :)
Successfully merging a pull request may close this issue.
We indent by tabs at work. For readability, i
set tabstop=4
, but now thisis rendered like this
because context.vim renders tabs as 8 spaces, but vim (correctly) as 4 spaces.
The text was updated successfully, but these errors were encountered: