Skip to content

Instantly share code, notes, and snippets.

{
"\UF710" = {
"\U0020" = {
"\U0020" = ("insertText:", "\U00A0"); /* Compose, SPACE, SPACE: NO-BREAK SPACE */
"\U0027" = ("insertText:", "\U0027"); /* Compose, SPACE, APOSTROPHE: APOSTROPHE */
"\U0028" = ("insertText:", "\U02D8"); /* Compose, SPACE, LEFT PARENTHESIS: BREVE */
"\U002C" = ("insertText:", "\U00B8"); /* Compose, SPACE, COMMA: CEDILLA */
"\U002D" = ("insertText:", "\U007E"); /* Compose, SPACE, HYPHEN-MINUS: TILDE */
"\U002E" = ("insertText:", "\U2008"); /* Compose, SPACE, FULL STOP: PUNCTUATION SPACE */
"\U003C" = ("insertText:", "\U02C7"); /* Compose, SPACE, LESS-THAN SIGN: CARON */
# Produce DOCXs from all Markdown files in a directory
# Lincoln Mullen | http://lincolnmullen.com | lincoln@lincolnmullen.com
# Nicolas Jeker
# List files to be made by finding all *.md files and appending .docx
DOCS := $(patsubst %.md,%.docx,$(wildcard *.md))
# The all rule makes all the DOCX files listed
all: $(DOCS)
@mnme
mnme / Default (OSX).sublime-keymap -- User
Last active November 13, 2017 16:37 — forked from Dayjo/Default (OSX).sublime-keymap -- User
Sublime Text 2 and 3: fix for OSX home/end keys, with selection support and command (super) key
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } },
{ "keys": ["super+end"], "command": "move_to", "args": {"to": "eof"} },
{ "keys": ["super+home"], "command": "move_to", "args": {"to": "bof"} },
{ "keys": ["super+shift+end"], "command": "move_to", "args": {"to": "eof", "extend": true} },
{ "keys": ["super+shift+home"], "command": "move_to", "args": {"to": "bof", "extend": true } },