Re: SASS Compiler?

2016-05-18 Thread Greg Raven
No, but for what it's worth, CodeKit is pretty wonderful, IMHO. On Tuesday, May 17, 2016 at 10:01:50 AM UTC-7, Kevin Bolduan wrote: > > Does anyone know of a plug-in or similar for BBEdit that will > automatically compiles SASS into CSS? I'm aware of third-party applications > like CodeKit and c

[ANN] BBEdit 11.6 (3921) pre-release

2016-05-18 Thread Rich Siegel
Good afternoon folks, We're working on an update to BBEdit 11 which will add some new features and address a few recently reported issues. Note that this is a _pre-release_ version. The intent is to fix bugs and address areas of improvement based on what our customers have reported. However,

Re: SASS Compiler?

2016-05-18 Thread Vlad Ghitulescu
+1 for CodeKit. BBEdit + CodeKit + Tower = Dream Team :-) Von meinem iPhone gesendet > Am 18.05.2016 um 15:45 schrieb Greg Raven : > > No, but for what it's worth, CodeKit is pretty wonderful, IMHO. > >> On Tuesday, May 17, 2016 at 10:01:50 AM UTC-7, Kevin Bolduan wrote: >> Does anyone know o

Re: SASS Compiler?

2016-05-18 Thread Patrick Woolsey
If you've already installed any command-line package which is capable of compiling SASS to CSS, it should be fairly easy to attach a script to BBEdit's 'documentDidSave' event to automatically generate a corresponding ".css" file. [For anyone who's inclined to try this, please do :) and you're

Search/Replace with GREP wildcards

2016-05-18 Thread 1611mac
Is it possible to "Replace" wildcard strings? For example, given this "FIND" string entered in Find and Replace: ="#.*" How would I "REPLACE" the wildcard text found with the same text set in all caps? Example: ="#foo" becomes ="#FOO" -- This is the BBEdit Talk public discussion group

Re: Search/Replace with GREP wildcards

2016-05-18 Thread Sam Hathaway
Hi, Find: ="#(.*)" Replace: ="#\U\1\E" Hope this helps. -sam On 18 May 2016, at 1:27 PM EDT, 1611mac wrote: Is it possible to "Replace" wildcard strings? For example, given this "FIND" string entered in Find and Replace: ="#.*" How would I "REPLACE" the wildcard text found with the same

Re: Search/Replace with GREP wildcards

2016-05-18 Thread 1611mac
Awesome! I learned a lot just from that one simple little blurb! Thank you very much! Perfect! Over 4k lines changed in a couple seconds! On Wednesday, May 18, 2016 at 1:37:54 PM UTC-4, Sam H. wrote: > > Hi, > > Find: ="#(.*)" > Replace: ="#\U\1\E" > > Hope this helps. > -sam > > On 18 M

Re: Search/Replace with GREP wildcards

2016-05-18 Thread Christopher Stone
On May 18, 2016, at 13:08, 1611mac <1611...@gmail.com> wrote: > Awesome! I learned a lot just from that one simple little blurb! __ Hey There, If you work with text a lot and don't know at least a smattering of RegEx you're mis

Re: Search/Replace with GREP wildcards

2016-05-18 Thread Steve Piercy
On 5/18/16 at 3:11 PM, listmeis...@suddenlink.net (Christopher Stone) pronounced: On May 18, 2016, at 13:08, 1611mac <1611...@gmail.com> wrote: Awesome! I learned a lot just from that one simple little blurb! __ BBEdit-Te

Re: Search/Replace with GREP wildcards

2016-05-18 Thread Luis Speciale
Le 18/05/2016 à 22:20, Steve Piercy a écrit : On 5/18/16 at 3:11 PM, listmeis...@suddenlink.net (Christopher Stone) pronounced: On May 18, 2016, at 13:08, 1611mac <1611...@gmail.com> wrote: Awesome! I learned a lot just from that one simple little blurb! _

Re: Search/Replace with GREP wildcards

2016-05-18 Thread Christopher Stone
On May 18, 2016, at 15:20, Steve Piercy wrote: > Another option is the BBEdit reference "Searching with Grep", which I > bookmarked and view in a web browser because the Apple Help viewer has a > terrible UI. __ Hey Steve, Goo