问题描述
我知道 Steve Yegge 对 交换 Ctrl 和 Caps Lock 的建议 现在有一段时间了,虽然我不使用 Emacs.我刚刚尝试将它们作为实验交换,但我发现很难调整.现在有几个快捷键是我的第二天性,我还没有意识到它们在我使用键盘的方式中是多么根深蒂固.
I've been aware of Steve Yegge's advice to swap Ctrl and Caps Lock for a while now, although I don't use Emacs. I've just tried swapping them over as an experiment and I'm finding it difficult to adjust. There are several shortcuts that are second nature to me now and I hadn't realised quite how ingrained they are in how I use the keyboard.
特别是,我一直使用旧的 Ctrl 键来表示 +(撤消),以及用于剪切、复制 &粘贴操作(+ 、 和 ).尝试从起始位置移动到 + 我不知道应该将哪个手指放在 上,因为两者都感觉很尴尬我的无名指、中指或食指.我会像习惯原来的位置一样习惯这种方式吗?我应该给它时间,还是这种安排不适合 Windows 键盘快捷键.
In particular, I keep going to the old Ctrl key for + (undo), and for cut, copy & paste operations (+ , and ). Experimenting with going from the home position to + I don't know which finger to put on , as it feels awkward with either my ring, middle or index finger. Is this something I'll get used to the same way I've got used to the original position and I should just give it time or is this arrangement not suited to windows keyboard shortcuts.
我很想听听那些成功完成转换的人以及那些尝试过并返回的人的意见,尤其是那些在 windows 上进行转换的人的意见.
I'd be interested to hear from people who have successfully made the transition as well as those who have tried it and move back, but particularly from people who were doing it on windows.
这是否会提高我的打字速度或打字时的舒适度.
Will it lead to any improvement in my typing speed or comfort when typing.
您对手指位置或打字训练有任何提示以加快转换速度.
Do you have any tips for finger positions or typing training to speed up the transition.
推荐答案
我最终接受了 Zach 回答中的建议,但我也让 表现得像 键,如果它是使用 AutoHotKey 脚本在此要点中自己持有和释放的:CapsLockCtrlEscape.ahk
I ended up taking the advice in Zach's answer, but I also made behave as an key if it was held and released on it's own using the AutoHotKey script in this gist: CapsLockCtrlEscape.ahk
我还将 ++ 绑定到 以备不时之需需要它使用这个 AutoHotKey 脚本:
I also bound ++ to for the rare occasions when I might need it using this AutoHotKey script:
#IfWinActive
^+Capslock::Capslock ; make CTRL+SHIFT+Caps-Lock the Caps Lock toggle
return
这篇关于是否值得为不使用 Emacs 的 Windows 用户交换 Ctrl 和 Caps Lock的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!