Skip to content

Instantly share code, notes, and snippets.

View vpayno's full-sized avatar

Victor Payno vpayno

View GitHub Profile
@vpayno
vpayno / vimscript-cheat-sheets-options.md
Created October 22, 2014 06:31
Vimscript Cheat Sheets - Options
@vpayno
vpayno / vimscript-cheat-sheets-functions.md
Created October 21, 2014 20:32
Vimscript Cheat Sheets - Functions
@vpayno
vpayno / vimscript-cheat-sheets-mappings.md
Created October 21, 2014 20:32
Vimscript Cheat Sheets - Mappings
@vpayno
vpayno / vimscript-cheat-sheets-variables.md
Created October 21, 2014 20:32
Vimscript Cheat Sheets - Variables
@vpayno
vpayno / vimscript-cheat-sheets-messages.md
Last active August 29, 2015 14:07
Vimscript Cheat Sheets - Messages
@vpayno
vpayno / vimscript-cheat-sheets-index.md
Last active August 29, 2015 14:07
Vimscript Cheat Sheets - Index

Vimscript Cheat Sheets

by Victor Payno

The goal of these Gists is for me to have a place to look up all things Vimscript. Hopefully they will be useful to other people as well.

Table of Contents

@vpayno
vpayno / haskell-cheat-sheets-recursion.md
Last active December 23, 2020 03:56
Haskell Cheat Sheets - Recursion

By Victor Payno

Recursion

Recursion happens when a function is called within its own definition and has a stop condition (otherwise it would never stop recursing). The stop condition is also referred to as the edge condition.

@vpayno
vpayno / haskell-cheat-sheets-conditionals.md
Last active December 23, 2020 03:56
Haskell Cheat Sheets - Conditionals
@vpayno
vpayno / haskell-cheat-sheets-lists.md
Last active December 23, 2020 03:56
Haskell Cheat Sheets - Lists
@vpayno
vpayno / haskell-cheat-sheets-numbers.md
Created August 10, 2014 02:14
Haskell Cheat Sheets - Numbers