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! FindOrCreateAlternate() | |
let buflist = [] | |
let bufcount = bufnr("$") | |
let currbufnr = 1 | |
let current = fnamemodify(expand("%"), ':p') | |
if current =~ '/spec/' | |
if current =~ '/spec/javascripts/' | |
let altname = substitute(current, "/spec/","/public/", 'g') |
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
alias gs='git status' | |
alias gf='git fetch' | |
alias gm='git merge' | |
alias gmom='git merge origin/master' | |
alias gr='git rebase' | |
alias grom='git rebase origin/master' | |
alias grc='git rebase --continue' | |
alias grpo='git remote prune origin' | |
alias gru='git remote update --prune' |
NewerOlder