mybin

my ~/bin
git clone https://a3nm.net/git/mybin/
Log | Files | Refs | README

commit ee7a62794c9167fa210c8e6332f0d5c7a45f00bb
parent 4ab904e2f923e5de48049d75cffafd76d84b00e1
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Mon, 29 Aug 2016 23:06:34 +0200

vispell

Diffstat:
vispell | 10++++++++++
1 file changed, 10 insertions(+), 0 deletions(-)

diff --git a/vispell b/vispell @@ -0,0 +1,10 @@ +#!/bin/bash + +# work around the problems induced by wrong LaTeX highlighting missing some +# typos + +FILE="$1" +LANG="${2:-en}" + +vim -c 'syntax off' -c 'set spell' -c "set spelllang=$LANG" "$FILE" +