From f52d1d3028bcd4f73f02f94fd3ae7ae4dfdb569b Mon Sep 17 00:00:00 2001 From: Jorge Morante Date: Sun, 8 Oct 2017 18:56:17 +0200 Subject: [PATCH] update health-check.md --- docs/health-check.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/docs/health-check.md b/docs/health-check.md index d54fe29..d9b96ec 100644 --- a/docs/health-check.md +++ b/docs/health-check.md @@ -42,3 +42,25 @@ Tmux fingers works better with proper 256 support. Set `@default-terminal` to ei ``` set -g @default-terminal "screen-256color" ``` + +## submodules not initialized properly + +This could happen after an update from a tmux-fingers version prior to 0.6.x, +ensure that all tmux-fingers dependencies are installed properly by running the +following: + +``` +cd ~/.tmux/plugins/tmux-fingers +git submodule update --init --recursive" +tmux source ~/.tmux.conf" +``` + +## reattach-to-user-namespace is recommended + +If you are using tmux 2.5 or less and OSX, it's recommended that you install `reattach-to-user-namespace` in for system clipboard integration. + +``` +brew install reattach-to-user-namespace +``` + +Remember that you need to install [tmux-yank](https://github.com/tmux-plugins/tmux-yank) as well.