aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--alias2
-rw-r--r--mutt/muttrc4
-rw-r--r--tigrc2
3 files changed, 3 insertions, 5 deletions
diff --git a/alias b/alias
index 7eaded5..59c3206 100644
--- a/alias
+++ b/alias
@@ -76,7 +76,7 @@ alias ll='ls -lh'
76alias lla='ls -lha' 76alias lla='ls -lha'
77llw() { which $1 | xargs ls -alh; } 77llw() { which $1 | xargs ls -alh; }
78alias hg='history | grep' 78alias hg='history | grep'
79rmrf() { mv $@ /tmp/; } 79rmrf() { mv $@ /tmp/ 2>/dev/null || rm -rf $@; }
80alias rr='_move_to_tmp' 80alias rr='_move_to_tmp'
81alias sound="echo -ne '\a'" 81alias sound="echo -ne '\a'"
82pst(){ pstree -ps ${1:-$$}; } 82pst(){ pstree -ps ${1:-$$}; }
diff --git a/mutt/muttrc b/mutt/muttrc
index 6f9b820..fb3fd7e 100644
--- a/mutt/muttrc
+++ b/mutt/muttrc
@@ -48,7 +48,7 @@ bind index y edit-label
48bind index x tag-entry 48bind index x tag-entry
49bind index t edit-label 49bind index t edit-label
50bind index,browser l select-entry 50bind index,browser l select-entry
51bind index \cl limit 51bind index \\ limit
52bind index \cj next-entry 52bind index \cj next-entry
53bind index \ck previous-entry 53bind index \ck previous-entry
54bind index,browser G last-entry 54bind index,browser G last-entry
@@ -75,7 +75,7 @@ macro generic,index,pager \cr ":source ~/.config/mutt/muttrc\n" "Reload mutt's c
75macro index <Return> ":exec sync-mailbox\n" "Sync Mailbox" 75macro index <Return> ":exec sync-mailbox\n" "Sync Mailbox"
76macro index *a "Tall\n" "Select All" 76macro index *a "Tall\n" "Select All"
77macro index *n "\ctall\n" "Deselect All" 77macro index *n "\ctall\n" "Deselect All"
78macro index h "\clall\n" "All messages" 78macro index h "\\all\n" "All messages"
79macro index d '<tag-prefix><delete-message>' 'Delete' 79macro index d '<tag-prefix><delete-message>' 'Delete'
80 80
81# Sidebar 81# Sidebar
diff --git a/tigrc b/tigrc
index f21f7bf..1a8cec4 100644
--- a/tigrc
+++ b/tigrc
@@ -203,8 +203,6 @@ bind main I >sh -c "hub issue | tig"
203# Misc 203# Misc
204## Statistics 204## Statistics
205bind main gc >sh -c 'cloc --git %(commit) | tig' 205bind main gc >sh -c 'cloc --git %(commit) | tig'
206## Script to bump Android version
207bind main <C-B> !sh -c 'scripts/bump_version.sh && scripts/whatsnew.sh'
208 206
209# note 207# note
210#bind generic gnn !git notes edit %(commit) 208#bind generic gnn !git notes edit %(commit)