code review: typos.

This commit is contained in:
Nicholas Ochiel 2017-11-15 17:42:37 +03:00
parent d9a574acd5
commit 133fcb0ce4

View File

@ -3,7 +3,7 @@
hook global KakBegin .* %{ hook global KakBegin .* %{
%sh{ %sh{
[ -z "kak_client_env_$STY" ] && exit [ -z "${kak_client_env_STY}" ] && exit
echo " echo "
alias global focus screen-focus alias global focus screen-focus
alias global new screen-new-vertical alias global new screen-new-vertical
@ -14,7 +14,6 @@ hook global KakBegin .* %{
def screen-new-vertical -params .. -command-completion -docstring "Create a new vertical region" %{ def screen-new-vertical -params .. -command-completion -docstring "Create a new vertical region" %{
%sh{ %sh{
tty="$(ps -o tty ${kak_client_pid} | tail -n 1)" tty="$(ps -o tty ${kak_client_pid} | tail -n 1)"
screen -X eval 'split -h' 'focus down' "screen kak -c \"${kak_session}\" -e \"$*\"" < "/dev/$tty" screen -X eval 'split -h' 'focus down' "screen kak -c \"${kak_session}\" -e \"$*\"" < "/dev/$tty"
} }
@ -43,8 +42,8 @@ If no client is passed then the current one is used} \
evaluate-commands -client '$1' %{ %sh{ evaluate-commands -client '$1' %{ %sh{
screen -X focus screen -X focus
}}" }}"
elif [ -n "kak_client_env_$STY" ]; then elif [ -n "${kak_client_env_STY}" ]; then
tty="$(ps -o tty ${kak_client_pid} | tail -n 1)" tty="$(ps -o tty ${kak_client_pid} | tail -n 1)"
screen -X select "$kak_client_env_WINDOW" < "$/dev/$tty" screen -X select "$kak_client_env_WINDOW" < "/dev/$tty"
fi fi
} } } }