# HG changeset patch # User Ludovic Chabant # Date 1382317070 14400 # Node ID 2e1f9a40a36acfe52c599a8782242299d07de33e # Parent 337a1bfbd50ac368c998ffe7893d66c9ef35cf45 Install Vimperator and Console2 settings on Windows. diff -r 337a1bfbd50a -r 2e1f9a40a36a console.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/console.xml Sun Oct 20 20:57:50 2013 -0400 @@ -0,0 +1,103 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff -r 337a1bfbd50a -r 2e1f9a40a36a install.cmd --- a/install.cmd Tue Oct 08 08:16:07 2013 -0700 +++ b/install.cmd Sun Oct 20 20:57:50 2013 -0400 @@ -35,3 +35,17 @@ ) copy "%CWD%git\gitconfig" "%userprofile%\.gitconfig" +:: Web Browser +if exist "%userprofile%\_vimperatorrc" ( + set /P confirm=Will delete existing "%userprofile%\_vimperatorrc". OK with that? Press CTRL-C to abort. + del /Q "%userprofile%\_vimperatorrc" +) +echo source %CWD:\=/%vimperatorrc > "%userprofile%\_vimperatorrc" + +:: Console 2 +if exist "%appdata%\Console\console.xml" ( + set /P confirm=Will delete existing Console2 settings. OK with that? Press CTRL-C to abort. + del /Q "%appdata%\Console\console.xml" +) +if not exist "%appdata%\Console" mkdir "%appdata%\Console" +copy "%CWD%console.xml" "%appdata%\Console\console.xml"