---
title: "tmux targeted session"
description: "https://youtu.be/5KE7Il7SOEk"
date: 2021-08-02
published: true
tags:
  - cli
  - linux
  - tmux
template: blog-post
---


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

This is something that I made up but use every single day, this is what keeps
much of what is on my blog or my teams private work wiki going.  I have a few
very important directories that I have assigned directly to a hotkey for fast
session switching.

``` bash
bind -n M-i new-session -A -s waylonwalker_com "cd ~/git/waylonwalker.com/ && nvim"
bind i popup -E -h 95% -w 95% -x 100% "tmux new-session -A -s waylonwalker_com 'cd ~/git/waylonwalker.com/ && nvim'"
bind -n M-I popup -E "tmux new-session -A -s waylonwalker_com 'cd ~/git/waylonwalker.com/ && nvim'"
```

<a href="/tmux-new-session/" class="wikilink" data-title="tmux new-session" data-description="https://youtu.be/LbQNdCAUogE" data-date="2021-08-01">tmux new-session</a>

> This one is building off of yeserday's new-session post, make sure you check that one out as well.

<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

Also check out the full YouTube
[tmux-playlist](https://www.youtube.com/playlist?list=PLTRNG6WIHETB4reAxbWza3CZeP9KL6Bkr)
to see all of the videos in this series.
