diff options
| author | Alex Leferry 2 <alexherbo2@gmail.com> | 2020-06-21 00:25:33 +0200 |
|---|---|---|
| committer | Alex Leferry 2 <alexherbo2@gmail.com> | 2020-06-21 00:53:23 +0200 |
| commit | bc8286c405e04ec6fd17a86758c8c28cdc5b6adc (patch) | |
| tree | e5e376783e031239c71f6a0624e5ed601483ca86 | |
| parent | 4bb72630c97f65c0319ea155bc7e42c847a21c8e (diff) | |
kak-connect: Document the script
| -rwxr-xr-x | bin/kak-connect | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/bin/kak-connect b/bin/kak-connect index 1d87d52..a4fabcc 100755 --- a/bin/kak-connect +++ b/bin/kak-connect @@ -1,14 +1,23 @@ #!/bin/sh -# Environment variables +# Environment variables ──────────────────────────────────────────────────────── + XDG_DATA_HOME=${XDG_DATA_HOME:-~/.local/share} CONNECT_SCRIPT_PATH=$XDG_DATA_HOME/kak/connect/script.sh +# Main ───────────────────────────────────────────────────────────────────────── + main() { + + # Send the edit command to the session / client. if test -n "$KAKOUNE_SESSION" -o -n "$KAKOUNE_CLIENT"; then edit "$@" + + # Try to connect to an existing session from a previous :connect-detach command. elif test -t 1 -a -e "$CONNECT_SCRIPT_PATH"; then attach + + # Create a session and attach if there is a terminal. elif test -t 1; then kak_session=$$ # Start a connected shell or edit files. @@ -46,6 +55,8 @@ EOF if test -e "$CONNECT_SCRIPT_PATH"; then attach fi + + # GUI apps. else file=$1 line=$2 column=$3 kak -ui dummy -e " @@ -57,6 +68,8 @@ EOF fi } +# Functions ──────────────────────────────────────────────────────────────────── + attach() { mv "$CONNECT_SCRIPT_PATH" "$CONNECT_SCRIPT_PATH~" sh "$CONNECT_SCRIPT_PATH~" |
