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
| <?php | |
| namespace MyProject; | |
| class Person | |
| { | |
| private $data; | |
| /** | |
| * | |
| * [ |
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
| # http://www.doknowevil.net/2010/10/18/sorry-screen-tmux-is-better-but-here-are-some-screen-lik-hotkeys/ | |
| unbind C-b | |
| set -g prefix C-a | |
| bind-key a send-prefix | |
| # other ^A | |
| unbind ^A | |
| bind ^A last-window |
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
| " ]m -> mmmm (next method) MMMM (prev method) | |
| call submode#enter_with('nextMethod', 'n', '', ']m', ']m') | |
| call submode#leave_with('nextMethod', 'n', '', '<Esc>') | |
| call submode#map('nextMethod', 'n', '', 'm', ']m') | |
| call submode#map('nextMethod', 'n', '', 'M', '[m') | |
| " [m -> mmmm (prev method) MMMM (next method) | |
| call submode#enter_with('prevMethod', 'n', '', '[m', ']m') | |
| call submode#leave_with('prevMethod', 'n', '', '<Esc>') | |
| call submode#map('prevMethod', 'n', '', 'm', '[m') |
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
| <?php | |
| class MyThread extends Thread | |
| { | |
| public function run() | |
| { | |
| sleep(1); | |
| echo "ran\n"; | |
| } | |
| } |
NewerOlder