Comment by customguy
6 hours ago
I am so proud of this (I'm sure others came up with it way before me, but I still came up with it all by myself!)
//*
normal path
/*/
debug path
//*/
take away the the first slash to toggle the debug zone ON!
Only works with C and C++, though.
I once took the time to figure these out for all the languages I use
here's python:
when I comment out python code I do it with ''' ... #''' so I can uncomment it with 1 keystroke
It's awesome in both senses! How readable has it become for you over time? Because on first glance and without syntax highlighting it's a head-scratcher.
With syntax highlighting I instantly know what it is :) But to be honest it's just for when I find myself toggling something a lot during development.. but still am too lazy to make a variable.