<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link rel="hub" href="http://tumblr.superfeedr.com/" xmlns:atom="http://www.w3.org/2005/Atom"/><description></description><title>The (Unofficial) BBEdit Hints Weblog</title><generator>Tumblr (3.0; @bbedit-hints)</generator><link>http://bbedit-hints.tumblr.com/</link><item><title>Node.js / Express in BBEdit -- navigation using markers</title><description>&lt;p&gt;BBEdit&amp;#8217;s Javascript (or Coffeescript) support is OK, but there are some nice things developers using &lt;a href="http://expressjs.com/"&gt;Express&lt;/a&gt; would like.&lt;/p&gt;

&lt;p&gt;For example, I&amp;#8217;d like to be able to navigate my &lt;code&gt;.get&lt;/code&gt; or &lt;code&gt;.post&lt;/code&gt; callback blocks in the function menu.&lt;/p&gt;

&lt;p&gt;Given how the language menu works in BBEdit this is a reasonably hard task. But an easy work around is to use Markers.&lt;/p&gt;

&lt;p&gt;Here&amp;#8217;s a pattern you can use with Find And Mark All:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;\w*\.((get|post|put|delete)\W*".+")
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Set that to the find pattern and &lt;code&gt;\1&lt;/code&gt; to the Mark With pattern and you&amp;#8217;ll be all set.&lt;/p&gt;

&lt;p&gt;You can also save this pattern in &lt;code&gt;BBEdit&lt;/code&gt; -&amp;gt; &lt;code&gt;Setup&lt;/code&gt; -&amp;gt; &lt;code&gt;Patterns&lt;/code&gt;&lt;/p&gt;</description><link>http://bbedit-hints.tumblr.com/post/51067766320</link><guid>http://bbedit-hints.tumblr.com/post/51067766320</guid><pubDate>Wed, 22 May 2013 09:22:44 -0400</pubDate></item><item><title>Creating Jigs with BBEdit</title><description>&lt;p&gt;Yesterday I was writing this code over and over and over:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;%li

  = f.label :first_name, "What is your first name, good sir"

  = f.text_area :first_name
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The process I needed to do was:&lt;/p&gt;

&lt;ol&gt;&lt;li&gt;Add a field to the database&lt;/li&gt;
&lt;li&gt;Write those three lines of code that referenced the field I created.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;I had about 40 fields to create. Half way through my task I realized I could use a Jig.&lt;/p&gt;

&lt;p&gt;A &lt;a href="http://en.wikipedia.org/wiki/Jig_%28tool%29"&gt;jig&lt;/a&gt; in woodworking is a custom tool created to control the location of another tool.&lt;/p&gt;

&lt;p&gt;In our case it&amp;#8217;s a temporary tool created by us, used by our text editor to automate a task. But I write this jig with the intention that I&amp;#8217;ll throw it away and never use it again.&lt;/p&gt;

&lt;p&gt;After I came to terms with creating something, using it 20 times then throwing it away, I wrote the following BBEdit clipping.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;%li

  = f.label :#CLIPBOARD#, "&amp;lt;##&amp;gt;"

  = f.text_area :#CLIPBOARD#
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;My process for using this jig was:&lt;/p&gt;

&lt;ol&gt;&lt;li&gt;Create the field in the database, and copy the new field name to the clipboard.&lt;/li&gt;
&lt;li&gt;Run the jig. My database field name is now populated&lt;/li&gt;
&lt;li&gt;Start typing the desired custom label&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;My initial problem creating this jig was that I needed the same value two places. Clippings don&amp;#8217;t let you mirror one value to another place, so I thought I was stuck, until I realized that I could use the clipboard here.&lt;/p&gt;

&lt;p&gt;Sometimes automation happens at a strategic level: &amp;#8220;I know I do this a lot, and I know I&amp;#8217;m going to do this a lot in the future, so let me let my editor help me&amp;#8221;. Sometimes automation happens at a tactical level: &amp;#8220;I need to do this 40 times, but then I&amp;#8217;ll never do this again&amp;#8221;. Both are equally valid!&lt;/p&gt;

&lt;p&gt;I put this clipping in its own folder (&amp;#8220;Jigs&amp;#8221;) and gave it a keyboard shortcut (F10). The next time I need to create a jig I&amp;#8217;m going to put it in that same folder and reuse the keyboard shortcut.&lt;/p&gt;</description><link>http://bbedit-hints.tumblr.com/post/45186877696</link><guid>http://bbedit-hints.tumblr.com/post/45186877696</guid><pubDate>Tue, 12 Mar 2013 09:12:50 -0400</pubDate><category>long</category></item><item><title>Zooming: A feature hidden in Applescript</title><description>&lt;p&gt;For a long time I&amp;#8217;ve wanted to zoom in my documents, either to see them when really far away or to use them with a projector or Airplay.&lt;/p&gt;

&lt;p&gt;Today I found how to do it with BBEdit, thanks to a feature in BBEdit hidden in the Applescript support.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;tell application "BBEdit"
    set display magnification of window 1 to 2.0 -- displays text at 2x
end tell
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Woh, suddenly my text is bigger!&lt;/p&gt;

&lt;p&gt;(set it back to normal by &lt;code&gt;set display magnification of window 1 to 1.0&lt;/code&gt;)&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;&amp;#8220;Yeah, but why don&amp;#8217;t you just make the font size bigger?&amp;#8221;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;I investigated the differences between just increasing the font and using the display magnification. They look pretty much identical to me. So, yes, you could increase the font size.&lt;/p&gt;

&lt;p&gt;The problem I always have with font size is remembering what size it was originally. Was it 10? 12? 14? (Yes, this is a silly excuse)&lt;/p&gt;

&lt;p&gt;With the display magnification property I know the &amp;#8220;normal&amp;#8221; size is 1.0.&lt;/p&gt;

&lt;p&gt;However, yes, it&amp;#8217;s mostly a curiosity, which is probably why it&amp;#8217;s hidden in the Applescript dictionary and not in the interface somehow.&lt;/p&gt;

&lt;p&gt;However, we can change that&lt;/p&gt;

&lt;p&gt;Let&amp;#8217;s create three Applescripts: Zoom in, Zoom Out, and Zoom to Normal.&lt;/p&gt;

&lt;p&gt;Zoom in.applescript&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;tell application "BBEdit"
    tell window 1
        set display magnification to display magnification * 1.25 
    end tell
end tell
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Zoom Out.applescript&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;tell application "BBEdit"
    tell window 1
        set display magnification to display magnification / 1.25 
    end tell
end tell
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Zoom To Normal.applescript&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;tell application "BBEdit"
    set display magnification of window 1 to 1.0 -- displays text at 2x
end tell
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If we add these to the Scripts folder (normally in `~/Library/Application Support/BBEdit/Scripts/) they show up in BBEdit&amp;#8217;s Scripts menu.&lt;/p&gt;</description><link>http://bbedit-hints.tumblr.com/post/43723644111</link><guid>http://bbedit-hints.tumblr.com/post/43723644111</guid><pubDate>Fri, 22 Feb 2013 09:44:57 -0500</pubDate><category>long</category></item><item><title>Finding and selecting text with Applescript</title><description>&lt;p&gt;Today I needed to do a find with Applescript then select everything except the first and last character of that selection.&lt;/p&gt;

&lt;p&gt;Even if you&amp;#8217;re not doing this exact thing, it&amp;#8217;s sometimes not obvious in Applescript and BBEdit how to do this task. (It took me about an hour of head scratching to get this script like it is).&lt;/p&gt;

&lt;script src="https://gist.github.com/rwilcox/4755347.js"&gt;&lt;/script&gt;&lt;p&gt;To some extent I&amp;#8217;ve already covered this topic &lt;a href="http://bbedit-hints.tumblr.com/post/24060655335/applescript-select-a-sentence"&gt;BBEdit Hints: Selecting a Sentence&lt;/a&gt;, but the length of that script obscures the point a bit. This is a simple script that in 6 lines of code does a simple job.&lt;/p&gt;</description><link>http://bbedit-hints.tumblr.com/post/42846746767</link><guid>http://bbedit-hints.tumblr.com/post/42846746767</guid><pubDate>Mon, 11 Feb 2013 11:09:35 -0500</pubDate></item><item><title>Example of how to create a BBEdit text filter with Applescript</title><description>&lt;p&gt;In addition to creating BBEdit text filters with Unix shell tools, you can also create them with Applescript. The User manual for BBEdit talks about this, but lacks an example.&lt;/p&gt;

&lt;p&gt;So here&amp;#8217;s an example, which uses Applescript to replace every space it finds with a carriage return.&lt;/p&gt;

&lt;script src="https://gist.github.com/4606336.js"&gt;&lt;/script&gt;</description><link>http://bbedit-hints.tumblr.com/post/41277831904</link><guid>http://bbedit-hints.tumblr.com/post/41277831904</guid><pubDate>Wed, 23 Jan 2013 09:34:58 -0500</pubDate></item><item><title>Send Selection to BBEdit Worksheet</title><description>&lt;p&gt;Today I wanted to send my selection to the Unix Worksheet, so I wrote a script.&lt;/p&gt;

&lt;p&gt;The long and short of it was that I typed a Unix command in a BBEdit text window. I wanted to run this command, but I&amp;#8217;m &lt;em&gt;too lazy to copy/paste it to a Worksheet&lt;/em&gt;. So I wrote the following script.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;tell application "BBEdit"

    set output to selection as text

    set uws to Unix worksheet window
    tell uws
        select insertion point after last character
        set selection to output
    end tell
end tell
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;And there you have it - send a Unix command to the Worksheet, all selected and ready to run!&lt;/p&gt;</description><link>http://bbedit-hints.tumblr.com/post/40682254266</link><guid>http://bbedit-hints.tumblr.com/post/40682254266</guid><pubDate>Wed, 16 Jan 2013 09:55:20 -0500</pubDate></item><item><title>Keep your function definitions (ctags) up to date automatically, with guard</title><description>&lt;p&gt;I love using ctags in my BBEdit projects so I can quickly jump to the definition of a function. I&amp;#8217;ve been manually doing this (using a feature of the &lt;a href="https://github.com/rwilcox/ryans_rails.bbpackage"&gt;Ryan&amp;#8217;s Rails&lt;/a&gt; package&amp;#8230; but today I decided I needed some automation in my life.&lt;/p&gt;

&lt;p&gt;Enter &lt;a href="https://github.com/guard/guard"&gt;guard&lt;/a&gt; a Ruby tool that watches a directory for specified files to change, and when they do &lt;code&gt;guard&lt;/code&gt; runs a specified command.&lt;/p&gt;

&lt;p&gt;There&amp;#8217;s a great &lt;a href="http://railscasts.com/episodes/264-guard"&gt;screencast about Guard&lt;/a&gt; that covers many things about it, but if you just want your ctags to be updated automatically here&amp;#8217;s what you do.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ sudo gem install guard
$ sudo gem install fs-notify
$ sudo gem install guard-shell  
&lt;/code&gt;&lt;/pre&gt;

&lt;blockquote&gt;
  &lt;p&gt;For those of you in the Ruby community that Know Better&amp;#8230; feel free to omit the sudo, or put the gems in your &lt;code&gt;Gemfile&lt;/code&gt;, or RVM global gemset, or whatever. These instructions assume the reader has no experience with Ruby, and no patience to fight with modern professional gem/ruby management techniques.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Create a &lt;code&gt;.Guardfile_rails&lt;/code&gt;, with the following contents. Create this in your home directory.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;guard :shell do
  watch(%r{^(?:app|lib)/.+\.rb$}) { `/usr/local/bin/bbedit --maketags` }
end
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The first parameter to the &lt;code&gt;watch&lt;/code&gt; function is a regex matching what files to watch. Since this is a Rails project watching .rb files in &lt;code&gt;app/&lt;/code&gt; or &lt;code&gt;lib/&lt;/code&gt; is fine, as that&amp;#8217;s where most of the code lives anyway. You may need to modify this for your particular project requirement.&lt;/p&gt;

&lt;p&gt;Guard is supposed to automatically look for and load a &lt;code&gt;.Guardfile&lt;/code&gt; in your home directory, if one doesn&amp;#8217;t already exist your current project folder. This didn&amp;#8217;t work for me. I also write things beyond Ruby some times, so I may want to create a &lt;code&gt;.Guardfile_python&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;On the command line, in your project, folder&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;$ guard --guardfile ~/.Guardfile_rails
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;Guard will just sit there with a prompt and that&amp;#8217;s OK. Save a file in your project and switch back to Guard: it ran the &lt;code&gt;bbedit --maketags&lt;/code&gt; script.&lt;/p&gt;

&lt;p&gt;That&amp;#8217;s all there is to it!&lt;/p&gt;</description><link>http://bbedit-hints.tumblr.com/post/34163244782</link><guid>http://bbedit-hints.tumblr.com/post/34163244782</guid><pubDate>Tue, 23 Oct 2012 09:30:14 -0400</pubDate><category>long</category><category>ctags</category></item><item><title>Open in BBEdit via the Shell Worksheet</title><description>&lt;p&gt;While BBEdit has a great &lt;code&gt;Open File by Name&lt;/code&gt; feature, something I like to do is use the BBEdit Worksheet to open files.&lt;/p&gt;

&lt;p&gt;Here&amp;#8217;s how:&lt;/p&gt;

&lt;ol&gt;&lt;li&gt;Open the BBEdit worksheet. I like to use projects, so I use the project specific BBEdit Worksheet&lt;/li&gt;
&lt;li&gt;&lt;code&gt;cd&lt;/code&gt; into the project directory&lt;/li&gt;
&lt;li&gt;Use the &lt;code&gt;bbedit&lt;/code&gt; command to open the documents you require.&lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;For example, in Rails if I want to open HTML source for a web page (called &lt;code&gt;views&lt;/code&gt; in Rails nomenclature)&lt;/p&gt;

&lt;p&gt;&lt;code&gt;bbedit app/views/widgets/new.*&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;This will open up all the files that begin with &lt;code&gt;new&lt;/code&gt;, which might be useful. Rails, for example, has separate files for each format the app outputs data - using the Worksheet in this manner will open them all.&lt;/p&gt;</description><link>http://bbedit-hints.tumblr.com/post/33639894495</link><guid>http://bbedit-hints.tumblr.com/post/33639894495</guid><pubDate>Mon, 15 Oct 2012 10:13:22 -0400</pubDate><category>long</category></item><item><title>"From @bbedit_hints on Twitter: .@MichaelZed @bbedit You can turn off whitespace stripping per..."</title><description>“From @bbedit_hints on Twitter: .@MichaelZed @bbedit You can turn off whitespace stripping per language. Blog entry showing how: &lt;a href="http://t.co/vwvTh8oO"&gt;http://t.co/vwvTh8oO&lt;/a&gt;”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/32392307210</link><guid>http://bbedit-hints.tumblr.com/post/32392307210</guid><pubDate>Thu, 27 Sep 2012 09:28:23 -0400</pubDate></item><item><title>rwilcox:

BBEdit has this useful feature: it will strip...</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_mb0folj8fc1qbuaiqo1_500.png"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;img src="http://25.media.tumblr.com/tumblr_mb0folj8fc1qbuaiqo2_500.png"/&gt;&lt;br/&gt; &lt;br/&gt;&lt;p&gt;&lt;a class="tumblr_blog" href="http://rwilcox.tumblr.com/post/32392054547/bbedit-has-this-useful-feature-it-will-strip"&gt;rwilcox&lt;/a&gt;:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;BBEdit has this useful feature: it will strip whitespace added to end of lines OR it will remove all the whitespace from lines that are *just* whitespace.&lt;br/&gt;&lt;br/&gt;This setting is at BBEdit -&gt; Preferences -&gt; Text Files -&gt; Strip trailing whitespace.&lt;br/&gt;&lt;br/&gt;Most of the time I have this turned on because most of the time I’m writing code in BBEdit. &lt;br/&gt;&lt;br/&gt;Except, there are some languages (programming languages and markup languages like &lt;a href="http://daringfireball.net/projects/markdown/" title="Markdown"&gt;Markdown&lt;/a&gt; where whitespace is significant.&lt;br/&gt;&lt;br/&gt;We can customize BBEdit’s behavior per language via the Languages preferences item. Select your language from the Custom Language preferences, as shown in the image.&lt;br/&gt;&lt;br/&gt;You can set language level defaults for pretty much everything text related. What we’re interested in is the Files tab and the Strip trailing whitespace checkbox.&lt;/p&gt;
&lt;p&gt;Now, as long as your language in the BBEdit document is set to Markdown it will no longer strip whitespace&lt;/p&gt;
&lt;/blockquote&gt;</description><link>http://bbedit-hints.tumblr.com/post/32392151573</link><guid>http://bbedit-hints.tumblr.com/post/32392151573</guid><pubDate>Thu, 27 Sep 2012 09:23:00 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: Need to mirror files to a remote server? @mremy has an attachment..."</title><description>“From @bbedit_hints on Twitter: Need to mirror files to a remote server? @mremy has an attachment script for you: &lt;a href="http://t.co/ofsUXQOk"&gt;http://t.co/ofsUXQOk&lt;/a&gt;”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/32326633569</link><guid>http://bbedit-hints.tumblr.com/post/32326633569</guid><pubDate>Wed, 26 Sep 2012 09:40:39 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: Today’s screencast I show you how to take a big table of code (or..."</title><description>“From @bbedit_hints on Twitter: Today’s screencast I show you how to take a big table of code (or lisp) and turn it into C. Code generation FTW: &lt;a href="http://t.co/PMkf7zjf"&gt;http://t.co/PMkf7zjf&lt;/a&gt;”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/32259893998</link><guid>http://bbedit-hints.tumblr.com/post/32259893998</guid><pubDate>Tue, 25 Sep 2012 08:44:20 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: Some interesting BBEdit themes with previews are here at:..."</title><description>“From @bbedit_hints on Twitter: Some interesting BBEdit themes with previews are here at: &lt;a href="http://t.co/2UhclXBv"&gt;http://t.co/2UhclXBv&lt;/a&gt;”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/32197021591</link><guid>http://bbedit-hints.tumblr.com/post/32197021591</guid><pubDate>Mon, 24 Sep 2012 10:19:13 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: Or, if you do a lot of coding, you have long lines in your code base..."</title><description>“From @bbedit_hints on Twitter: Or, if you do a lot of coding, you have long lines in your code base and use soft wrap, Use “hard” lines will display like a compiler counts”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/31981972423</link><guid>http://bbedit-hints.tumblr.com/post/31981972423</guid><pubDate>Fri, 21 Sep 2012 09:12:38 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: Do a lot of writing prose or blog entries in BBEdit? Prefs -&gt;..."</title><description>“From @bbedit_hints on Twitter: Do a lot of writing prose or blog entries in BBEdit? Prefs -&gt; Editing -&gt; Use “hard” lines in soft wrapped views may might make edits easier”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/31981970182</link><guid>http://bbedit-hints.tumblr.com/post/31981970182</guid><pubDate>Fri, 21 Sep 2012 09:12:34 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: In addition to turning off menus you don’t use, you can turn off..."</title><description>“From @bbedit_hints on Twitter: In addition to turning off menus you don’t use, you can turn off individual menu ITEMS. I just hide the part of Markup menu I never use!!”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/31920183224</link><guid>http://bbedit-hints.tumblr.com/post/31920183224</guid><pubDate>Thu, 20 Sep 2012 09:20:46 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: BBEdit includes a quick Grep Reference, in case you don’t want to..."</title><description>“From @bbedit_hints on Twitter: BBEdit includes a quick Grep Reference, in case you don’t want to dive for the manual. Help -&gt; BBEdit Help, then click Grep Refenence”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/31856237108</link><guid>http://bbedit-hints.tumblr.com/post/31856237108</guid><pubDate>Wed, 19 Sep 2012 08:00:49 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: Use Textile? BBEdit has basic support (language, support in the Live..."</title><description>“From @bbedit_hints on Twitter: Use Textile? BBEdit has basic support (language, support in the Live Preview window) + a textile -&gt; HTML filter: &lt;a href="http://bit.ly/OWhsyv"&gt;http://bit.ly/OWhsyv&lt;/a&gt;”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/31792810066</link><guid>http://bbedit-hints.tumblr.com/post/31792810066</guid><pubDate>Tue, 18 Sep 2012 08:46:15 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: Can’t remember that clipping you want, but remember *part* of it?..."</title><description>“From @bbedit_hints on Twitter: Can’t remember that clipping you want, but remember *part* of it? Clippings Menu -&gt; Insert Clipping has search (/hattip @stevekinney)”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/31726889896</link><guid>http://bbedit-hints.tumblr.com/post/31726889896</guid><pubDate>Mon, 17 Sep 2012 09:01:00 -0400</pubDate></item><item><title>"From @bbedit_hints on Twitter: BBEdit can check the syntax for various scripting languages (I tried..."</title><description>“From @bbedit_hints on Twitter: BBEdit can check the syntax for various scripting languages (I tried Python, Ruby, and Perl and they worked great): #! -&gt; Check Syntax”&lt;br/&gt;&lt;br/&gt; - &lt;em&gt;&lt;a href="http://bit.ly/yhfzwc"&gt;http://bit.ly/yhfzwc&lt;/a&gt;&lt;/em&gt;</description><link>http://bbedit-hints.tumblr.com/post/31520931176</link><guid>http://bbedit-hints.tumblr.com/post/31520931176</guid><pubDate>Fri, 14 Sep 2012 09:29:28 -0400</pubDate></item></channel></rss>
