zshrc.d/30-functions-vim.zrc
author Mikael Berthe <mikael@lilotux.net>
Wed, 06 Mar 2024 21:08:50 +0100
changeset 59 ab7da88f8fd8
parent 56 d065bc0c6991
permissions -rw-r--r--
Enable Vim mode for foot terminal


# Change "viml file:n" to "vim file +n"
# Based on http://www.zsh.org/mla/users/2011/msg00333.html
#
function viml() {
    [[ "$#" != 1 || -r "$1" ]] && {
        vim "$@"
        return $?
    }

    local args
    args=(${(s.:.)1})
    [[ "$#args" -ge 2 && "$args[2]" == <-> ]] && \
        command vim "$args[1]" "+$args[2]"    || \
        command vim "$@"
}