---
title: "tmux slect-pane"
description: "https://youtu.be/CPZJZjN9YTY"
date: 2021-07-23
published: true
tags:
  - cli
  - linux
  - tmux
template: blog-post
---


[https://youtu.be/CPZJZjN9YTY](https://youtu.be/CPZJZjN9YTY){.youtube-embed}

These are my MOST often used keybindings that I use in tmux.  They allow me to
jump between splits with ease with a vim style layout.  I can hold mod and jump
between panes with a familiar arrow key.

``` bash
bind -n M-h select-pane -L
bind -n M-l select-pane -R
bind -n M-k select-pane -U
bind -n M-j select-pane -D
```

<a href="/tmux-nav-2021/" class="wikilink" data-title="How I navigate tmux in 2021" data-description="change_speed = (speed) =&gt; [...document.querySelectorAll(&#39;video&#39;)].map(v =&gt; v.playbackRate=v.playbackRate+speed)" data-date="2021-05-11">How I navigate tmux in 2021</a>

> for more information on how I navigate tmux, check out this full post
