This file contains hidden or 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
REM This is just rewritten from https://gist.github.com/amnuts/162f6b03c5f94692fd6c to fit Webstorm | |
@echo off | |
REM Make sure to set WebStormPath to match the location of your Webstorm copy. | |
SET WebStormPath=C:\Program Files (x86)\JetBrains\WebStorm 2016.1\bin\WebStorm64.exe | |
echo Adding file entries | |
@reg add "HKEY_CLASSES_ROOT\*\shell\Open in WebStorm" /t REG_SZ /v "" /d "Open in WebStorm" /f | |
@reg add "HKEY_CLASSES_ROOT\*\shell\Open in WebStorm" /t REG_EXPAND_SZ /v "Icon" /d "%WebStormPath%,0" /f |
This file contains hidden or 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
REM This is just rewritten from https://gist.github.com/amnuts/162f6b03c5f94692fd6c to fit Webstorm | |
REM Related gist: https://gist.github.com/Kidde82/e12496a53517daee87ce | |
@echo off | |
echo Removing file entries | |
@reg delete "HKEY_CLASSES_ROOT\*\shell\Open in WebStorm" | |
echo Removing folder entries | |
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open directory in WebStorm" |
This file contains hidden or 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
#!/bin/sh | |
TEMPDIR="tmp" | |
RED=`tput setaf 1` | |
GREEN=`tput setaf 2` | |
RESET=`tput sgr0` | |
rm -rf $TEMPDIR | |
mkdir -p $TEMPDIR |