- http://downloads.vagrantup.com/
- v1.1.5(現時点最新)をダウンロードしてインストール
- OSXなのでVagrant.dmg
- インストール確認
$ vagrant -v
Vagrant version 1.1.5
var appendEntry = function(selector, entry) { | |
if (entry != undefined && entry.yt.length > 0) { | |
var $dl = $('<dl/>', {class: 'entry'}); | |
$dl.append($('<dt/>', {class: 'title'})) | |
$dl.children("dt").append($('<a/>', {href: entry.url, text: entry.title})) | |
$dl.append($('<dd/>')); | |
$dl.children("dd").append("<ul/>"); | |
for (i in entry.yt) { | |
var $li = $('<li/>'); |
#compdef hg | |
# Zsh completion script for mercurial. Rename this file to _hg and copy | |
# it into your zsh function path (/usr/share/zsh/site-functions for | |
# instance) | |
# | |
# If you do not want to install it globally, you can copy it somewhere | |
# else and add that directory to $fpath. This must be done before | |
# compinit is called. If the file is copied to ~/.zsh.d, your ~/.zshrc | |
# file could look like this: |
{ "keys": ["j"], "command": "move", "args": {"by": "lines", "forward": true}, "context": | |
[ {"key": "control", "operand": "sidebar_tree"} ] | |
}, | |
{ "keys": ["k"], "command": "move", "args": {"by": "lines", "forward": false}, "context": | |
[ {"key": "control", "operand": "sidebar_tree"} ] | |
}, | |
{ "keys": ["l"], "command": "move", "args": {"by": "characters", "forward": true}, "context": | |
[ {"key": "control", "operand": "sidebar_tree"} ] | |
}, | |
{ "keys": ["h"], "command": "move", "args": {"by": "characters", "forward": false}, "context": |
$ vagrant -v
Vagrant version 1.1.5
noremap <Up> :<C-u>echohl WarningMsg \| echo "Don't use Up key!!! Press [k]" \| echohl None<CR> | |
noremap! <Up> <ESC>:<C-u>echohl WarningMsg \| echo "Don't use Up key!!! Press [ESC][k]" \| echohl None<CR> | |
noremap <Down> :<C-u>echohl WarningMsg \| echo "Don't use Down key!!! Press [j]" \| echohl None<CR> | |
noremap! <Down> <ESC>:<C-u>echohl WarningMsg \| echo "Don't use Down key!!! Press [ESC][j]" \| echohl None<CR> | |
noremap <Left> :<C-u>echohl WarningMsg \| echo "Don't use Left key!!! Press [l]" \| echohl None<CR> | |
noremap! <Left> <ESC>:<C-u>echohl WarningMsg \| echo "Don't use Left key!!! Press [ESC][l]" \| echohl None<CR> | |
noremap <Right> :<C-u>echohl WarningMsg \| echo "Don't use Right key!!! Press [h]" \| echohl None<CR> | |
noremap! <Right> <ESC>:<C-u>echohl WarningMsg \| echo "Don't use Right key!!! Press [ESC][h]" \| echohl None<CR> | |
noremap <BS> :<C-u>echohl WarningMsg \| echo "Don't use BackSpace key!!! Press [ctrl-h]" \| echohl None<CR> | |
noremap! <BS> <ESC>:<C-u>echohl WarningMsg \| echo "Don't use BackSpace key! |
http://mobz.github.io/elasticsearch-head/
定番 plugin. なんだかんだ言ってこれが一番便利。
~/.zsh/site-functions/_git を作成 | |
$FPATH に~/.zsh/site-functions を追加する | |
$ export FPATH=~/.zsh/site-functions:$FPATH |