Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Generate documentation for commands and options | Trygve Aaberge | 2019-01-26 | 1 | -4/+5 |
| | |||||
* | Update readme | Trygve Aaberge | 2019-01-26 | 1 | -122/+33 |
| | | | | | Instead of duplicating much of the documentation for commands and options, refer to the /set and /help commands in weechat. | ||||
* | Clarify usage of mouse and cursor mode | Trygve Aaberge | 2018-11-11 | 1 | -1/+3 |
| | |||||
* | Bind cursor/mouse commands to all python buffers | Trygve Aaberge | 2018-11-11 | 1 | -7/+10 |
| | | | | | | | | | | | | | | 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. | ||||
* | Add linkarchive slack command to create a link to a given message (#650) | Immae | 2018-11-04 | 1 | -1/+11 |
| | | | Fixes #541 | ||||
* | Add open thread command with cursor | Ismaël Bouya | 2018-11-04 | 1 | -0/+2 |
| | |||||
* | Allow selection of a message using mouse or cursor in /reply / reaction / ↵ | Ismaël Bouya | 2018-10-29 | 1 | -0/+18 |
| | | | | edition | ||||
* | Implement showmuted command properly | Trygve Aaberge | 2018-09-04 | 1 | -0/+5 |
| | | | | | Show channel names instead of id's, and show them in a more readable format. | ||||
* | Add mute command to readme | Trygve Aaberge | 2018-09-02 | 1 | -0/+5 |
| | |||||
* | print `image_url` if it exists (#504) | Charlie Allom | 2018-06-08 | 1 | -2/+5 |
| | | | | | | | | | | | | | | | | | | | | * 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 | ||||
* | docs: document team removal | Victor "multun" Collod | 2018-06-07 | 1 | -0/+8 |
| | | | | Signed-off-by: Victor "multun" Collod <victor.collod@epita.fr> | ||||
* | Readme: Python runtime for homebrew based installs | Ramon Poca | 2018-06-07 | 1 | -0/+6 |
| | |||||
* | readme: add hint about split-packaging in distros | Daniel Brendle | 2018-06-07 | 1 | -0/+2 |
| | | | | | | 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 | ||||
* | Handle spaces in tokens correctly instead of shouting at people to avoid them | Tollef Fog Heen | 2018-05-21 | 1 | -1/+1 |
| | |||||
* | Refer to code from URL as such, rather than as a token (which it is not) | Tollef Fog Heen | 2018-05-21 | 1 | -1/+1 |
| | |||||
* | Remove outdated info from readme | Trygve Aaberge | 2018-03-03 | 1 | -12/+6 |
| | | | | The refactor is a long time ago now, and caching has been removed. | ||||
* | debugging help | Charlie Allom | 2018-02-16 | 1 | -0/+9 |
| | | | | | In #504 I proposed to add some help to future debuggers. This is a split PR from that. cc: @trygveaa | ||||
* | Merge pull request #487 from ajdavis/restore-slack-oauth | Trygve Aaberge | 2018-01-28 | 1 | -1/+26 |
|\ | | | | | Restore OAuth support | ||||
| * | Respond to Trygve's comments | A. Jesse Jiryu Davis | 2018-01-27 | 1 | -3/+3 |
| | | |||||
| * | update README for new /slack register command | A. Jesse Jiryu Davis | 2018-01-17 | 1 | -1/+26 |
| | | |||||
* | | Merge pull request #437 from trygveaa/completion-of-custom-emojis | Trygve Aaberge | 2018-01-16 | 1 | -0/+8 |
|\ \ | |/ |/| | Add completion of custom emojis | ||||
| * | Add documentation for emoji completions | Trygve Aaberge | 2017-09-17 | 1 | -0/+8 |
| | | |||||
* | | Refactor command_talk and fix MPDMs not being created | Eric Wang | 2017-11-29 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | - 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 | ||||
* | | Add ability to open multiparty DMs with /query and /slack talk | Eric Wang | 2017-11-29 | 1 | -3/+3 |
| | | | | | | | | | | `command_talk` can now accept multiple arguments, which allows commands like `/query user1 user2` to open a MPDM with user1 and user2. | ||||
* | | Allow sending special messages by prefixing them with a slash or a space | Trygve Aaberge | 2017-11-07 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | Add documentation on changing debug level | Eric Wang | 2017-10-03 | 1 | -1/+2 |
| | | |||||
* | | Update documentation on enabling debug mode | Eric Wang | 2017-10-03 | 1 | -6/+6 |
| | | |||||
* | | docs: Remove mention of setallreadmarkers | Trygve Aaberge | 2017-09-30 | 1 | -5/+0 |
|/ | | | | | | | 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). | ||||
* | Remove /slack join command from README.md | Tollef Fog Heen | 2017-07-28 | 1 | -1/+0 |
| | | | | Fixes: #362 | ||||
* | Add support for editing other messages than just the last one | Tollef Fog Heen | 2017-07-28 | 1 | -0/+5 |
| | | | | | | | | Similar syntax as for adding reactions: 3s/foo/bar/ Fixes: #153 | ||||
* | Remove documentation for colorize_nicks | Trygve Aaberge | 2017-07-12 | 1 | -10/+0 |
| | | | | | | 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. | ||||
* | Correct URL in README | Tollef Fog Heen | 2017-05-02 | 1 | -2/+2 |
| | |||||
* | Merge pull request #347 from V13Axel/status_command | Ryan Huber | 2017-04-18 | 1 | -0/+13 |
|\ | | | | | Add command for setting Slack Status | ||||
| * | Add command for setting Slack Status | V13Axel | 2017-04-13 | 1 | -0/+13 |
| | | |||||
* | | Changes aliases example to have multiple entries. | Alex Nordlund | 2017-04-18 | 1 | -1/+1 |
| | | |||||
* | | Adds key:value to aliases. Closes #337 | Alex Nordlund | 2017-04-18 | 1 | -1/+1 |
| | | |||||
* | | Corrects server_alias -> server_aliases. | Alex Nordlund | 2017-04-18 | 1 | -1/+1 |
| | | |||||
* | | Updates README to give correct instructions for settings. | Alex Nordlund | 2017-04-18 | 1 | -7/+7 |
|/ | |||||
* | Fix readme markdown | Chris DeLuca | 2017-04-13 | 1 | -6/+6 |
| | | | Github changed their markdown parser, and broke a bunch of readmes. | ||||
* | Merge pull request #320 from oschwald/patch-11.0-RC1 | Ryan Huber | 2017-04-13 | 1 | -1/+1 |
|\ | | | | | Update token link | ||||
| * | Update token link | Gregory Oschwald | 2017-03-05 | 1 | -1/+1 |
| | | | | | | The previous page only links to the new style application tokens, which do not work. | ||||
* | | stop claiming to do search, which we still don't | Ryan Huber | 2017-04-12 | 1 | -1/+1 |
| | | |||||
* | | direct link thread info | Ryan Huber | 2017-04-12 | 1 | -1/+3 |
| | | |||||
* | | massssssssive merge of the new codebase | Ryan Huber | 2017-04-12 | 1 | -6/+20 |
|/ | |||||
* | Update docs slightly | Tollef Fog Heen | 2016-11-29 | 1 | -1/+7 |
| | |||||
* | Add support for slash commands | Alex Dills | 2016-10-20 | 1 | -1/+6 |
| | | | | | Custom slash commands are handled by doing `/slack slash /foo [args…]` Fixes: #227 | ||||
* | fix link | Ryan Huber | 2016-08-24 | 1 | -1/+1 |
| | |||||
* | Merge pull request #176 from trygveaa/feature/show-reaction-nicks | Ryan Huber | 2016-06-17 | 1 | -14/+19 |
|\ | | | | | Show nicks for each reaction | ||||
| * | Add documentation for config of show_reaction_nicks | Trygve Aaberge | 2016-04-22 | 1 | -0/+5 |
| | | |||||
| * | Move config options to optional settings in readme | Trygve Aaberge | 2016-04-22 | 1 | -15/+15 |
| | |