Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.mkd
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ I am a web developer and the whole concept of trying out small chunks of program

**WHERE IS MY VIM....?** this plugin answers that (it also does *live update* say whatt)

## Dependencies

- Python 2.6+ or 3.3+

## Installation

- Manual installation:
Expand Down
2 changes: 1 addition & 1 deletion fidget.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if [ "$FIDGETDIR" == "" ]; then
fi

if [ "$1" == "" ]; then
FIDGET=$FIDGETDIR/`python -c "import random; print hex(int(str(random.random())[2:10]))[2:]"`
FIDGET=$FIDGETDIR/`python -c "import random; print (hex(int(str(random.random())[2:10])))[2:]"`
else
FIDGET=$FIDGETDIR/$1
fi
Expand Down