summaryrefslogtreecommitdiff
path: root/tmux101_print.cpp
diff options
context:
space:
mode:
authorczjstmax <jstmaxlol@disroot.org>2025-12-21 18:08:53 +0100
committerczjstmax <jstmaxlol@disroot.org>2025-12-21 18:08:53 +0100
commitd2d638e7a637bc5dcfb1ef7b2525be6a8d20df18 (patch)
treec812b9fe15d403720e208cf20c7677681dbe3f21 /tmux101_print.cpp
parentd4a67e8cc3b90f974fd53259a91cd33392fedc1a (diff)
deleted tmux101 (unused, old, aaaa)
Diffstat (limited to 'tmux101_print.cpp')
-rw-r--r--tmux101_print.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/tmux101_print.cpp b/tmux101_print.cpp
deleted file mode 100644
index 14dc0ac..0000000
--- a/tmux101_print.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-#include <iostream>
-#include <escape.ansi>
-
-int main() {
- std::cout
- << "[ "<<red<<"TMUX 101 - Terminal MUltipleXer 101 "<<def<<"]\n"
-
- << "[ "<<red<<"Basics "<<def<<"]\n"
- << "> ^b -> Enter command mode ("<<yellow<<"ESC in VIM talk"<<def<<")\n"
- << "[ "<<red<<"Sessions "<<def<<"]\n"
- << "> ^b^c -> Open a new sesh\n"
- << "> ^b^& -> Exit focused sesh (Same as 'exit' command)\n"
- << "[ "<<red<<"Layout control "<<def<<"]\n"
- << "> ^b^n -> Goes to next window\n"
- << "> ^b^p -> Goes to previous window\n"
- << "> ^b^% -> Horizontal split\n"
- << "> ^b^' / ^b^("<<yellow<<"S"<<def<<"') -> Vertical split \n"
- << "> ^b("<<yellow<<"*ArrowKey"<<def<<") -> Switch between panes\n"
- ; return 0;
-}