My scripts for startup, dmenu, and the command line
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

11 行
198 B

  1. #!/bin/sh
  2. if ! { [ "$TERM" = "tmux-256color" ] && [ -n "$TMUX" ]; } then
  3. # Remove option --tab for new window
  4. st -e vim "$*"
  5. else
  6. # tmux session running
  7. tmux -u split-window "vim \"$*\""
  8. fi