Clippings

2018-02-15 Thread Robert
If I have a clipping that says this: #SELECTIONORPLACEHOLDER Hello# I would expect on the "Hello" portion to be left if I chose not to change it. Instead I see this: <#Hello#> Am I misunderstanding? Bob -- This is the BBEdit Talk public discussion group. If you have a feature request or wo

Re: Folders Open in BBEdit

2018-02-15 Thread Stonetown Mike
My brute force solution: Trash the folder at ~/Library/Preferences/com.apple.LaunchServices and the file at ~Library/Preferences/com.apple.LaunchServices.plist. Then rebuild the LaunchServices database (I used the free Onyx.app utility for that) and reboot. WARNING: Doing this will reset all yo

Re: Tidy

2018-02-15 Thread Jean-Christophe Helary
> On Feb 16, 2018, at 9:17, @lbutlr wrote: > > -- > If you must choose between two evils, pick the one you've never tried > before. Mail got fixed recently ? Jean-Christophe Helary --- http://mac4translators.blogspot.com @brandelune -- This is t

Re: Tidy

2018-02-15 Thread @lbutlr
On 2018-02-14 (17:14 MST), G Alexander wrote: > > use macports to install tidy > > sudo port install tidy There are two reasons I stopped using Macports. One, it requires you to use sudo to install things as root, which is not a great plan. Homebrew is much better about this. Second, Macports

Re: Where is real world example of custom keyword file?

2018-02-15 Thread G Alexander
Thanks yes but i also want to add different keywords to different groups, how to extend tcl to do this? RunKind com.color.lime KeywordFileName _mp_compilers.txt RunKind com.color.blue KeywordFileName _mp_class.txt -- This is the BBEdit Talk public discussion grou

Re: wrapping python strings

2018-02-15 Thread Charlie Garrison
On 16 Feb 2018, at 3:33, Seth Dillingham wrote: Any suggestions on how I could wrap that text automatically? […] I’m not looking for PyCharm features in BBEdit, I’m just hoping for some clever way to wrap strings and indent them properly, all (or mostly) automatically. I would suggest a rege

Re: Folders Open in BBEdit

2018-02-15 Thread Stonetown Mike
My brute force solution: Trash the folder at ~/Library/Preferences/com.apple/LaunchServices and the file at ~Library/Preferences/com.apple/LaunchServices.plist. Then rebuild the LaunchServices database (I used the free Onyx.app utility for that) and reboot. WARNING: Doing this will reset all yo

Re: Where is real world example of custom keyword file?

2018-02-15 Thread Rich Siegel
On 2/15/18 at 2:38 PM, artist.impression...@gmail.com (G Alexander) wrote: i use macports and there are files with no extensions, Portfile which contain tcl commands. i'm trying to create a custom language module Are you only trying to add some custom words to the built-in Tcl support so t

access to variables in the header file?

2018-02-15 Thread G Alexander
hello, in the header file BLMInterface.h it has kBBLMNumberColor i'd like to access this in my language module but the enum is not labeled. how to i get access to the color schemes com.barebones.bblm.class com.barebones.bblm.enumName com.barebones.bblm.enumValue com.barebones.bblm.externVar

Where is real world example of custom keyword file?

2018-02-15 Thread G Alexander
hello, i use macports and there are files with no extensions, Portfile which contain tcl commands. i'm trying to create a custom language module the documentation says use an extension, Portfile has no extension. i've tried KeywordFileName _mp_keywords.Portfile inside the file is PortGroup

wrapping python strings

2018-02-15 Thread Seth Dillingham
Our policy at work is that Python files have a line length limitation of 80 columns. This is a slight pain when we have strings that are longer. Python makes this fairly easy to deal with, though: sequential strings in parens are concatenated automatically into a single string. So a line like th