| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
Add @user-groups with tab-completion. @user-groups will be unfurl into format <!subteam^{ID}|handle> message before sending message via linktext method.
|
| |
|
| |
|
|
|
|
|
| |
Instead of duplicating much of the documentation for commands and
options, refer to the /set and /help commands in weechat.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
If `short_buffer_names` is set, the buffer names doesn't contain slack,
so the bindings that was set didn't work. In order to make the bindings
work for these users by default, bind to all python buffers instead,
because we are not able to differantiate these buffers from other python
buffers.
wee-slack won't overwrite existing bindings so this won't break anyones
setup. Users with these bindings already set will just have to set the
bindings themselves. None of the registered weechat script uses these
bindings, so this is most likely much fewer users than those that have
`short_buffer_names` set.
|
|
|
| |
Fixes #541
|
| |
|
|
|
|
| |
edition
|
|
|
|
|
| |
Show channel names instead of id's, and show them in a more readable
format.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* print `image_url` if it exists
* add test for image_url
* requirements.txt for pytest
* fix requirements.txt
* text before image_url
* this isn’t required
* README readability for development section
thanks @trygveaa
* README reorder for this development section
|
|
|
|
| |
Signed-off-by: Victor "multun" Collod <victor.collod@epita.fr>
|
| |
|
|
|
|
|
|
| |
some distributions do not distribute weechat with support for all
plugins by default, but use separate packages to provide support
for different scripting languages. users should be made aware of that
|
| |
|
| |
|
|
|
|
| |
The refactor is a long time ago now, and caching has been removed.
|
|
|
|
|
| |
In #504 I proposed to add some help to future debuggers. This is a split PR from that.
cc: @trygveaa
|
|\
| |
| | |
Restore OAuth support
|
| | |
|
| | |
|
|\ \
| |/
|/| |
Add completion of custom emojis
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Fix incorrect parameter name for MPDMs: `users` instead of `user_ids`
- Accept comma-separated nicks instead of space-separated to match
weechat's `/query` syntax
- Check user IDs instead of usernames to find channels
- Use `SLACK_API_TRANSLATOR` instead of hard coding API methods
- Update documentation
|
| |
| |
| |
| |
| | |
`command_talk` can now accept multiple arguments, which allows commands
like `/query user1 user2` to open a MPDM with user1 and user2.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
This allows you to send messages starting with / or messages like s/a/b/
and +:test: as normal text messages instead of performing the action
they normally would. This is done by prefixing the message with a slash
(/) or a space ( ), and then the prefix character is removed from the
resulting message.
Allowing / as a prefix, so you can write e.g. //slack is the normal way
to send messages starting with / in weechat. This will work for all
messages starting with a slash, but won't work for e.g. /+:test:, as
that is interpreted as a command. Using space as a prefix is the way
Slack does it. This will work for all messages.
|
| | |
|
| | |
|
|/
|
|
|
|
|
| |
This command has been removed. To mark all channels as read you can now
run `/input set_unread` instead (note that since this isn't a command
specific for wee-slack, it will move the unread markers for all buffers
to the bottom, including buffers not belonging to wee-slack).
|
|
|
|
| |
Fixes: #362
|
|
|
|
|
|
|
|
| |
Similar syntax as for adding reactions:
3s/foo/bar/
Fixes: #153
|
|
|
|
|
|
| |
This option was removed in 925278f, in favor of using weechat's color
handling. I.e. you now set this with weechat's core options instead of a
specific option for this script.
|
| |
|
|\
| |
| | |
Add command for setting Slack Status
|
| | |
|
| | |
|
| | |
|
| | |
|
|/ |
|
|
|
| |
Github changed their markdown parser, and broke a bunch of readmes.
|
|\
| |
| | |
Update token link
|
| |
| |
| | |
The previous page only links to the new style application tokens, which do not work.
|
| | |
|
| | |
|
|/ |
|
| |
|
|
|
|
|
| |
Custom slash commands are handled by doing `/slack slash /foo [args…]`
Fixes: #227
|
| |
|
|\
| |
| | |
Show nicks for each reaction
|