Skip to content

Instantly share code, notes, and snippets.

View AlisamfP's full-sized avatar
🪐
ฅ^•ﻌ•^ฅ

Alisa Palson AlisamfP

🪐
ฅ^•ﻌ•^ฅ
View GitHub Profile
@mariapacana
mariapacana / Sublime.md
Last active December 24, 2015 13:59
Sublime shortcuts

Linux

  • Control + Shift + P + rein -- reindent lines
  • Control + D -- select word
  • Control + U -- unselect word
  • Control + O -- open file
  • Control + W -- close tab
  • Control + KK -- delete to the end of line
  • Control + X -- cut entire line (or you can use this to delete)
  • Shift + Alt + (any number) -- split the window into that many panes (1 works, too)
  • Control + Shift + [Group #] -- move file to group
@gigawhitlocks
gigawhitlocks / gist:6607410
Created September 18, 2013 10:39
fizzbuzz
(define fizzbuzz
; this is a default-args wrapper
(lambda ()
(fizzbuzz-iter 1)))
(define fizzbuzz-iter
(lambda (iter)
; the actual meat of fizzbuzz