zshrc.d/30-functions-vim.zrc
author Mikael Berthe <mikael@lilotux.net>
Wed, 18 Mar 2015 20:12:05 +0100
changeset 28 aa674a9c97c2
child 56 d065bc0c6991
permissions -rw-r--r--
Add a command viml


# 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 "$args[1]"
}