summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/aliases.zsh28
-rw-r--r--lib/completion.zsh12
-rw-r--r--lib/rake_completion.zsh4
3 files changed, 32 insertions, 12 deletions
diff --git a/lib/aliases.zsh b/lib/aliases.zsh
index 304bafd27..c4428d405 100644
--- a/lib/aliases.zsh
+++ b/lib/aliases.zsh
@@ -1,9 +1,9 @@
+#!/bin/zsh
+
+# Push and pop directories on directory stack
alias pu='pushd'
alias po='popd'
-alias sc='ruby script/console'
-alias sdb='ruby script/dbconsole'
-alias ssd='ruby script/server --debugger'
alias ss='thin --stats "/thin/stats" start'
alias sg='ruby script/generate'
alias sd='ruby script/destroy'
@@ -11,16 +11,18 @@ alias sp='ruby script/plugin'
alias ssp='ruby script/spec'
alias rdbm='rake db:migrate'
-alias mr='mate CHANGELOG app config db lib public script spec test'
+# Basic directory operations
alias .='pwd'
alias ...='cd ../..'
alias -- -='cd -'
+# Super user
alias _='sudo'
alias ss='sudo su -'
#alias g='grep -in'
+# Git related
alias g='git'
alias gst='git status'
alias gl='git pull'
@@ -36,25 +38,39 @@ alias gdb='git branch -d'
alias gcount='git shortlog -sn'
alias gcp='git cherry-pick'
+# Show history
alias history='fc -l 1'
+# List direcory contents
alias ls='ls -F'
+alias lsa='ls -lahG'
+alias l='ls -la'
alias ll='ls -alr'
-alias l='ls'
-alias ll='ls -l'
alias sl=ls # often screw this up
alias sgem='sudo gem'
+# Find ruby file
alias rfind='find . -name *.rb | xargs grep -n'
alias afind='ack-grep -il'
+# Git and svn mix
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
+# TextMate
alias et='mate . &'
alias ett='mate app config lib db public spec test Rakefile Capfile Todo &'
alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
+<<<<<<< HEAD:lib/aliases.zsh
+=======
+## Ruby related
+# Ruby scripts
+alias sc='ruby script/console'
+alias sd='ruby script/server --debugger'
+# Editor Ruby file in TextMate
+alias mr='mate CHANGELOG app config db lib public script spec test'
+>>>>>>> 886d97f41e72b8662232a2c6b196fb60508e4f67:lib/aliases.zsh
diff --git a/lib/completion.zsh b/lib/completion.zsh
index 795903d0d..deeb52824 100644
--- a/lib/completion.zsh
+++ b/lib/completion.zsh
@@ -14,7 +14,12 @@ compinit
zmodload -i zsh/complist
## case-insensitive (all),partial-word and then substring completion
-zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
+if [ "x$CASE_SENSITIVE" = "xtrue" ]; then
+ zstyle ':completion:*' matcher-list 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
+ unset CASE_SENSITIVE
+else
+ zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
+fi
zstyle ':completion:*' list-colors ''
zstyle ':completion:*' hosts $( sed 's/[, ].*$//' $HOME/.ssh/known_hosts )
@@ -32,9 +37,8 @@ zstyle ':completion:*:*:kill:*:processes' list-colors '=(#b) #([0-9]#) ([0-9a-z-
zstyle ':completion:*:*:*:*:processes' command "ps -u `whoami` -o pid,user,comm -w -w"
zstyle ':completion:*:*:(ssh|scp):*:*' hosts `sed 's/^\([^ ,]*\).*$/\1/' ~/.ssh/known_hosts`
-
-#complete on history
+# Complete on history
# zstyle ':completion:*:history-words' stop yes
# zstyle ':completion:*:history-words' remove-all-dups yes
# zstyle ':completion:*:history-words' list false
-# zstyle ':completion:*:history-words' menu yes \ No newline at end of file
+# zstyle ':completion:*:history-words' menu yes
diff --git a/lib/rake_completion.zsh b/lib/rake_completion.zsh
index c425a625e..9ee8213ae 100644
--- a/lib/rake_completion.zsh
+++ b/lib/rake_completion.zsh
@@ -1,8 +1,8 @@
_rake_does_task_list_need_generating () {
if [ ! -f .rake_tasks~ ]; then return 0;
else
- accurate=$(stat -f%m .rake_tasks~)
- changed=$(stat -f%m Rakefile)
+ accurate=$(stat -c "%n" .rake_tasks~)
+ changed=$(stat -c "%n" Rakefile)
return $(expr $accurate '>=' $changed)
fi
}