I'm also fiddling with your theme to enable a block blue cursor instead of the thin vertical cursor. No idea what I'm doing.
I didn't because there's a package in Package Control called Block Cursor. It's themed in the package already, you just have the option to install it or not.
By "themed in the package" I mean there's an entry for it in MarkdownEditing already, it just won't do anything unless Block Cursor is enabled.
Like this?:
"block_cursor_enabled": true,
Sorry, I don't usually mess with themes, but I enamored with yours.
load more (1 remarks)
A couple that I added on top of yours for creating H headers the way I like:
// selection pairing with #
{ "keys": ["#"], "command": "insert_snippet", "args": {"contents": "#${0:$SELECTION}#"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
]
},
// selection pairing with SPACE
{ "keys": ["super+shift+space"], "command": "insert_snippet", "args": {"contents": " ${0:$SELECTION} "}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown", "match_all": true }
]
},
You might want to see if it formats the way you want when line numbers are enabled.