feat(vim-alias): add full screen help

This commit is contained in:
Ron Green
2020-12-12 12:51:16 +02:00
committed by GitHub
parent 3019dc331d
commit a1760af43b

View File

@@ -5,6 +5,10 @@ VIM=$(command -v vim)
GVIM=$(command -v gvim) GVIM=$(command -v gvim)
MVIM=$(command -v mvim) MVIM=$(command -v mvim)
# open the vim help in fullscreen incorporated from
# https://stackoverflow.com/a/4687513
alias vimh='${VIM} -c ":h | only"'
[[ -n $VIM ]] && alias v=$VIM [[ -n $VIM ]] && alias v=$VIM
# open vim in new tab is taken from # open vim in new tab is taken from