This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Vim plugin for running LOVE | |
" Last Change: 2015 May 26 | |
" Maintainer: Davis Claiborne <[email protected]> | |
" License: This file is placed under public domain. | |
let s:save_cpo = &cpo | |
set cpo&vim | |
if exists( 'g:loaded_lovelaunch' ) | |
finish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clean -xfd | |
git submodule foreach --recursive git clean -xfd | |
git reset --hard | |
git submodule foreach --recursive git reset --hard | |
git submodule update --init --recursive |