如何在桌面应用程序的 Slack 通道中跳转到历史上的特定日期或最早的消息?

我的具体问题是如何在 Slack 桌面应用程序中实现这一点,但是我不介意通过网络浏览器来实现这一点,最糟糕的情况是通过网络应用程序接口。

我经常想跳到一个频道的开头,然后只是阅读,但这需要永远向上滚动。捷径是什么?我一直希望是这样的/在开始,开玩笑太久了。比如/start/old 或者类似的快捷键,或者 ctrl + shift + home 之类的东西?我不在乎是什么,我只想要它。 那么“/跳最老的”“/跳最新的”和“/跳11/29/2015”怎么样,因为也许我想看看我的生日说了什么?

这听起来像是一个特性请求,但希望这个功能已经存在,我只是缺少它。

更新1

我使用的是最新版本的 Slack v1.2.764位,在 Windows7 Ent Sp 1上。
现在我看到 Home 按钮确实检索了“一些”历史记录,但是只有在您先选择了一条消息的情况下。我先前按 Home 时,我的光标在“ +”输入消息文本框中,在这种情况下什么也没有发生。然而,我仍然不能让它去所有的方式,以一个单一的键击开始。另外,我在参数设置“ Advanced Options”-> 向上、向下、首页和结束键始终滚动邮件中看到了一个模糊的设置,但是我看不出它在什么时候被选中和没有被选中之间有什么区别。

更新2: “归档”路径

我为浏览器找到了一个更快的方法,但是桌面应用没有。

https://{team_name}.slack.com/archives/{channel_name}

上面的“存档”路径显示了一个具有日期选择器“ BROWSEBY DATE”的页面。点击“选择一个日期”,你可以快速滚动回到时间的开始。

也许有一种甚至更快的方法来获得一个特定的日期或通道的开始只使用 URI。此外,如果有人可以在这个“档案”路径上找到文档,请添加一个评论。我不记得我是怎么发现这个的。

Update3: 黑客用于直接链接到通道的开头

看起来 DatePicker 以秒为单位传递纪元时间,所以我发现如果我传递 s00000000000000000000000000000000000000000000000000000000000000000000000000000。如果你缩短到00就可以了,但是由于某些原因不行。瞧!

//{ team _ name } . slack.com/archives/{ channel _ name }/晚上好

103730 次浏览

Slack..version 2.0.0 has jump to date feature. on selecting a particular date, the control goes to that particular date and then we can scroll

Click the settings on the channel, and then "Jump to date ..."

Click the settings on the channel, and then "Jump to date ..."

In the desktop app, to jump to the oldest message one can open View Channel Details tab by clicking the (i) button, then clicking Created by ... text will take one to the first message in the channel

in:cs-498-data-vis after:2020-05-17 before:2020-06-30

You can enter that after clicking the magnifying glass icon.

Breakdown of syntax:

in:

The channel you want to search

after:

After the date in yyyy-mm-dd format

before:

Before the date in yyyy-mm-dd format.

The Slack app recently moved this feature from the "settings", the way to do it now is that you can click on the bubble thing that demarcates the beginning of any day's messages (the thing that sticks near the top of the channel when you're scrolling, that says "Today", "Yesterday", "Sunday, August 15", etc) and there will appear a menu where you can select to jump to the beginning of the channel, or a specific date, or a few other options.

Click on the date that appears before any messages belonging to that day, and then click "The very beginning" under the "Jump to..." sub-menu. You can also click "Jump to a specific date".

Screenshot