Mac 键盘流

Mac 键盘流工具技巧合集

Mac系统自带鼠标键.

Mac 键盘流_第1张图片
image.png
Mac 键盘流_第2张图片
image.png

鼠标移动速度设为最大。。

chrome 浏览器扩展

Mac 键盘流_第3张图片
image.png

Mac 查看当前应用快捷键的应用

Mac 键盘流_第4张图片
image.png

其他显示应用快捷键的工具也可以。

Dash切换:

Mac 键盘流_第5张图片
image.png

command + 1:文档导航
command + 2: 所有的snippet(代码块)
command + 3:所有的代码块标签

有时候上面的快捷键没有效果。。。。

查看了Dash的官方网站,这样可以。

Mac 键盘流_第6张图片
image.png
Mac 键盘流_第7张图片
image.png

修改查阅的范围就可以了。
profile keyword triggers (defined by clicking on the loupe icon of the main search field).

以上两个工具 chrom 浏览器时能减少使用鼠标的时间。

Alfred

快速启动应用,找文件,路径
另外剪贴板历史的功能很好用
workflow 功能类似插件,强大

hammerspoon

下载安装spoon 可以实现窗口的位置大小的调整,还能实现多屏幕移动当前窗口。
把鼠标移动当当前激活的应用的中心。
在有光标的情况下,可以实现使用键盘移动光标,在写东西的非常实用。

https://github.com/jiexishede/awesome-hammerspoon/wiki

Fnmate : 使用Fn加 yuiojklh等键 实现鼠标功能
resiezM : 移动窗口和鼠标聚焦应用

参考: 
https://www.jianshu.com/p/3d62c18c0c78

可以设置两个显示器之间来回切光标:


-- Set hyper to ctrl + alt + cmd + shift
local hyper      = {'ctrl', 'cmd'}

-- Move Mouse to center of next Monitor
hs.hotkey.bind(hyper, '`', function()
    local screen = hs.mouse.getCurrentScreen()
    local nextScreen = screen:next()
    local rect = nextScreen:fullFrame()
    local center = hs.geometry.rectMidPoint(rect)
 
    hs.mouse.setAbsolutePosition(center)
end)


将原来的 command control alt shift 四个热键换成了
command + 'control`

Mac 键盘流_第8张图片
image.png

使用command + 'control+ ''就可以实现两个屏幕之间来回切屏幕了。 
我个人吧 Caps lock 同 control 的键位换位置了。

你可能感兴趣的:(Mac 键盘流)