Skip to content

Instantly share code, notes, and snippets.

@slahiruk
slahiruk / tmux-cheats.md
Created April 12, 2020 20:15 — forked from Starefossen/tmux-cheats.md
My personal tmux cheat sheet for working with sessions, windows, and panes. `NB` I have remapped the command prefix to `ctrl` + `a`.

Sessions

New Session

  • tmux new [-s name] [cmd] (:new) - new session

Switch Session

  • tmux ls (:ls) - list sessions
  • tmux switch [-t name] (:switch) - switches to an existing session
@slahiruk
slahiruk / stuff.m
Last active December 14, 2017 15:53
Matlab stuff
% conditional operator in Matlab
cond = @(x,y)x<=y;
dim=@(x,y,cd)(x*cd(x,y))+(y*~cd(x,y));