Added VIM tools, and help pages to all scripts missing one

This commit is contained in:
ville rantanen
2015-04-02 12:07:42 +03:00
parent 85928b7326
commit 029e2f5ad0
15 changed files with 85 additions and 18 deletions

12
vim/vimbox Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
function helpexit() {
echo Edit a file with check list mod of vim
echo "key 'a' adds a checkbox, space toggles the box"
echo All switches are passed on to vim.
exit
}
[[ -z "$1" ]] && helpexit
[[ "$1" = "-h" ]] && helpexit
LIB=$( dirname $0 )/checklist.vim
vim -S "$LIB" "$@"