tmux




Instalar Tmux

Terminal:
sudo apt-get install tmux

tmux shortcuts & cheatsheet

start new:
tmux
start new with session name:
tmux new -s myname
attach:
tmux a  #  (or at, or attach)
attach to named:
tmux a -t myname
list sessions:
tmux ls
kill session:
tmux kill-session -t myname
Kill all the tmux sessions:
tmux ls | grep : | cut -d. -f1 | awk '{print substr($1, 0, length($1)-1)}' | xargs kill
In tmux, hit the prefix ctrl+b (my modified prefix is ctrl+a) and then:

Sessions

:new<CR>  new session
s  list-sessions
$  tmux attach -t 0  #if session number is 0
$  tmux attach -d   #recover better
$  tmux detach -a  #restore size windows client
$  name session
tmux                           # new tmux session
tmux new -s mySession          # new session with a name
tmux ls                        # list sessions
tmux a                         # attach to session
tmux a -t mySession            # attach to a named session 
tmux kill-session -t mySession # kill session
Ctrl-a d                       # dettach from a session
Ctrl-a s                       # list session and select with enter
Ctrl-a N                       # new session

Windows (tabs)

Ctrl-a c  # new window
Ctrl-a w  # list windows
Ctrl-a h  # move to previously selected window
Ctrl-a l  # move to the next window
Ctrl-a p  # move to the previous window
Ctrl-a f  # find window
Ctrl-a ,  # name window
Ctrl-a &  # kill window

Panes (splits)

Ctrl-a %       # vertical split
Ctrl-a "       # horizontal split
Ctrl-a o       # swap panes
Ctrl-a q       # show pane numbers
Ctrl-a ←/→/↑/↓ # move focus to left/right/upper/lower pane
Ctrl-a x       # kill pane
Ctrl-a +       # break pane into window (e.g. to select text by mouse to copy)
Ctrl-a -       # restore pane from window
Ctrl-a ⍽       # toggle between layouts
Ctrl-a q       # Show pane numbers
Ctrl-a {       # Move the current pane left
Ctrl-a }       # Move the current pane right
Ctrl-a z       # toggle pane zoom
Ctrl-a !       # close other panes except the current one

<prefix> q (Show pane numbers, when the numbers show up type the key to goto that pane)
<prefix> { (Move the current pane left)
<prefix> } (Move the current pane right)
<prefix> z toggle pane zoom

Sync Panes

You can do this by switching to the appropriate window, typing your Tmux prefix (commonly Ctrl-B or Ctrl-A) and then a colon to bring up a Tmux command line, and typing:
:setw synchronize-panes
You can optionally add on or off to specify which state you want; otherwise the option is simply toggled. This option is specific to one window, so it won’t change the way your other sessions or windows operate. When you’re done, toggle it off again by repeating the command. tip source

Resizing Panes

You can also resize panes if you don’t like the layout defaults. I personally rarely need to do this, though it’s handy to know how. Here is the basic syntax to resize panes:
PREFIX : resize-pane -D (Resizes the current pane down)
PREFIX : resize-pane -U (Resizes the current pane upward)
PREFIX : resize-pane -L (Resizes the current pane left)
PREFIX : resize-pane -R (Resizes the current pane right)
PREFIX : resize-pane -D 20 (Resizes the current pane down by 20 cells)
PREFIX : resize-pane -U 20 (Resizes the current pane upward by 20 cells)
PREFIX : resize-pane -L 20 (Resizes the current pane left by 20 cells)
PREFIX : resize-pane -R 20 (Resizes the current pane right by 20 cells)
PREFIX : resize-pane -t 2 20 (Resizes the pane with the id of 2 down by 20 cells)
PREFIX : resize-pane -t -L 20 (Resizes the pane with the id of 2 left by 20 cells)


search:
  • Ctrlb[
  • /
  • Enter

 Copy mode:
Ctrl-a [       # enter copy mode (then use emacs select/yank keys)  or scroll mode
               # press CTRL-SPACE or CTRL-@ to start selecting text
               # move cursor to end of desired text
               # press ALT-w to copy selected text
Ctrl-a ]       # paste copied text

copy:
  • Ctrlb[
  • Space
  • Enter
paste:
  • Ctrlb]

restart pane or tab

So <prefix>+: and then enter respawn-pane -k and press Enter



Pressing PREFIX [ places us in Copy mode. We can then use our movement keys to move our cursor around the screen. By default, the arrow keys work. we set our configuration file to use Vim keys for moving between windows and resizing panes so we wouldn’t have to take our hands off the home row. tmux has a vi mode for working with the buffer as well. To enable it, add this line to .tmux.conf:
setw -g mode-keys vi
With this option set, we can use h, j, k, and l to move around our buffer.
To get out of Copy mode, we just press the ENTER key. Moving around one character at a time isn’t very efficient. Since we enabled vi mode, we can also use some other visible shortcuts to move around the buffer.
For example, we can use "w" to jump to the next word and "b" to jump back one word. And we can use "f", followed by any character, to jump to that character on the same line, and "F" to jump backwards on the line.
   Function                vi             emacs
   Back to indentation     ^              M-m
   Clear selection         Escape         C-g
   Copy selection          Enter          M-w
   Cursor down             j              Down
   Cursor left             h              Left
   Cursor right            l              Right
   Cursor to bottom line   L
   Cursor to middle line   M              M-r
   Cursor to top line      H              M-R
   Cursor up               k              Up
   Delete entire line      d              C-u
   Delete to end of line   D              C-k
   End of line             $              C-e
   Goto line               :              g
   Half page down          C-d            M-Down
   Half page up            C-u            M-Up
   Next page               C-f            Page down
   Next word               w              M-f
   Paste buffer            p              C-y
   Previous page           C-b            Page up
   Previous word           b              M-b
   Quit mode               q              Escape
   Scroll down             C-Down or J    C-Down
   Scroll up               C-Up or K      C-Up
   Search again            n              n
   Search backward         ?              C-r
   Search forward          /              C-s
   Start of line           0              C-a
   Start selection         Space          C-Space
   Transpose chars                        C-t

Misc

d  detach
t  big clock
?  list shortcuts
:  prompt

Configurations Options:

# Mouse support - set to on if you want to use the mouse
* setw -g mode-mouse off
* set -g mouse-select-pane off
* set -g mouse-resize-pane off
* set -g mouse-select-window off

# Set the default terminal mode to 256color mode
set -g default-terminal "screen-256color"

# enable activity alerts
setw -g monitor-activity on
set -g visual-activity on

# Center the window list
set -g status-justify centre

# Maximize and restore a pane
unbind Up bind Up new-window -d -n tmp \; swap-pane -s tmp.1 \; select-window -t tmp
unbind Down
bind Down last-window \; swap-pane -s tmp.1 \; kill-window -t tmp




Mi configuración:



Referencias:
https://panovski.me/productivity-tools-tmux-and-zsh/

https://gist.github.com/MohamedAlaa/2961058

0 comentarios :

Vim




Instalamos los Plugins
Terminal:
sudo apt-get install vim

chequeamos si python esta activo con

Terminal:
vim --version

si no tienes activo el python y te encuentras en debia o alguna de sus derivadas puedes solucionarlo con

Terminal:
sudo apt-get remove vim

Terminal:
sudo apt-get install vim-nox

ahora instalamos el gestor de plugins para vim

Terminal:
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
luego agregamos las siguientes lineas al archivo de configuracion

Terminal:
nano ~/.vimrc

Texto a copiar:
set nocompatible              " be iMproved, required
filetype off                  " required

" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')

" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'

" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
" Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}

" All of your Plugins must be added before the following line
call vundle#end()            " required
filetype plugin indent on    " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList       - lists configured plugins
" :PluginInstall    - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean      - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line

para instalar los plugins declarados en la configuracion ejecutamos

Terminal:
vim

luego dentro de vim presionamos los dos puntos  -> :

nos deberia quedar asi

Terminal:
:PluginInstall
presionamos enter y esperamos que instale los plugins, para encontrar mas plugins puedes visitar la siguiente pagina web

https://vimawesome.com/


yo he realizado una configuracion personal y se instala de una manera muy facil, corriendo alguno de los siguientes scripts


Terminal:
sudo wget https://gitlab.com/cirelramos/oh-my-vim/raw/master/quick-install.sh -O - | sudo bash

entrar en vim y ejecutar

Terminal:
sudo apt-get install build-essential cmake python-dev python3-dev


Terminal:
vim


:PlugInstall
:PlugInstall

asi instalamos todos los Plugins que se encuentran en la configuración


instalamos los paquetes npm necesarios para el eslint

Terminal:
npm install -g babel-eslint esformatter-quotes eslint-plugin-babel eslint-plugin-jsx-a11y node-gyp webpack csslint eslint eslint-plugin-import eslint-plugin-react npm-check-updates esformatter eslint-config-airbnb eslint-plugin-jest jshint js-beautify  update -f

Terminal:
ln -s /usr/local/bin/eslint /usr/bin/eslint

Comandos comunes
new  ruta-del-archivo para dividir la pantalla horizontalmente
vnew  ruta-del-archivo para dividir la pantalla verticalmente
:shell regresar a la terminal
tabn, para irnos a la siguiente pestaña.
tabp, para irnos a la pestaña previa.
tabfirst, para irnos a la primera pestaña.
tablast, para irnos a la última pestaña.
:tabnew Crea una nueva pestaña vacía.
:tabedit fichero Abre el fichero especificado en una nueva pestaña.
:tabclose Cerrar la pestaña actual (también con :q!).
:tabnext [n] Saltar a la siguiente pestaña (o a la enesima siguiente).
:tabprev [n] Saltar a la anterior pestaña (o a la enesima anterior).
:e Crea un nuevo buffer.
:bclose Cerrar el buffer actual.
:bnext [n] Saltar a el siguiente buffer .
:bprev [n] Saltar a el anterior buffer .

Atajos mas comunes

Switch pestaña
gt (En modo comando) Saltar a la siguiente pestaña. En gvim también sirve Ctrl+AvPag.
gT (En modo comando) Saltar a la anterior pestaña. En gvim también sirve Ctrl+RePag.
Ngt (En modo comando) Saltar a la pestaña número N.
:tabs Mostrar una lista de pestañas abiertas.
:tabdo comando Ejecuta el comando en todas las pestañas abiertas, abortando en caso de error.
%= formatear todo el codigo
4=  formatear 4 lineas de codigo
V (select rows) = formatear las lineas seleccionadas


"qp  -> imprimir el macro realizado












Fuzzy Finder
Ctrlp

if you want use in bash or zsh type

vim ** and press 
tab



NerdTree
F5

para ver las opciones del menu
m


Comandos Emmet

Ctrlz,


fold o pestañas en el codigo

para cerrar o abrir un fold
za
abrir un fold completo
zR
cerrar un fold completo
zC
para colocar todo el documento con fold
ggvGzC
para hacer unfold a todo el documento
ggvGzR

  • zo opens a fold at the cursor.
  • zShift+o opens all folds at the cursor.
  • zc closes a fold at the cursor.
  • zm increases the foldlevel by one.
  • zShift+m closes all open folds.
  • zr decreases the foldlevel by one.
  • zShift+r decreases the foldlevel to zero -- all folds will be open.

ver todos los map

:verbose map <key>


Buscar una palabra en especifico

:/\<me\>
en ese caso seria la palabra "me" para conocer mas pattern

http://vim.wikia.com/wiki/Search_patterns  


Eliminar la linea completa que contenga la busqueda "profile"

g/profile/d

http://vim.wikia.com/wiki/Delete_all_lines_containing_a_pattern


cortar y pegar
presionas V para entrar el en el modo VISUAL luego para seleccionar

en linea:  CTRL+V
en bloques CTRL+Q

para cortar  dd
para cortar dentro de comillas di"
para copiar yy
para pegar p


Una vez tenemos abierto vim y estamos editando un archivo debemos conocer diversos comandos para poder utilizar el entorno. El editor se puede encontrar en 3 modos diferentes:
  • Modo normal (Normal mode): Se pueden utilizar ciertas combinaciones de teclas para realizar ciertas acciones. Para acceder a este modo presionar escape.
  • Modo inserción (Insertion mode): Se puede insertar (insert) o sobreescribir el texto (append). Para acceder a este modo presionar ‘i’, ‘a’ o la tecla ‘insert’ (1 vez = insert, 2 veces = append).
  • Modo comando (Command mode): Se puede utilizar cualquier comando SED además de funciones propias de Vim. Para acceder a este modo se debe estar en modo normal y pulsar ‘:’, a continuación se escribirá nuestra petición.
  • Modo visual (visual mode): Se puede selecionar texto para tratarlo en conjunto. Para acceder a este modo se debe estar en modo normal y pulsar ‘v’.

Modo Normal

  • Desplazamiento con los cursores del teclado o con h (izquierda), j (arriba), k (abajo) y l (derecha)
  • Última línea
  • G
  • Primera línea
  • gg
  • Deshacer
  • u
  • Rehacer
  • CTRL+r
  • Buscar un texto
  • /texto[ENTER]
  • Buscar el texto donde se encuentra el cursor
  • %
  • Buscar el texto donde se encuentra el cursor en sentido inverso
  • #
  • Repetir última búsqueda
  • n
  • Repetir última búsqueda en sentido contrario
  • N
  • Dividir la pantalla horizontalmente en 2:
  • CTRL+ws
  • Dividir la pantalla verticalmente en 2:
  • CTRL+wv
  • Crear un nuevo archivo en una pantalla dividida horizontalmente:
  • CTRL+wn
  • Cerrar la división actual
  • CTRL+wq
  • Moverse a la ventana de arriba (j), abajo (k), izquierda (h) o derecha (l):
  • CTRL+w{j,k,h,l} ó CTRL+w{cursores del teclado}
  • Hacer todas las ventanas del mismo tamaño
  • CTRL+w=
  • Incrementar/Decrementar la altura de la ventana actual
  • CTRL+{+,-}
  • Nueva pestaña
  • CTRL+t
  • Siguiente o anterior pestaña
  • CTRL+n
    CTRL+p
  • Cerrar pestaña
  • CTRL+c
  • Seleccionar todo el texto
  • ggVG
    ó
    vggG
  • Establecer una marca con el nombre ‘a’
  • ma
  • Ir a la marca ‘a’
  • ‘a
  • Ir a la última línea modificada
  • ‘.

Modo Inserción

  • Autocompletar palabra en base al texto ya existente
  • CTRL+N y CTRL+P (p.ej. “hola hCTRL+N” resultado “hola hola”)
  • Indentar
  • CTRL+t
  • Desindentar
  • CTRL+d

Modo Comando

Pulsar [ENTER] después de cada comando
  • Ir a la linea 25
  • :25
  • Salir
  • :q
  • Salir cerrando todos los ficheros abiertos
  • :qa
  • Guardar
  • :w
  • Salir guardando
  • :wq
  • Salir sin guardar
  • :q!
  • Guardar en fichero de solo lectura (sólo root)
  • :w!
  • Guardar con otro nombre
  • :w archivo
  • Editar archivo
  • :e archivo
  • Cerrar archivo
  • :bdelete
  • Navegar a partir de un directorio
  • :e directorio
    :Explore
  • :/palabraAbuscar
  • :/palabraAbuscar\c   ignorando minusculas y mayusculas
  • Substituir una cadena de texto A por B (si alguna de estas cadenas contiene caracteres que tengan algun significado especial como por ejemplo ‘/’ se debe anular antes la funcionalidad de este con \, por ejemplo, substituir los ‘/’ por ‘.’ seria :s/\//./)
  • :%s/A/B/ (p.ej. :s/hola/adios)
  • mix order list values
    %!shuf
  • Substituir una cadena de texto A por B en todo el texto
  • :%s/A/B/g
  • Substituir una cadena de texto A por B en todo el texto aceptando confirmacion
  • :%s/A/B/gc
  • Eliminar linea por busqueda
    g/profile/d
  • Substituir una cadena de texto A por B entre la linea 2 y 10
  • :2,10s/A/B/g
  • Activar la inserción en “modo paste”, esto permite pegar cosas al documento (usando el ratón) de forma que no tabule lo que pegamos, ya que si ese texto ya esta tabulado lo único que hace es pegar desordenando el texto.
  • :set paste
  • Desactivar la inserción en “modo paste”
  • :set nopaste
  • Cortar las líneas que no caben en pantalla.
  • :set wrap
  • No cortar las líneas que no caben en pantalla
  • :set nowrap
  • Dividir pantalla horizontalmente
  • :split
  • Dividir pantalla verticalmente
  • :vsplit
    • <c-w>w moverse por los paneles. Pulsaremos de forma conjunta la tecla control y w, soltaremos las teclas y pulsaremos w de nuevo.
    • <c-w>h ir al panel de la izquierda.
    • <c-w>j ir al panel de abajo.
    • <c-w>k ir al panel de arriba.
    • <c-w>l ir al panel de la derecha.
    • <c-w>c cerrar panel. También hace lo mismo :cl[ose].
    • <c-w>o mantener el panel activo, cerrando los demás. También nos sirve :on[ly].
    • <c-w>= iguala la altura y anchura de los paneles.
    • <c-w>_ maximiza la altura del panel activo.
    • <c-w>| maximiza el alncho del panel activo.
    • [N]<c-w>_ la alturá será de [N] filas.
    • [N]<c-w>| la anchura será de [N] columnas.
  • Crear nueva pantalla dividida
  • :new
  • Quedarse solo con la ventana actual y ocultar el resto
  • :only
  • Listar todos los ficheros abiertos (buffers)
  • :files ó :buffers
  • Ir al buffer X (los numeros aparecen al hacer un :files o :buffers *en plural*)
  • :file X ó :buffer X
  • Ir al buffer X (pulsar tabulador para autocompletar)
  • :b X
  • Ayuda
  • :help ó :help termino

Modo Visual

Como ya hemos comentado, para acceder a este modo se debe estar en modo normal y pulsar ‘v’. No obstante, si en lugar de ‘v’ pulsamos ‘Ctrl+v’ pasaremos al modo visual en bloque (permite seleccionar un bloque de texto por columnas en lugar de por filas). Y si pulsamos ‘gv’ se repetirá la última selección.
  • Seleccionar texto utilizando h(izquierda), j (arriba), k (abajo) y l (derecha) o con los cursores del teclado.
  • Es posible aplicar las mismas instrucciones vista en el modo comando y modo normal, pero esto solo se realizará sobre el texto seleccionado.
  • Si seleccionamos texto y pasamos a modo comando pulsando ‘:’ se nos mostrar una linea como esta “:’ <,’>”, no debemos borrar estos símbolos ya que es la forma de reconocer vim que estamos aplicando el comando al texto seleccionado.
  • Copiar el texto selecionado
  • y
  • Copiar el texto selecionado en el portapapeles del sistema (teclear el + también)
  • “+y
  • Cortar el texto seleccionado
  • d
  • Pegar el texto copiado o cortado. Debemos estar en modo normal, se pasará automáticamente a ese modo despues de copiar o cortar con ‘y’ o ‘d’.
  • p
  • Pegar el texto desde el portapapeles del sistema (teclear el + también)
  • “+p
  • Indentar
  • >>
  • Indentar
  • <<
  • Modo visual seleccionando columnas en lugar de lineas
  • CTRL+v
  • Insertar texto delante de la columna
  • CTRL+v SHIFT+i ‘texto’ ESC

Corrector ortográfico

Por defecto, vim dispone de corrector para Inglés pero si activamos otros idiomas, el editor nos pregunará si deseamos descargar los correspondientes diccionarios automáticamente.
  • Activar corrector
  • :set spell
  • Desactivar corrector
  • :set nospell
  • Seleccionamos idioma
  • :set spelllang=es
    :set spelllang=ca
    :set spelllang=en
    :set spelllang=fr
Las palabras incorrectas se marcaran en color rojo y podremos interaccionar en modo normal:
  • Siguiente palabra incorrecta
  • ]s
  • Previa palabra incorrecta
  • [s
  • Sugerencias de corrección para una palabra
  • z=
  • Añadir una palabra al diccionario
  • zg
  • Borrar una palabra del diccionario
  • zw

Comentar Lineas
# Nos situamos al principio de la primera línea que queremos comentar.
# Activamos el modo "VISUAL BLOCK".
Ctrl + V

# Con la flecha del teclado vamos bajando hasta la última línea a comentar.
# Entramos en modo "INSERT".
Shift + I

# Introducimos el símbolo de comentario, según el tipo de código, por ejemplo  ->  #  (en bash)
# Veremos que solo se añade el carácter a la primera línea, tranquilos.

# Salimos del modo "INSERT".
Esc

# Automáticamente se añadirá el símbolo # a todas las líneas seleccionadas con "VISUAL BLOCK"



Descomentar Lineas

# Nos situamos al principio de la primera línea que queremos descomentar.
# Activamos el modo "VISUAL BLOCK".
Ctrl + V

# Con la flecha del teclado vamos bajando hasta la última línea a descomentar.

# Directamente borramos el símbolo que comenta el código en bash.
Supr

# Automáticamente se borrará el símbolo # a todas las líneas seleccionadas con "VISUAL BLOCK"


En la página de Vim se puede encontrar más información, incluso scripts que añaden funcionalidades interesantes. Recomendables:
  • MiniBuffExplorer: Añade una barra con el listado de ficheros (buffers) abiertos (F2 para visualizarlo, CTRL+n y CTRL+p para el siguiente/anterior segun establecido en el archivo de configuración de este artículo).
  • TagList: Acceso a funciones/métodos para diversos lenguajes de programación mediante :Tlist (Requiere apt-get install exuberant-ctags) o F4 (segun la configuración indicada en este artículo)
  • NERD Comment: Comentar lineas o bloques de código utilizando ,cc / ,cu / ,c[espacio]
  • NERD Tree: Alternativa al navegador de ficheros :Explore visualizable mediante :NERDTreeToggle o F3/shift-F3
  • PowerLine: Línea de estado con colores e indicaciones configurables.
  • VCScommand: Comandos para controlar el repositorio de control de versiones (Subversion, Git…) desde vim.







https://www.youtube.com/watch?v=5r6yzFEXajQ

https://drive.google.com/file/d/1eYBTBTOedXVNqxXlfhZCjfngtypQPFxB/view?usp=sharing

https://blogs.technet.microsoft.com/jessicadeen/linux/macos-ohmyzsh-tmux-vim-iterm2-powerlevel9k-badass-terminal/

http://vim.wikia.com/wiki/Copy,_cut_and_paste


https://www.marblestation.com/?p=910

http://www.sromero.org/wiki/linux/aplicaciones/manual_vim









0 comentarios :