~kris/dots

srice

ref: e2d8c870015e8c9112982127fc30507e985de396 srice/.config/nnn/plugins/gitroot -rwxr-xr-x 365 bytes
e2d8c870 — Kris Yotam Initial commit: dotfiles from lazykris 6 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env sh

# Description: cd to the top level of the current git repository in the current context
# Dependencies: git
# Shell: sh
# Author: https://github.com/PatrickF1

root="$(git rev-parse --show-toplevel 2>/dev/null)"
if [ -n "$root" ]; then
    printf "%s" "0c$root" > "$NNN_PIPE"
else
    printf "Not in a git repository"
    read -r _
    exit 1
fi