栖息谷-管理人的网上家园

123
返回列表 发新帖
楼主:whitecoat - 

发现的几个Thebrain实用技巧,交流一下

  [复制链接] 25
回复
31298
查看
打印 上一主题 下一主题
21
发表于 2014-2-17 15:41:42 | 只看该作者
牛人 牛贴 收藏了
22
发表于 2014-9-21 20:46:10 | 只看该作者
原来PB6下面的思考,不知道现在PB7/PB8在中文输入到左下角的自动匹配过程中有没有自动匹配的功能了?

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有帐号?加入

x
23
发表于 2014-9-21 23:12:08 | 只看该作者
太棒了,提高了输入效率,不过用英语最好
25
发表于 2016-12-14 09:59:32 | 只看该作者
如何实现打印功能
26
发表于 2018-10-26 20:10:35 | 只看该作者
Timestamp.ahk
使用前,需要预先安装AutoHotKey套件,自定义快捷键:【Alt + T】,可修改。
目的就是把备注的内容,嵌入一个可供搜索的【时间戳】

  1. ;I have a solution on Windows 7 but not tried on mobile or other windows.
  2. ;Install AutoHotKey
  3. ;Make this script
  4. ;save as today.ahk, or whatever you’d like, this is set so that Alt-t inserts the string “20140602”, I happen to like ISO format without hyphens.
  5. ;there are other date formats if you wish.
  6. ;—
  7. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  8. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  9. ; notes: the ! indicates use of Alt key

  10. !t::
  11. ;text := "{#}d-",原来用于WorkFlowy中的时间戳
  12. text := "--"
  13. ;trailer := " "
  14. trailer := ""
  15. SendInput %trailer%%text%%A_YYYY%%A_MM%%A_DD%-%A_Hour%%A_Min%%trailer%
  16. ;Send %text%%A_YYYY%%A_MM%%A_DD%%trailer%
  17. return
  18. ; outputs “20140602 ” with a trailing space, but trailer could be another value
  19. ;—
复制代码

使用高级回帖 (可批量传图、插入视频等)快速回复

您需要登录后才可以回帖 登录 | 加入

本版积分规则   Ctrl + Enter 快速发布  

发帖时请遵守我国法律,网站会将有关你发帖内容、时间以及发帖IP地址等记录保留,只要接到合法请求,即会将信息提供给有关政府机构。
快速回复 返回顶部 返回列表