<feed xmlns='http://www.w3.org/2005/Atom'>
<title>irssi-dimpid, branch master</title>
<subtitle>Dim a list of nicks by making their message colour grey</subtitle>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/'/>
<entry>
<title>Add README and screenshot</title>
<updated>2018-02-15T00:18:55+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-02-15T00:18:55+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/commit/?id=c510b48d94a27f99d93de5bba3a01c080bb0e0b3'/>
<id>c510b48d94a27f99d93de5bba3a01c080bb0e0b3</id>
<content type='text'>
* Describe the plugin
* Show an example of what it looks like
* Describe configuration
* List license
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* Describe the plugin
* Show an example of what it looks like
* Describe configuration
* List license
</pre>
</div>
</content>
</entry>
<entry>
<title>Add `help` command</title>
<updated>2018-02-14T23:51:17+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-02-14T23:50:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/commit/?id=6afd74fb5199c946c3e56e21433df12cc13445c0'/>
<id>6afd74fb5199c946c3e56e21433df12cc13445c0</id>
<content type='text'>
Provide a command to print the documentation via Irssi's built-in `help`
command.

Uses the mechanism I used in Vimput to get autocompletion of "dimpid"
even though it isn't a command.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Provide a command to print the documentation via Irssi's built-in `help`
command.

Uses the mechanism I used in Vimput to get autocompletion of "dimpid"
even though it isn't a command.
</pre>
</div>
</content>
</entry>
<entry>
<title>Add header documentation comment</title>
<updated>2018-02-14T23:45:03+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-02-14T23:28:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/commit/?id=1c89f65861cd8366770b9ac2804852fbc4b9f346'/>
<id>1c89f65861cd8366770b9ac2804852fbc4b9f346</id>
<content type='text'>
Describe the plugin and how to use it (by setting `dimpid_nicks`).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Describe the plugin and how to use it (by setting `dimpid_nicks`).
</pre>
</div>
</content>
</entry>
<entry>
<title>Add license (GNU GPLv3+)</title>
<updated>2018-02-14T23:27:39+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-02-14T23:27:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/commit/?id=ba6d179bc02538b476291b547cbc567d42371d68'/>
<id>ba6d179bc02538b476291b547cbc567d42371d68</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add setting for list of nicks</title>
<updated>2018-02-14T21:27:50+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-02-14T21:27:50+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/commit/?id=a249f48a82e1a16d674582598fc458a77992a7cf'/>
<id>a249f48a82e1a16d674582598fc458a77992a7cf</id>
<content type='text'>
Instead of using a hard-coded nick, add a setting where any number of
nicks can be defined. The message text for these nicks will be changed
to grey.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Instead of using a hard-coded nick, add a setting where any number of
nicks can be defined. The message text for these nicks will be changed
to grey.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change colour escape codes to constants</title>
<updated>2018-02-14T21:13:07+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-02-14T21:13:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/commit/?id=74e886839e669b29b540113a3ace6ea779acbda3'/>
<id>74e886839e669b29b540113a3ace6ea779acbda3</id>
<content type='text'>
Make this more readable by using constants in place of the actual escape
codes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Make this more readable by using constants in place of the actual escape
codes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Get rid of theme, use colour escape codes instead</title>
<updated>2018-02-14T21:06:57+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-02-14T21:06:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/commit/?id=b8f971b65d1e3abc7a5734844f94367dfec3e67d'/>
<id>b8f971b65d1e3abc7a5734844f94367dfec3e67d</id>
<content type='text'>
After doing some research it seemed like it was going to be way too
complicated to do this with a theme.

I was able to print the message, but would need to include the whole
rest of the line, including timestamp, nick, etc. in order to make the
line look like it was a normal message. Too much work for not enough
gain. That's not to say it isn't possible. Here's the one script I found
that appeared to be doing this:
https://github.com/irssi/scripts.irssi.org/blob/d62bb05a34ffd6d8d0f719c551d8e454880ef8e1/scripts/nm2.pl

Crazy talented stuff.

Since we really just want to turn the message text grey, use a simple
`signal_continue` and colourise the text with escape codes.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
After doing some research it seemed like it was going to be way too
complicated to do this with a theme.

I was able to print the message, but would need to include the whole
rest of the line, including timestamp, nick, etc. in order to make the
line look like it was a normal message. Too much work for not enough
gain. That's not to say it isn't possible. Here's the one script I found
that appeared to be doing this:
https://github.com/irssi/scripts.irssi.org/blob/d62bb05a34ffd6d8d0f719c551d8e454880ef8e1/scripts/nm2.pl

Crazy talented stuff.

Since we really just want to turn the message text grey, use a simple
`signal_continue` and colourise the text with escape codes.
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial commit: Get text to print in a different color</title>
<updated>2018-02-14T20:55:47+00:00</updated>
<author>
<name>Teddy Wing</name>
</author>
<published>2018-02-14T20:17:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.teddywing.com/irssi-dimpid/commit/?id=bf7216f3e55c357d1428f74a19fb34635452842c'/>
<id>bf7216f3e55c357d1428f74a19fb34635452842c</id>
<content type='text'>
Add a signal for public messages and if the message comes from a certain
nick, print the message with special formatting. Currently the format
turns the message background to magenta.

Discovered custom themes from:
https://github.com/irssi/scripts.irssi.org/blob/master/scripts/ignorsula.pl
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add a signal for public messages and if the message comes from a certain
nick, print the message with special formatting. Currently the format
turns the message background to magenta.

Discovered custom themes from:
https://github.com/irssi/scripts.irssi.org/blob/master/scripts/ignorsula.pl
</pre>
</div>
</content>
</entry>
</feed>
