Skip to content

Instantly share code, notes, and snippets.

View zeristor's full-sized avatar
💭
fuelled by spoitify

zeristor zeristor

💭
fuelled by spoitify
View GitHub Profile
@zeristor
zeristor / RecentlyUsedList_Good.cs
Created August 29, 2017 20:06
Good coding standard
public class RecentlyUsedList
{
private List<string> items - new List<string>();
public void Add(string newItem)
{
items.Remove(newItem);
items.Add(newItem);
}
public int Count
{

Sublime Text 2 – Useful Shortcuts (PC)

Loosely ordered with the commands I use most towards the top. Sublime also offer full documentation.

Editing

Ctrl+C copy current line (if no selection)
Ctrl+X cut current line (if no selection)
Ctrl+⇧+K delete line
Ctrl+↩ insert line after