Hi, I am quite new to sublime only been using it a few weeks but have a small aesthetic that is annoying me. There are white bullet points that come out from the margin that signify white space. I can generate them by pressing space and tab as well. Could someone explain to me how I can remove them as they are cluttering the editor and I find them a little irritating. Thanks!
How to remove white bullet points from ST
jfcherng
#2
In your user preferences:
// Set to "none" to turn off drawing white space, "selection" to draw only the
// white space within the selection, and "all" to draw all white space
"draw_white_space": "selection",
I prefer all
because some files from the Internet somehow mix spaces and tabs. You may set it to selection
, or more agressive, none
.
3 Likes