| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Also remove trailing whitespace on a few lines.
|
|
|
|
| |
Avoids an error message. Thanks to @torhve for spotting this.
|
|\
| |
| | |
Add more tags to message lines
|
| |
| |
| |
| |
| | |
set nick_$user for all buffer lines, and set log1 for message lines.
Fixes: #166
|
|\ \
| | |
| | | |
Add author_name to attachment formatting
|
| |/
| |
| |
| |
| |
| |
| | |
This should hopefully make some of the trello and other formatting a
bit better.
Fixes: #145
|
|\ \
| | |
| | | |
Set the user to "--" for new user and new channel messages
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Use the value from the config option weechat.look.prefix_network if no
user is passed in. Thanks to @bendem for the suggestion to use this
rather than a hard coded string.
This also fixes a bug where the server buffer was passed as the
message and the user was set to "New user joined: foo".
|
|\ \ \
| |/ /
|/| | |
Add LICENSE file (MIT)
|
| |/
| |
| |
| | |
Fixes: #170
|
|\ \
| |/
|/| |
new channels have # prepended as they should have
|
|/ |
|
| |
|
|\
| |
| | |
Don't call buffer_set in im_marked if buffer is None
|
| |
| |
| |
| |
| |
| |
| |
| | |
process_im_marked may be called after process_im_close (e.g. when you do
/close in an im window). After process_im_close has run,
channel.channel_buffer is None, which makes the buffer_set fail.
This fixes #138 and #143.
|
|\ \
| | |
| | | |
Return from update_nicklist if no channel_buffer
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| | |
All code paths in this method requires channel_buffer, so we can return
in the start if it is falsy.
This fixes a bug where the here and afk variables were not set, but used
later.
This fixes #150.
|
|\ \
| | |
| | | |
Support adding and removing reactions
|
| | | |
|
| | |
| | |
| | |
| | |
| | | |
No point in having this inside each of the if blocks. It was also used
outside of the if which triggered an error if none if the ifs passed.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
This uses the same syntax as for adding a reaction, except it has -
instead of +. E.g. -:smile:
This is the same syntax as Slacks webinterface uses. It also supports
prefixing with a number to specify the message, in the same way as for
adding a reaction.
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
A reaction can be added to the last message in the channel by writing
+:reaction:
Where reaction is the name of the reaction. This is the same syntax that
Slacks web interface uses.
Additionally, it supports sending a reaction to an earlier message by
prefixing the text with a number. The number is the number of the
message to add a reaction to, counting from the bottom. E.g. 1 is the
last message (same as without a number), 2 is the one before etc.
This fixes #155.
|
|\ \
| | |
| | | |
Make /slack talk and friends work when server_alias is set
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
We need to add the short name as an alias so current_domain_name is
able to figure out which server the current buffer belongs to.
Fixes: #158
|
|\ \ \
| | | |
| | | | |
Implement support for /msg user message
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Before, we would reopen the buffer, even if one existed. We should
just reuse the existing one.
|
| |/ /
| | |
| | |
| | | |
Fixes: #167
|
|\ \ \
| | | |
| | | | |
Pass system default ssl options to websocket.create_connection
|
| |/ /
| | |
| | |
| | |
| | |
| | | |
Thanks to @daurnimator and @trygveaa for patches this is built on.
Fixes: #165
|
|\ \ \
| |_|/
|/| | |
Add config parameter to merge server buffer with weechat core buffer
|
| | | |
|
| |/ |
|
|\ \
| |/
|/| |
Format more fields from attachments
|
| | |
|
|/
|
|
|
|
| |
This makes the formatting of attachments somewhat more verbose and
makes it more similar to the web client. Downside is that it takes
more vertical space.
|
|\
| |
| | |
Change to add ' (edited)' only when rendering
|
| | |
|
|\ \
| | |
| | | |
Fix bug that fail to modify previous message if contain non-ascii characters
|
| |/ |
|
|\ \
| | |
| | | |
Add mpdm channel
|
| |/
| |
| |
| |
| |
| |
| | |
This adds a new channel type for mpdms which formats as
"#first,second,third"
This includes the current user's username, which we may want to exclude.
|
| | |
|
|\ \
| | |
| | | |
Allow dot in nicks
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
The web client doesn't handle nicks on the form <@123ABC|foo.bar>
correctly, they're just treated as text. <@123ABC> is handled
correctly.
Fixes: #119
|
| |/ |
|
|\ \
| | |
| | | |
Rewrite ``unfurl_refs``
|
| | | |
|
| | | |
|
| | | |
|