把 Caps Lock 變成智慧的 Control 以及 Escape :
- 單獨輕按一下就是 Escape 。
- 若按下時同時按著其他鍵,就會是 Control 。
這應該是 Vim 和 Emacs 的最佳解了!(Emacs? Bash 的快捷鍵就是 Emacs 系列的)
- Send Escape if you tap Caps Lock alone.
| <% | |
| FUNCTION URLDecoder(str) | |
| '// This function: | |
| '// - decodes any utf-8 encoded characters into unicode characters eg. (%C3%A5 = å) | |
| '// - replaces any plus sign separators with a space character | |
| '// | |
| '// IMPORTANT: | |
| '// Your webpage must use the UTF-8 character set. Easiest method is to use this META tag: | |
| '// <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| '// |