コマンド | 説明 |
---|---|
o(enter) | ファイルを開く |
go | ファイルを開き、カーソルがツリーに保持する |
t | タブで開く |
T | タブで開き、移動はしない |
i | 水平分割して開く |
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
"""Library to access del.icio.us data via Python. | |
:examples: | |
Using the API class directly: | |
>>> a = pydelicious.apiNew('user', 'passwd') | |
>>> # or: | |
>>> a = DeliciousAPI('user', 'passwd') | |
>>> a.tags_get() # Same as: |
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
"""Library to access del.icio.us data via Python. | |
:examples: | |
Using the API class directly: | |
>>> a = pydelicious.apiNew('user', 'passwd') | |
>>> # or: | |
>>> a = DeliciousAPI('user', 'passwd') | |
>>> a.tags_get() # Same as: |
ブランチを作成する
git branch branch_name
ブランチを作成して、チェックアウトもする
git checkout -b branch_name
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
// 全コアファイルのインポート用SCSSファイル | |
@import "core/setting"; | |
@import "core/utility"; | |
@import "core/utility-css3"; | |
@import "core/style-mixin-reset"; | |
@import "core/style-mixin-base"; | |
@import "core/style-mixin-layout"; | |
@import "core/style-mixin-module"; |
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
/*! | |
* YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/) | |
* http://cssreset.com | |
* Copyright 2012 Yahoo! Inc. All rights reserved. | |
* http://yuilibrary.com/license/ | |
*/ | |
/* | |
TODO will need to remove settings on HTML since we can't namespace it. | |
TODO with the prefix, should I group by selector or property for weight savings? | |
*/ |
- ideavim
- emmet
tab
でhtmlを展開- 使い方
- preferences > editor > emmet > html > Enable abbreviation previewにチェックするとtabする前にhtmlをプレビューしてくれる
- LiveEdit
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# Use Ubuntu 14.04 Trusty Tahr 64-bit as our operating system | |
config.vm.box = "ubuntu/trusty64" | |
# Configurate the virtual machine to use 2GB of RAM |
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
site "http://community.opscode.com/api/v1" | |
cookbook 'apt' | |
cookbook 'build-essential' | |
cookbook 'mysql', '5.5.3' | |
cookbook 'ruby_build' | |
cookbook 'nodejs' | |
cookbook 'rbenv', git: 'https://github.com/aminin/chef-rbenv' | |
cookbook 'vim' |
OlderNewer