Tuesday, October 13, 2009
Based on this: http://www.nesium.com/blog/2006/08/04/actionscript-gettersetter-command-for-textmate/
I just changed the format of the code to match the existing code at work.
Command configuration:
Save: nothing
Input: Entire Document
Output: Insert as Snippet
Activation: Choose whatever you want, personally I prefer using “get” as a Tab Trigger
Scope Selector: source.actionscript
Command:
Ick. The formatting of this is horrible. Will fix soon.
#!/usr/bin/ruby
txt = STDIN.read
vars [...]
Saturday, January 5, 2008
Just uploaded a new build of growlbuildlistener which fixed a problem with the build listener that caused it not to work.
Check it out:
http://growlbuildlistener.googlecode.com/files/growllistener-0.4.jar
Thursday, December 6, 2007
If you’ve got a Sony Reader, and don’t like Sony’s book management app (or you don’t run Windows) you should definitely check out calibre. It lets you manage your ebook library, convert files to the Sony Reader format, tweak metadata about your books, manage the books on your Reader, preview the books. It [...]
I moved this blog from slimeslurp.net/drupal to blog.slimeslurp.net. It is now running on Word Press. Drupal was overkill for what I was using it for. File links for some things are currently broken.
Thursday, November 30, 2006
Here is a VERY basic completion for Ant build files for Fish. It was based on the Ant completion from Zsh. Save it to ~/.config/fish/completions/ant.fish.
function __fish_complete_targets -d "Print list of targets from build.xml"
if test -f build.xml
sed -n "s/ *<target name=[\"']\([^\"']*\)[\"'].*/\1/p" < build.xml
end
end
complete -x -c ant -a "(__fish_complete_targets)"