- Open below directory in Finder with Cmnd + Shift + G
/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/
-
Open
IDETextKeyBindingSet.plist
with a text editor (not Xcode's plist editor). -
Add this in:
/Applications/Xcode.app/Contents/Frameworks/IDEKit.framework/Versions/A/Resources/
Open IDETextKeyBindingSet.plist
with a text editor (not Xcode's plist editor).
Add this in:
I hereby claim:
To claim this, I am signing this object:
git log --oneline --no-merges feature ^master | wc -l |
//////////////////////////////////////////////////////////////////////////////// | |
// Base icon | |
//////////////////////////////////////////////////////////////////////////////// | |
.icon { | |
@include hide-text; | |
display: inline-block; | |
////////////////////////////////////////////////////////////////////////////// | |
// Icon modifiers | |
////////////////////////////////////////////////////////////////////////////// |
#ifndef FancyLog_h | |
#define FancyLog_h | |
#define __FANCY_FILE__ [[NSString stringWithUTF8String:__FILE__] lastPathComponent] | |
#ifndef FancyLog | |
#ifdef DEBUG | |
#define FancyLog(fmt, ...) NSLog((@"%s [%@:%d] - " fmt), __PRETTY_FUNCTION__, __FANCY_FILE__, __LINE__, ##__VA_ARGS__); | |
#else | |
#define FancyLog( s, ... ) |
{ "keys": ["ctrl+h"], "command": "move", "args": {"by": "characters", "forward": false} }, | |
{ "keys": ["ctrl+l"], "command": "move", "args": {"by": "characters", "forward": true} }, | |
{ "keys": ["ctrl+k"], "command": "move", "args": {"by": "lines", "forward": false} }, | |
{ "keys": ["ctrl+j"], "command": "move", "args": {"by": "lines", "forward": true} } |
@import "compass/utilities/sprites"; | |
@import "compass/css3/background-size"; | |
$sprites: sprite-map("sprites/*.png"); /**/ | |
$sprites-retina: sprite-map("sprites-retina/*.png"); /**/ | |
$sprite-url: sprite-url($sprites); | |
$sprite-retina-url: sprite-url($sprites-retina); | |
@mixin sprite-background($name) { |