See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| <keymap version="1" name="Visual Studio Code" parent="Visual Studio"> | |
| <action id="$Copy"> | |
| <keyboard-shortcut first-keystroke="meta c" /> | |
| </action> | |
| <action id="$Cut"> | |
| <keyboard-shortcut first-keystroke="meta x" /> | |
| </action> | |
| <action id="$Paste"> | |
| <keyboard-shortcut first-keystroke="meta v" /> | |
| </action> |
An example that shows the difference between creating a JavaScript class and subclass in ES5 and ES6.
| #!/bin/bash | |
| wget "http://www.busybox.net/downloads/binaries/latest/busybox-i486" -O /tmp/busybox | |
| adb push /tmp/busybox /data/data/busybox | |
| adb shell "mount -o remount,rw /system && mv /data/data/busybox /system/bin/busybox && chmod 755 /system/bin/busybox && /system/bin/busybox --install /system/bin" |
| " Set the title of the Terminal to the currently open file | |
| function! SetTerminalTitle() | |
| let titleString = expand('%:t') | |
| if len(titleString) > 0 | |
| let &titlestring = expand('%:t') | |
| " this is the format iTerm2 expects when setting the window title | |
| let args = "\033];".&titlestring."\007" | |
| let cmd = 'silent !echo -e "'.args.'"' | |
| execute cmd | |
| redraw! |
| /* ~/Library/KeyBindings/DefaultKeyBinding.Dict | |
| This file remaps the key bindings of a single user on Mac OS X 10.5 to more | |
| closely match default behavior on Windows systems. This makes the Command key | |
| behave like Windows Control key. To use Control instead of Command, either swap | |
| Control and Command in Apple->System Preferences->Keyboard->Modifier Keys... | |
| or replace @ with ^ in this file. | |
| Here is a rough cheatsheet for syntax. | |
| Key Modifiers |