My scripts for startup, dmenu, and the command line
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 jaren geleden
4 jaren geleden
4 jaren geleden
3 jaren geleden
4 jaren geleden
1234567891011
  1. #!/bin/sh
  2. #This is a wrapper script for editing files from nnn. It checks if it nnn is running in tmux then calls the appropriate editor.
  3. if ! { [ "$TERM" = "tmux-256color" ] && [ -n "$TMUX" ]; } then
  4. # Remove option --tab for new window
  5. st -e vim $*
  6. else
  7. # tmux session running
  8. vim $* #tmux -u split-window "vim \"$*\""
  9. fi