My scripts for startup, dmenu, and the command line
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- #!/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
- vim $* #tmux -u split-window "vim \"$*\""
- fi
|