mirror of
https://github.com/kforney/pentest-distro-builder.git
synced 2024-11-28 19:25:25 -07:00
Kaj Forney
4fdc60b6a2
Former-commit-id: 9f5a64d372
Former-commit-id: 89d8a1302bd2a72239fbe9ad9820be4ecda76cab
30 lines
627 B
Bash
Executable file
30 lines
627 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# "nvim session strategy"
|
|
#
|
|
# Same as vim strategy, see file 'vim_session.sh'
|
|
|
|
ORIGINAL_COMMAND="$1"
|
|
DIRECTORY="$2"
|
|
|
|
nvim_session_file_exists() {
|
|
[ -e "${DIRECTORY}/Session.vim" ]
|
|
}
|
|
|
|
original_command_contains_session_flag() {
|
|
[[ "$ORIGINAL_COMMAND" =~ "-S" ]]
|
|
}
|
|
|
|
main() {
|
|
if nvim_session_file_exists; then
|
|
echo "nvim -S"
|
|
elif original_command_contains_session_flag; then
|
|
# Session file does not exist, yet the original nvim command contains
|
|
# session flag `-S`. This will cause an error, so we're falling back to
|
|
# starting plain nvim.
|
|
echo "nvim"
|
|
else
|
|
echo "$ORIGINAL_COMMAND"
|
|
fi
|
|
}
|
|
main
|