> On Nov 28, 2014, at 11:54 AM, Oliver Taylor <[email protected]> wrote: > > > On Nov 27, 2014, at 6:49 PM, Vlad Ghitulescu <[email protected]> wrote: > >> Is there a way to get rid of the CR while selecting the line with CMD-L? > > Not a built in way. But you can easily accomplish this with AppleScript. Just > search backwards for the beginning of the line, then forwards to the end of > the line (without newline) and assign the script a shortcut. > > There is some sample code here that might help you get started: > https://github.com/olivertaylor/BetterTongs.bbpackage > > -- > This is the BBEdit Talk public discussion group. If you have a > feature request or would like to report a problem, please email > "[email protected]" rather than posting to the group. > Follow @bbedit on Twitter: <http://www.twitter.com/bbedit> > > --- > You received this message because you are subscribed to the Google Groups > "BBEdit Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected].
Howdy, With the cursor in the line do: Ctl-A (move the Cursor to start of line), Ctl-K (kill to end of line. That removes the line sans the final CR which you can then retrieve with Cmd-V. Good Luck, Herb Schulz (herbs at wideopenwest dot com) -- This is the BBEdit Talk public discussion group. If you have a feature request or would like to report a problem, please email "[email protected]" rather than posting to the group. Follow @bbedit on Twitter: <http://www.twitter.com/bbedit> --- You received this message because you are subscribed to the Google Groups "BBEdit Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected].
