This file contains 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 get_short_commit { | |
git log -n 1 --format=oneline --abbrev-commit 2> /dev/null | sed -e 's/\([0-9a-f]*\)\(.*\)/\1/' | |
} | |
function parse_git_dirty { | |
[[ $(git status 2> /dev/null | tail -n1) != "nothing to commit (working directory clean)" ]] && echo "*" | |
} | |
function parse_git_branch { | |
git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* \(.*\)/[\1 $(get_short_commit)]$(parse_git_dirty)/" | |
} |
This file contains 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
/* Based on gist: 26061 by bastos. */ | |
CmdUtils.CreateCommand({ | |
names: ["code"], | |
icon: "http://www.github.com/favicon.ico", | |
author: {name: "Pedro Valencia", email: "[email protected]"}, | |
license: "GPL", | |
homepage: "http://gist.github.com/gists/168442", | |
description: "Search on Github Code Search", | |
help: "Search on Github Code Search", | |
arguments: [{role: 'object', nountype: noun_arb_text, label: 'function'}], |