<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vim-dome-key, branch master</title>
<subtitle>Syntax plugin for the DomeKey mapping language</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/'/>
<entry>
<title>Add README</title>
<updated>2018-11-21T22:15:19+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-21T22:11:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=e69d546c8aba64c24ecde3e61916c9739d0f26ab'/>
<id>e69d546c8aba64c24ecde3e61916c9739d0f26ab</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license (GNU GPLv3+)</title>
<updated>2018-11-21T22:04:14+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-21T22:04:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=42370c6be111860f611288bb7e35ce50f48a8b9e'/>
<id>42370c6be111860f611288bb7e35ce50f48a8b9e</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add :help documentation</title>
<updated>2018-11-21T22:01:48+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-21T22:01:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=1582aa61c23eb1be855c3be88da3fff7e268d835'/>
<id>1582aa61c23eb1be855c3be88da3fff7e268d835</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>syntax/dome_key.vim: Highlight modifiers in special keys</title>
<updated>2018-11-12T18:40:42+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-12T18:40:42+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=cd8f363bb16c21f0ff8002eb2cc5ad43934d8215'/>
<id>cd8f363bb16c21f0ff8002eb2cc5ad43934d8215</id>
<content type='text'>
Modifier keys prefix special key keywords, and can be `D-`, `A-`, `C-`,
`S-`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Modifier keys prefix special key keywords, and can be `D-`, `A-`, `C-`,
`S-`.
</pre>
</div>
</content>
</entry>
<entry>
<title>syntax/dome_key.vim: Remove TODO section</title>
<updated>2018-11-11T18:06:40+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-11T18:06:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=e5a9d9a1876a139c673207e712dfa8d8a6fee1c2'/>
<id>e5a9d9a1876a139c673207e712dfa8d8a6fee1c2</id>
<content type='text'>
These are finished now.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These are finished now.
</pre>
</div>
</content>
</entry>
<entry>
<title>syntax/dome_key.vim: Add highlighting for `\` escapes</title>
<updated>2018-11-11T18:03:01+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-11T18:03:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=e63793fbbfe5466cbbb992aa87614835e765a725'/>
<id>e63793fbbfe5466cbbb992aa87614835e765a725</id>
<content type='text'>
Escapes are:

* `\&lt;` -&gt; literal `&lt;`
* `\\` -&gt; literal `\`

This highlights:

* `\&lt;` -&gt; `\`
* `\\` -&gt; `\\`
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Escapes are:

* `\&lt;` -&gt; literal `&lt;`
* `\\` -&gt; literal `\`

This highlights:

* `\&lt;` -&gt; `\`
* `\\` -&gt; `\\`
</pre>
</div>
</content>
</entry>
<entry>
<title>syntax/dome_key.vim: Escape special keys with `\`</title>
<updated>2018-11-11T17:58:41+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-11T17:56:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=d9d11b162268b384f2c3229f28b2af2f70687753'/>
<id>d9d11b162268b384f2c3229f28b2af2f70687753</id>
<content type='text'>
Make `domeKeyDefinitionTrigger` separate from `domeKeySpecialKey`,
otherwise the escape handling in the `start` of `domeKeySpecialKey`
causes `domeKeyDefinitionTrigger` to stop highlighting.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make `domeKeyDefinitionTrigger` separate from `domeKeySpecialKey`,
otherwise the escape handling in the `start` of `domeKeySpecialKey`
causes `domeKeyDefinitionTrigger` to stop highlighting.
</pre>
</div>
</content>
</entry>
<entry>
<title>syntax/dome_key.vim: Add `mode` definition matcher</title>
<updated>2018-11-11T17:32:44+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-11T17:32:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=dd49b86d20e4cacfb719e6c07ff6e11e375061f6'/>
<id>dd49b86d20e4cacfb719e6c07ff6e11e375061f6</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>syntax/dome_key.vim: Add a section for special key matchers</title>
<updated>2018-11-11T17:28:28+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-11T17:28:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=124a68388b765187991b8e24b1f446ce8d236a40'/>
<id>124a68388b765187991b8e24b1f446ce8d236a40</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>syntax/dome_key.vim: Add `cmd` definition line matcher</title>
<updated>2018-11-11T17:27:43+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-11-11T17:27:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/vim-dome-key/commit/?id=495328671ff9ff73e6c6c1bcdddd0b80ebe92122'/>
<id>495328671ff9ff73e6c6c1bcdddd0b80ebe92122</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
