Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |
| // Go to menue: | |
| // find->find in files | |
| // Switch on reg_ex button | |
| // Find: | |
| ^(.*)$ | |
| // Where: | |
| c:\your_folder\,*.php,*.phtml,*.js,*.inc,*.html, -*/folder_to_exclude/* | |
| // Then click on the find button | |
| // Be careful to not click on Replace!!! |
| """Pexpect is a Python module for spawning child applications and controlling | |
| them automatically. Pexpect can be used for automating interactive applications | |
| such as ssh, ftp, passwd, telnet, etc. It can be used to a automate setup | |
| scripts for duplicating software package installations on different servers. It | |
| can be used for automated software testing. Pexpect is in the spirit of Don | |
| Libes' Expect, but Pexpect is pure Python. Other Expect-like modules for Python | |
| require TCL and Expect or require C extensions to be compiled. Pexpect does not | |
| use C, Expect, or TCL extensions. It should work on any platform that supports | |
| the standard Python pty module. The Pexpect interface focuses on ease of use so | |
| that simple tasks are easy. |
| FILE SPACING: | |
| # double space a file | |
| sed G | |
| # double space a file which already has blank lines in it. Output file | |
| # should contain no more than one blank line between lines of text. | |
| sed '/^$/d;G' |
Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.
| Ctrl+C | copy current line (if no selection) |
| Ctrl+X | cut current line (if no selection) |
| Ctrl+⇧+K | delete line |
| Ctrl+↩ | insert line after |