rename vimbox

This commit is contained in:
ville rantanen
2017-06-07 10:50:24 +03:00
parent cd20e1d90e
commit cdbe32d534
4 changed files with 3 additions and 2 deletions

13
vim/vimd Executable file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
function helpexit() {
echo Edit a file with check list mod of vim.
echo "space toggles the box."
echo "Ctrl-b in editing mode inserts a checkbox."
echo All switches are passed on to vim.
exit
}
[[ -z "$1" ]] && helpexit
[[ "$1" = "-h" ]] && helpexit
LIB=$( dirname $( realpath $0 ) )/markdown.vim
vim -S "$LIB" "$@"