Skip to content

Instantly share code, notes, and snippets.

@omas-public
Last active January 20, 2025 06:57
Show Gist options
  • Save omas-public/d713308c82ec3bf69fc2f1024b399a31 to your computer and use it in GitHub Desktop.
Save omas-public/d713308c82ec3bf69fc2f1024b399a31 to your computer and use it in GitHub Desktop.
#!/bin/sh
VERSION='90'
TUTOR_DIR="/usr/share/vim/vim$VERSION/tutor"
TUTOR_JA=$(tempfile -p 'ja')
TUTOR=$(tempfile -p 'en')
chmod +w $TUTOR
cp $TUTOR_DIR/tutor.ja.utf-8 $TUTOR_JA
cp $TUTOR_DIR/tutor $TUTOR
trap "rm $TUTOR_JA $TUTOR" 0 1 2 3 9 11 13 15
vim -c "tabdo windo set scb nocp nonu showcmd" -O $TUTOR_JA $TUTOR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment