BBEdit and Dreamweaver battle

2013-02-11 Thread C Fiddler
Dreamweaver and bbedit conflict: How do I resolve a seamless integration or a loving cohabitation between bbedit and dreamweaver right not they are at odds. I keep getting this message in DW that says Dreamweaver has detected a version of BBEdit that is not Dreamweaver enabled. Please disable

Re: BBEdit and Dreamweaver battle

2013-02-11 Thread Bucky Junior
I don't use Dreamweaver but this has been a recent topic which I believe contains some answers to your questions. A quick search turns up a number of references. Try this https://groups.google.com/forum/?fromgroups#!searchin/bbedit/dreamweaver Bucky On Feb 10, 2013, at 3:07 PM, C Fiddler

BBEdit Python

2013-02-11 Thread Chip G.
I'm trying to learn Python. I have a book that is helping me along. I'd like to use BBEdit as my editor, but I'm having some issues. Part of this is an Apple/Fink thing. Part of the problem is that the version of python get if I run using 'python' is old (v2.7.1). If I force paths I can get

Re: Replace character in selection

2013-02-11 Thread Zephyr Mays
Thanks for the many suggestions! Update and solution: For my workflow, I have to copy numerous small bits of text (2-5 words) from one file and paste with transformations to another, so the best solution arose using the following (and attached) AppleScripts and keyboard shortcuts. Regards,

Re: BBEdit Python

2013-02-11 Thread Maarten Sneep
On 11 feb. 2013, at 21:25, Chip G. n1mie.c...@gmail.com wrote: I'm trying to learn Python. I have a book that is helping me along. I'd like to use BBEdit as my editor, but I'm having some issues. Part of this is an Apple/Fink thing. Part of the problem is that the version of python get if I

Re: BBEdit Python

2013-02-11 Thread Chip G.
On Feb 11, 2013, at 16:12, Maarten Sneep wrote: On 11 feb. 2013, at 21:25, Chip G. n1mie.c...@gmail.com wrote: I'm trying to learn Python. I have a book that is helping me along. I'd like to use BBEdit as my editor, but I'm having some issues. Part of this is an Apple/Fink thing. Part of

Re: BBEdit Python

2013-02-11 Thread Lee Hinde
On Feb 11, 2013, at 2:13 PM, Chip G. n1mie.c...@gmail.com wrote: On Feb 11, 2013, at 16:12, Maarten Sneep wrote: On 11 feb. 2013, at 21:25, Chip G. n1mie.c...@gmail.com wrote: I'm trying to learn Python. I have a book that is helping me along. I'd like to use BBEdit as my editor, but

Re: BBEdit Python

2013-02-11 Thread Maarten Sneep
On 11 feb. 2013, at 23:13, Chip G. n1mie.c...@gmail.com wrote: On Feb 11, 2013, at 16:12, Maarten Sneep wrote: On 11 feb. 2013, at 21:25, Chip G. n1mie.c...@gmail.com wrote: I'm trying to learn Python. I have a book that is helping me along. I'd like to use BBEdit as my editor, but I'm

Re: BBEdit Python

2013-02-11 Thread Chip G.
On Feb 11, 2013, at 16:12, Maarten Sneep wrote: As a last resort, you could use the full path to python: #!/usr/local/bin/python3 OK, a variation on this worked. When I changed it to a legitimate path on my system it worked. #!/sw/bin/python3.2 Now that's working. But since the examples I

Re: BBEdit Python

2013-02-11 Thread Herbert Schulz
On Feb 11, 2013, at 4:31 PM, Chip G. n1mie.c...@gmail.com wrote: On Feb 11, 2013, at 16:12, Maarten Sneep wrote: As a last resort, you could use the full path to python: #!/usr/local/bin/python3 OK, a variation on this worked. When I changed it to a legitimate path on my system it

Re: BBEdit Python

2013-02-11 Thread Bruce Van Allen
On 2013-02-11 at 2:31 PM, n1mie.c...@gmail.com (Chip G.) wrote: OK, a variation on this worked. When I changed it to a legitimate path on my system it worked. #!/sw/bin/python3.2 Now that's working. But since the examples I had from the author didn't include those, I wonder why I can't get