Not-Afraid's blog

By Not-Afraid, history, 4 years ago, In English

I use sublime text and in it i use tab_width-4, but when i submit the code on Codeforces it's indentation changes to 8 and makes the code look ugly like this. I tried turning editor mode off while submitting on codeforces and also tried changing tab width while submitting but it didn't helped.
Can anyone help me how can i fix this bcz i hate looking at my own ugly code with messy indentation?
UPD : using "translate_tabs_to_spaces": true worked for me. Thank you everyone for the help.

  • Vote: I like it
  • +15
  • Vote: I do not like it

| Write comment?
»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Seems you are submitting tabs, and would like to have them converted to spaces. Configuration howto

»
4 years ago, # |
  Vote: I like it +5 Vote: I do not like it

setting : "translate_tabs_to_spaces": true

»
4 years ago, # |
Rev. 2   Vote: I like it 0 Vote: I do not like it

Go to Preference.sublime-settings — User and then add a property "tab_size": 4

»
4 years ago, # |
  Vote: I like it 0 Vote: I do not like it

Thanks for the blog Not-Afraid, my issue also got resolved.