There are 2 ways to mark comment in pgAdmin - PostgreSQL: the
-- bla bla
and the:
/* bla bla bla bla*/
for the first one i use ctrl+k as short hot key. is there a hot key for the 2nd one? i know ctrl+k can be applied on muliple lines if i mark them but it will add -- for all lines which isn't what I'm looking for.
Ctrl k will comment out a block of code, while Ctrl-Shift k will uncomment out the block.
Ctrl k --> Comment, Ctrl K --> Uncomment (capitalize k)