Skip to content

Instantly share code, notes, and snippets.

View ikuwow's full-sized avatar

Ikuo Degawa ikuwow

View GitHub Profile

Macにはcommand(⌘)キーがありますが、MacやLinuxを日常的に触る人間にとってはその⌘キーよりも^キー(ctrlキー)のほうが圧倒的に便利なのです。

これらのctrlキーマジックを利用すればほぼ完全にホームポジションに引きこもれます。

^H (ctrl+H)

deleteキーと同じ。カーソルの左側の一文字を削除する。 押すキーの数は増えるがホームポジションに近く、手首を固定したままで打てるし押し間違いが少なくなる。

^D (ctrl+D)

fn+deleteキーと同じ。カーソルの右側の一文字を削除する。

@ikuwow
ikuwow / gist:8731513
Last active August 29, 2015 13:55 — forked from siwasu17/gist:4434529
コンソールで使えるctrl+J = ReturnをMac全体に適用for KeyRemap4MacBook
<?xml version="1.0"?>
<root>
<list>
<item>
<name>absolute ctrl+j to return</name>
<identifier>remap.absolute_ctrl_j_to_return</identifier>
<autogen>--KeyToKey-- KeyCode::J, ModifierFlag::CONTROL_L, KeyCode::RETURN</autogen>
</item>
</list>
</root>
@ikuwow
ikuwow / bootstrap.php
Created April 6, 2014 09:08
CakePHPのためにPHPUnitを導入する一番簡単な方法 ref: http://qiita.com/ikuwow/items/b53cdaeb0132211ec272
CakePlugin::loadAll();
@ikuwow
ikuwow / .bashrc
Created April 10, 2014 05:30
use 'bye' command on bash
alias bye='exit'
@ikuwow
ikuwow / .bash_profile
Last active August 29, 2015 14:02
MacでRuby環境を整えてchef、knife-soloを実行可能にするまでの手順 ref: http://qiita.com/ikuwow/items/c604f4bff87275f89543
eval "$(rbenv init -)"
@ikuwow
ikuwow / test.php
Last active August 29, 2015 14:03
<?php
// 中略
public function display() {
}
public function index() {
}
var alert = UIAlertView()
alert.title = "title"
alert.message = "message"
alert.addButtonWithTitle("OK")
alert.show()
@ikuwow
ikuwow / Singer.m
Created September 22, 2014 10:55
MacのターミナルでObjective-Cをコンパイルする方法 ref: http://qiita.com/ikuwow/items/5470ffea3bf7403fe0a7
#import <Foundation/NSObject.h>
#import <stdio.h>
(略)
@ikuwow
ikuwow / file0.php
Last active September 21, 2015 05:46
HtmlHelper::linkでのURLフラグメント(#書き)の指定の仕方 ref: http://qiita.com/ikuwow/items/b8408e6fb6b96974f507
<?php
echo $this->Html->link(
"ユーザー詳細",
array(
'controller' => 'users',
'action' => 'detail',
8,
'#'=>'top'
)
);
@ikuwow
ikuwow / file0.txt
Last active February 14, 2018 03:49
XcodeでiOSアプリ開発をする時の.gitignore ref: https://qiita.com/ikuwow/items/4fae81a099bf82f44749
# Xcode (from gitignore.io)
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3