aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2018-02-15Add README and screenshotHEADv1.00masterTeddy Wing
* Describe the plugin * Show an example of what it looks like * Describe configuration * List license
2018-02-15Add `help` commandTeddy Wing
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.
2018-02-15Add header documentation commentTeddy Wing
Describe the plugin and how to use it (by setting `dimpid_nicks`).
2018-02-15Add license (GNU GPLv3+)Teddy Wing
2018-02-14Add setting for list of nicksTeddy Wing
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.
2018-02-14Change colour escape codes to constantsTeddy Wing
Make this more readable by using constants in place of the actual escape codes.
2018-02-14Get rid of theme, use colour escape codes insteadTeddy Wing
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.
2018-02-14Initial commit: Get text to print in a different colorTeddy Wing
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