dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 6be1d5f2434a4b398156481b9b9f961ffa2bda54
parent 61a2d15cb05d00693c86f25b3176930b391b5d42
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Mon, 14 May 2018 10:25:10 -0400

Increase mailcap wait time for opening browser, update FZF-tmux search commands

Diffstat:
Mlinks/.mailcap | 2+-
Mlinks/.tmux.conf | 1+
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/links/.mailcap b/links/.mailcap @@ -1,5 +1,5 @@ # HTML -text/html; cp %s ~/.mutt/tmp.html && open ~/.mutt/tmp.html && sleep 1 && rm ~/.mutt/tmp.html; test=test -n "$DISPLAY" +text/html; cp %s ~/.mutt/tmp.html && open ~/.mutt/tmp.html && sleep 3 && rm ~/.mutt/tmp.html; test=test -n "$DISPLAY" text/html; w3m -I %{charset} -T text/html; copiousoutput; needsterminal text/plain; cat %s; copiousoutput diff --git a/links/.tmux.conf b/links/.tmux.conf @@ -102,6 +102,7 @@ bind -r n next-window # next window with <C-a>n bind -n -r M-n next-window # next window with <M-n> bind -n -r M-b previous-window # previous window with <M-n> +#bind -n M-, run-shell "tmux list-panes -as -F \"##I.##P ##{pane_current_command} . #{pane_current_path} (#W)#F\" | fzf-tmux | cut -d \" \" -f 1 | xargs tmux select-pane -t" bind -n M-, run-shell "tmux list-windows -F \"##I:##W\" | fzf-tmux | cut -d \":\" -f 1 | xargs tmux select-window -t" bind -n M-. run-shell "tmux list-sessions -F \"##S\" | fzf-tmux | xargs tmux switch -t"