I didn't know about command + / till the other day, however i've run into a minor issue.
If I have source like the following:
function do_me() { /* this was some old shit */ /* $var = blah */
echo 'hello'; }
the command + / shortcut will turn it into:
/*function do_me() { /* this was some old shit */ /* $var = blah */
echo 'hello'; }*/
which is deffinitly a no go. how could I change it so that it would result in:
// function do_me() // { // /* this was some old shit */ // /* // $var = blah // */ // // echo 'hello'; // }
Thanks, Eric Coleman