My scripts for startup, dmenu, and the command line
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- #!/bin/sh
- #This is a wrapper script for editing files from nnn. It checks if it nnn is running in tmux then calls the appropriate editor.
-
- if ! { [ "$TERM" = "tmux-256color" ] && [ -n "$TMUX" ]; } then
- # Remove option --tab for new window
- st -e vim "$@"
- else
- # tmux session running
- # tmux -u split-window vim "$@"
- # wait $!
- vim "$@"
- fi
|