This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function($) { | |
$.fn.extend({ | |
jaxy: function() { | |
return this.each(function() { | |
if (/^a$/i.test(this.tagName)) $(this).ajaxLink(); | |
if (/^form$/i.test(this.tagName)) $(this).ajaxForm({dataType: 'script'}); | |
}); | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Original Author: Bryan Helmkamp (http://www.brynary.com/2008/9/1/setting-the-git-commit-author-to-pair-programmers-names) | |
namespace :git do | |
desc "Configures the git author to a list of developers when pair programming; USAGE: sake git:pair AUTHORS=Adam,Jon OR leave off AUTHORS to revert" | |
task :pair do | |
unless File.exists?(".git") | |
puts "This doesn't look like a git repository." | |
exit 1 | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" fuzzyfindertextmate: cmd-e to trigger, cmd-enter to open selected file in new tab | |
let g:FuzzyFinderOptions = { 'Base':{}, 'Buffer':{}, 'File':{}, 'Dir':{}, 'MruFile':{}, 'MruCmd':{}, 'FavFile':{}, 'Tag':{}, 'TaggedFile':{}} | |
let g:FuzzyFinderOptions.Base.key_open_tab = '<D-CR>' | |
map <D-e> :FuzzyFinderTextMate<CR> |
NewerOlder