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 ThrottleInfoAttribute : Attribute | |
| { | |
| public int PerMinute { get; set; } | |
| public int PerHour { get; set; } | |
| public int PerDay { get; set; } | |
| } |
| public class ThrottlePlugin : IPlugin | |
| { | |
| /// <param name="redisHost">host name</param> | |
| /// <param name="redisPort">port</param> | |
| /// <param name="redisPassword">password</param> | |
| public ThrottlePlugin(string redisHost, int redisPort, string redisPassword = null) | |
| { | |
| _redisClient = new RedisClient(redisHost, redisPort, redisPassword); | |
| } |
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 |