Re: [MSEide-MSEgui-talk] IDE - block comment / uncomment

2016-05-03 Thread Martin Schreiber
On Sunday 01 May 2016 07:53:58 Martin Schreiber wrote: > On Saturday 30 April 2016 22:34:49 Krzysztof wrote: > > Hi Martin, > > > > I mentioned about this in other topic. In Lazarus if you select > > multiple lines like: > > > > if something then > > begin > > foo; > > bar; > > end; > > > >

Re: [MSEide-MSEgui-talk] IDE - block comment / uncomment

2016-04-30 Thread Martin Schreiber
On Saturday 30 April 2016 22:34:49 Krzysztof wrote: > Hi Martin, > > I mentioned about this in other topic. In Lazarus if you select > multiple lines like: > > if something then > begin > foo; > bar; > end; > > ... and press CTRL+SHIFT+V, it change it to: > > // if something then > // begin >

[MSEide-MSEgui-talk] IDE - block comment / uncomment

2016-04-30 Thread Krzysztof
Hi Martin, I mentioned about this in other topic. In Lazarus if you select multiple lines like: if something then begin foo; bar; end; ... and press CTRL+SHIFT+V, it change it to: // if something then // begin // foo; // bar; // end; CTRL+SHIFT+U for uncomment selected block. Very