Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

Match single quotes in code blocks #14

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion Preferences/Typing Pairs: Disable _ for Raw.plist
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
Expand All @@ -14,6 +14,10 @@
<string>"</string>
<string>"</string>
</array>
<array>
<string>'</string>
<string>'</string>
</array>
<array>
<string>(</string>
<string>)</string>
Expand Down
2 changes: 1 addition & 1 deletion Syntaxes/Markdown Redcarpet.tmLanguage
Expand Up @@ -231,7 +231,7 @@
<key>fenced_block_ruby</key>
<dict>
<key>begin</key>
<string>(^|\G)([`]{3})[ ]*ruby$</string>
<string>(^|\G)([`]{3})[ ]*(?:rb|ruby)$</string>
<key>end</key>
<string>(^|\G)([`]{3})($|\z)</string>
<key>name</key>
Expand Down