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 |
| public class RecentlyUsedList | |
| { | |
| private List<string> items - new List<string>(); | |
| public void Add(string newItem) | |
| { | |
| items.Remove(newItem); | |
| items.Add(newItem); | |
| } | |
| public int Count | |
| { |
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 |