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
$ easy_install -U virtualenv | |
# Create a sandbox | |
$ virtualenv --no-site-packages myenv | |
$ cd myenv | |
# Install Paste Script | |
$ bin/pip install PasteScript |
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
# Test buildout | |
# Put this file in a directory as buildout.cfg. | |
# In the same directory, run: | |
# | |
# $ wget "http://svn.zope.org/*checkout*/zc.buildout/trunk/bootstrap/bootstrap.py" | |
# $ python bootstrap.py | |
# $ bin/buildout | |
# | |
[buildout] |
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
[ | |
{ "keys": ["super+x"], "command": "clipboard_history_cut" }, | |
{ "keys": ["super+c"], "command": "clipboard_history_copy" }, | |
{ "keys": ["super+v"], "command": "clipboard_history_paste" }, | |
{ "keys": ["super+shift+v"], "command": "clipboard_history_previous_and_paste" }, | |
{ "keys": ["super+pagedown"], "command": "clipboard_history_next" }, | |
{ "keys": ["super+pageup"], "command": "clipboard_history_previous" }, | |
{ "keys": ["super+alt+ctrl+v"], "command": "clipboard_history_choose_and_paste" } |
NewerOlder