~dricottone/my-utils

ref: b914bdcbe7d8c64819cb8a7b0362fa47b28fb586 my-utils/core/vimsplit -rwxr-xr-x 1.1 KiB
b914bdcbDominic Ricottone Test updates 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/sh

name="vimsplit"
version="1.0"
help_message=$(/usr/bin/cat <<-EOF
	Open two files in split windows
	Usage: vimsplit FILE1 FILE2
	Options:
	 -h, --help     print this message and exit
	 -v, --version  print version number and exit
EOF
)

. /usr/local/lib/myminiparse.sh

# check if right number of arguments
if [ "$#" -eq 0 ]; then
  (>&2 /usr/bin/printf "Usage: vimsplit FILE1 FILE2\n")
  exit 1
elif [ "$quiet" -eq 1 ] && [ "$#" -ne 3 ]; then
  exit 1
elif [ "$quiet" -ne 1 ] && [ "$#" -ne 2 ]; then
  (>&2 /usr/bin/printf "%s: Expected 2 arguments (given $#)\n" "$name")
  exit 1
fi

# get first two files
for arg; do
  case "$arg" in
  -q|--quiet)
    #ignore these
    ;;

  *)
    if [ -z "$file1" ]; then
      file1="$arg"
    elif [ -z "$file2" ]; then
      file2="$arg"
    fi
    ;;
  esac
done

# check files
if [ ! -f "$file1" ]; then
  if [ "$quiet" -eq 1 ]; then
    (>&2 /usr/bin/printf "%s: No such file '%s'\n" "$name" "$file1")
  fi
  exit 1
elif [ ! -f "$file2" ]; then
  if [ "$quiet" -eq 1 ]; then
    (>&2 /usr/bin/printf "%s: No such file '%s'\n" "$name" "$file2")
  fi
  exit 1
fi

/usr/bin/nvim "$file1" --cmd ":sp $file2"