In your shell:
cd ~/.vim
git clone git://github.com/juvenn/mustache.vim.git
mv mustache.vim/syntax/* syntax/
mv mustache.vim/indent/* indent/
mv mustache.vim/ftdetect/* ftdetect/
rm -rf mustache.vim
In your shell:
cd ~/.vim
git clone git://github.com/juvenn/mustache.vim.git
mv mustache.vim/syntax/* syntax/
mv mustache.vim/indent/* indent/
mv mustache.vim/ftdetect/* ftdetect/
rm -rf mustache.vim
# encoding=utf-8 | |
""" | |
Author: Jökull Sólberg Auðunsson (solberg.is) | |
""" | |
from django.core.files.storage import get_storage_class | |
from django.db.models import ImageField | |
from uuid import uuid4 |
#! /usr/bin/env python | |
pages = { | |
"start": { | |
"text": "It's a dark night outside. Somewhere a wolf howls.", | |
"prompt": "Where will you take shelter, the haunted house, or the bat cave?", | |
"next": ("haunted house", "bat cave"), | |
}, | |
"haunted house": { | |
"text": "By the light of your flickering torch, you're able to make it to\n" \ |
#!/usr/bin/env python3 | |
hearts = "\u2661\u2665" | |
colors = list(map(str, range(30, 38))) | |
prefix = "\x1B[" | |
mid = "m" | |
def cycle(x): | |
while 1: |