cs135-drtools icon indicating copy to clipboard operation
cs135-drtools copied to clipboard

ctrl-/ shortcut should toggle comments

Open devonpmack opened this issue 3 years ago • 1 comments

Section

[ ] Preferences [ ] Autocomplete [x] Keybindings [ ] Other...

Context

If you select lines and press ctrl-/ it should toggle whether the lines are commented out rather than continually adding ; characters.

Expected

Select lines

(+ 1 2 3

Press ctrl-/

;(+ 1 2 3

Press ctrl-/ again

(+ 1 2 3

Actual

Select lines

(+ 1 2 3

Press ctrl-/

;(+ 1 2 3

Press ctrl-/ again

;;(+ 1 2 3

devonpmack avatar Oct 20 '20 21:10 devonpmack

This is how commenting in DrRacket works (it's a terrible IDE compared to VS and JetBrains). I'll stick this on the "to be implemented" list.

Raymo111 avatar Oct 21 '20 03:10 Raymo111