Ive never tried the CTRL+ options before but teh CYRL+/ didnt work for me either.
Im not sure that keyboard shortcuts is what you are asking for though as /* comments out anything below it and */ terminates the commented lines i.e,
set A=1
/*
set A=2
set B=A
*/
write A // (which now equals 1)
write B // (which now causes an error)
quit
- Log in to post comments