<feed xmlns='http://www.w3.org/2005/Atom'>
<title>evil-collection.git/modes/magit/evil-collection-magit.el, branch 0.0.6</title>
<subtitle>Unnamed repository; edit this file 'description' to name the repository.
</subtitle>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/'/>
<entry>
<title>magit: properly bind escape key</title>
<updated>2021-07-07T18:27:39+00:00</updated>
<author>
<name>condy</name>
<email>condy0919@gmail.com</email>
</author>
<published>2021-07-07T18:27:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=d97e0ff4afa67bd19443245d4f663de29b043a6b'/>
<id>d97e0ff4afa67bd19443245d4f663de29b043a6b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Properly bind escape in magit-mode-map</title>
<updated>2021-06-28T10:26:48+00:00</updated>
<author>
<name>Nicholas Vollmer</name>
<email>iarchivedmywholelife@gmail.com</email>
</author>
<published>2021-06-28T01:39:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=6c97b0c18678fdb1d6370c30324bc8df9a8fb1e1'/>
<id>6c97b0c18678fdb1d6370c30324bc8df9a8fb1e1</id>
<content type='text'>
Without using `kbd', each key in the string "&lt;escape&gt;" is interpreted as a
prefix key.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Without using `kbd', each key in the string "&lt;escape&gt;" is interpreted as a
prefix key.
</pre>
</div>
</content>
</entry>
<entry>
<title>magit: interpret evil-toggle-key in the right way</title>
<updated>2021-06-25T19:29:08+00:00</updated>
<author>
<name>condy</name>
<email>condy0919@gmail.com</email>
</author>
<published>2021-06-25T19:29:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=c7f85d330bfb64758659563f6e38c011f36036d4'/>
<id>c7f85d330bfb64758659563f6e38c011f36036d4</id>
<content type='text'>
fix #492
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
fix #492
</pre>
</div>
</content>
</entry>
<entry>
<title>Docstring: evil-collection-magit-use-y-for-yank</title>
<updated>2021-05-07T17:41:05+00:00</updated>
<author>
<name>duianto</name>
<email>otnaiud@gmail.com</email>
</author>
<published>2021-05-07T10:40:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=23c60d576cf2ca4e931ca43815ceccc3f98acec1'/>
<id>23c60d576cf2ca4e931ca43815ceccc3f98acec1</id>
<content type='text'>
`magit-show-refs-popup` and `magit-dispatch-popup`
have been renamed without "-popup".

Define magit-show-refs as a transient command
https://github.com/magit/magit/commit/c3135cdb23e223ebf8f3c802616ebb81103fdbe9

Define magit-dispatch as a transient command
https://github.com/magit/magit/commit/dde9a5b77a483fa35d932aecd22c1a4c954ce77e

And make the docstring more readable,
with the related key and command on the same line.</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`magit-show-refs-popup` and `magit-dispatch-popup`
have been renamed without "-popup".

Define magit-show-refs as a transient command
https://github.com/magit/magit/commit/c3135cdb23e223ebf8f3c802616ebb81103fdbe9

Define magit-dispatch as a transient command
https://github.com/magit/magit/commit/dde9a5b77a483fa35d932aecd22c1a4c954ce77e

And make the docstring more readable,
with the related key and command on the same line.</pre>
</div>
</content>
</entry>
<entry>
<title>Magit: Properly format rebase instructions when commentChar is "%"</title>
<updated>2021-04-24T23:26:15+00:00</updated>
<author>
<name>Andrew Psaltis</name>
<email>apsaltis@vmware.com</email>
</author>
<published>2021-04-10T16:03:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=09b165d4c2ecac66224f674966c920c25d20f3f6'/>
<id>09b165d4c2ecac66224f674966c920c25d20f3f6</id>
<content type='text'>
This change adjusts the formatting of the instructions in the `git-rebase`
buffer to allow them to be properly formatted when git's `core.commentChar` is
set to `%`.  In particular, lines will look something like this:

```
%-8s p
```

The root cause seems to be the how the lines are constructed: comment characters
are directly added to the format string.  When it is `%`, `format` appears to
proceed until it finds the next `%` character, (corresponding to the `%` in
`%-8s`) above and prints it directly to the string rather than interpreting it
something to format.

This is fixed by constructing the format string with the comment character as an
argument to `format` rather than being added directly to the format string.

Fixes #468.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This change adjusts the formatting of the instructions in the `git-rebase`
buffer to allow them to be properly formatted when git's `core.commentChar` is
set to `%`.  In particular, lines will look something like this:

```
%-8s p
```

The root cause seems to be the how the lines are constructed: comment characters
are directly added to the format string.  When it is `%`, `format` appears to
proceed until it finds the next `%` character, (corresponding to the `%` in
`%-8s`) above and prints it directly to the string rather than interpreting it
something to format.

This is fixed by constructing the format string with the comment character as an
argument to `format` rather than being added directly to the format string.

Fixes #468.
</pre>
</div>
</content>
</entry>
<entry>
<title>Magit: Keep bindings consistent with prefix key in magit-revert</title>
<updated>2021-04-14T06:35:26+00:00</updated>
<author>
<name>Kira Bruneau</name>
<email>kira.bruneau@pm.me</email>
</author>
<published>2021-04-14T00:53:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=65766ad8c0690278f1ce97fa68055e0d4d1531f4'/>
<id>65766ad8c0690278f1ce97fa68055e0d4d1531f4</id>
<content type='text'>
"O" is used to launch `magit-reset`, not `magit-revert`. "_" and "-"
should be used for the suffix commands to be consistent with the
prefix key "_".
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
"O" is used to launch `magit-reset`, not `magit-revert`. "_" and "-"
should be used for the suffix commands to be consistent with the
prefix key "_".
</pre>
</div>
</content>
</entry>
<entry>
<title>Magit: Rely on popup backup when reverting popups (#446)</title>
<updated>2021-01-30T08:33:41+00:00</updated>
<author>
<name>James Nguyen</name>
<email>james@jojojames.com</email>
</author>
<published>2021-01-30T08:33:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=e6824e2ad2f2ee7ddccf6f54db655a4cd37a13dc'/>
<id>e6824e2ad2f2ee7ddccf6f54db655a4cd37a13dc</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Magit: Add submodule prefix back in after forge loads (#446)</title>
<updated>2021-01-30T08:33:41+00:00</updated>
<author>
<name>James Nguyen</name>
<email>james@jojojames.com</email>
</author>
<published>2021-01-30T08:31:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=2bbaa52d22f802615f8193b63ed15be8417815c1'/>
<id>2bbaa52d22f802615f8193b63ed15be8417815c1</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Magit: Declare more variables (#449)</title>
<updated>2021-01-24T19:12:29+00:00</updated>
<author>
<name>James Nguyen</name>
<email>james@jojojames.com</email>
</author>
<published>2021-01-24T19:12:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=bd44a32e83f0ad8d08975691a52e9525bfe0ff0a'/>
<id>bd44a32e83f0ad8d08975691a52e9525bfe0ff0a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>magit: (visual) set "y" to magit-copy-section-value</title>
<updated>2021-01-24T08:17:49+00:00</updated>
<author>
<name>Benjamin Motz</name>
<email>benjamin.motz@mailbox.org</email>
</author>
<published>2020-12-11T18:31:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.tews.dev/cgit/evil-collection.git/commit/?id=ef90687fe41ad1217786071bebfa4068e09ac779'/>
<id>ef90687fe41ad1217786071bebfa4068e09ac779</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
