Results 89 comments of Andrea

> In my case the channel that has this behavior does not return a timestamp in the parameters. > A good channel: `[2020-09-14 16:54:09] [trace] REQUEST FINISHED. URL: "https://slack.com/api/conversations.mark", PARAMS:...

thanks to look into this @dyroffk, at least we have a patch now! Very grateful for your time

hi @erichlf what a coincidence! I just published a blog about this and I was going to open an issue as well: here the blog https://ag91.github.io/blog/2020/08/14/slack-messages-in-your-org-agenda/ and here the code...

Probably the easiest is to make those headlines SCHEDULED instead of having a simple timestamp and then you can use: `(setq org-agenda-skip-scheduled-if-done t)` as suggested [here](https://stackoverflow.com/questions/8281604/remove-done-tasks-from-agenda-view). Or otherwise you can...

hey @erichlf, I think you can also solve that long message problem with this bit of code: `(s-truncate 127 (plist-get info :message))`. In that way you will have a partial...

Yeah, good point: can you try `(progn (find-file "/Slack.org") (auto-save-mode))` ? That way it is auto saved any time there is a change.

@erichlf yep, you are right! Thanks for pointing out this problem I needed to solve it too. So I am going to update that repo again, but here the solution:...

That is weird. I make sure anytime you are mentioned on slack, the Slack.org file is saved [in this line](https://github.com/ag91/emacs-slack-org-mode-example/blob/master/emacs-slack-org-mode.el#L29). If you revert that buffer you may lose data, I...

Maybe useful to you is the function `(slack-message-copy-link)`, which allows you to get an http link. It seems achievable to form your own slack:// links given the interface. Let me...

hi @mcastorina, your package is amazing! Thanks for your efforts!! Regarding this issue: I think you may easily get away with: `plt.tight_layout()`. Check https://matplotlib.org/stable/tutorials/intermediate/tight_layout_guide.html @dibs439 you can already set that...