aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.local/share/nvim/site/contrib/vimhelplint
diff options
context:
space:
mode:
authorYaroslav <contact@yaroslavps.com>2020-08-10 19:46:27 +0300
committerYaroslav <contact@yaroslavps.com>2020-08-10 19:46:27 +0300
commitf030afd547a56ce3d6156a0a92dddaae275ee1d4 (patch)
tree023a5751169cc6ffdec1af998d703b5b8bcdae9f /dotfiles/.local/share/nvim/site/contrib/vimhelplint
parent812bcaaf2622dc27310e8579c181394cbc68f7a2 (diff)
downloadvimrice-f030afd547a56ce3d6156a0a92dddaae275ee1d4.tar.gz
vimrice-f030afd547a56ce3d6156a0a92dddaae275ee1d4.zip
simplify vim rice: use vimplug for managing plugins
Diffstat (limited to 'dotfiles/.local/share/nvim/site/contrib/vimhelplint')
-rwxr-xr-xdotfiles/.local/share/nvim/site/contrib/vimhelplint46
1 files changed, 0 insertions, 46 deletions
diff --git a/dotfiles/.local/share/nvim/site/contrib/vimhelplint b/dotfiles/.local/share/nvim/site/contrib/vimhelplint
deleted file mode 100755
index 3a87e2c..0000000
--- a/dotfiles/.local/share/nvim/site/contrib/vimhelplint
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/bin/sh
-# A wrapper around vim-vimhelp (https://github.com/machakann/vim-vimhelplint).
-#
-# This file is automatically used by autoload/neomake/makers/ft/help.vim, if
-# vimhelplint is installed in Neomake's build dir (and `vimhelplint` is not
-# found as an executable).
-#
-# You can run `make build/vimhelplint` (from Neomake's root) to
-# download/install it into Neomake's build dir, and Neomake will use this for
-# help files then.
-
-if [ -z "$VIMHELPLINT_DIR" ]; then
- # Change to parent dir (not POSIXly, but resolving symlinks).
- CDPATH='' cd -P -- "$(dirname -- "$(readlink -f -- "$0" 2>/dev/null || echo "$0")")/.." || exit
- VIMHELPLINT_DIR=$PWD/build/vimhelplint
- cd - >/dev/null || exit
-fi
-vimhelplint=${VIMHELPLINT_DIR}/ftplugin/help_lint.vim
-
-if ! [ -f "$vimhelplint" ]; then
- echo "$vimhelplint not found." >&2
- echo "Run 'make build/vimhelplint' Neomake's root directory to install it." >&2
- exit 64
-fi
-
-file="$1"
-if [ -z "$file" ]; then
- echo 'No input file specified.' >&2
- exit 64
-fi
-if ! [ -e "$file" ]; then
- echo "File $file is not readable." >&2
- exit 1
-fi
-
-out=$(${VIMHELPLINT_VIM:-vim} -esN -u NONE -i NONE \
- -c "silent edit $1" \
- -c 'set ft=help' \
- -c "source $vimhelplint" \
- -c 'verb VimhelpLintEcho' \
- -c 'qall!' 2>&1)
-if [ -z "$out" ]; then
- exit 0
-fi
-echo "$out"
-exit 1