I’m really struggling with organizing things in sublime. One of the issues I’m finding is with comments. I often have to write a little blurb above to explain how the code below works, but then I might have actual commented out code below as well and it quickly gets confusing. Especially when I comment out an entire function and that function has bits of ‘non-code comments’ sprinkled all over.
Is there like a system where I can have multiple coloured types of comments…one colour for “text Only”…one for “crossed out code” etc…or something to this degree where I can identify different types of comments. The easiest thing I could do offhand is write --NOTE: blah blah blah; and colour the note a specific colour, but even then I’m low on colours in the dracula colour scheme and I don’t know how u add more colours.
I’m using mostly lua right now so the two cmds are:
ctrl+/: – comments out
(highlighted)ctrl+shift+/: --[[ comments out ]]
Lua also supports further nesting ur block comments --[[ [[ ]] ]] to near infinite degree.
There’s alot to this, but I’m mainly looking for ideas how other people have done such systems before…if there’s screenshots of how ppl have setup multi comment types that would help etc. But just being able to setup a second scope colour thats sorta greyed out like the existing comment colour of dracula would be useful.