This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"\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 */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Produce DOCXs from all Markdown files in a directory | |
# Lincoln Mullen | http://lincolnmullen.com | [email protected] | |
# 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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ "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 } }, |