- Mastering Vim
- Ruslan Osipov
- 341字
- 2021-06-10 18:51:32
Plugin spotlight – EasyMotion
EasyMotion has been in an essential part of my kit since I came across it. It simplifies navigation by allowing you to jump to the desired position with speed and precision. It's available from https://github.com/easymotion/vim-easymotion (see Installing plugins for installation instructions).
After installing it, you can invoke the plugin by hitting the leader key (\) twice, followed by the desired movement key.
Try using it with a word-wise motion by invoking \ \ w (backslash, followed by a backslash, followed by w):

You can see that the beginning of every word on the screen have been replaced with a letter (or two letters, once EasyMotion runs out of English letters from the alphabet). Pressing the letter (or two in order) will instantly transport your cursor to that spot on the screen.
EasyMotion supports the following movement commands by default (all prefixed by double tapping the leader key):
- f, to look for a character to the right and F to look for the character on the left
- t, to move until the character on the right and T until the character on the left
- w, to move by word (and W by WORD)
- b, to move backward by word (and B by WORD)
- e, to move forward to the end of the word (and E for the WORD)
- ge, to move backward to the end of the word (and gE for the WORD)
- k and j to go to the beginning of the line up or down
- n and N for jumping through search results on the page (based on the last / or ? search)
EasyMotion leaves many keys unassigned, leaving it up to the user to build their own set of mappings. You should check :help easymotion to see everything EasyMotion can do.
- 軟件安全技術
- ASP.NET Core:Cloud-ready,Enterprise Web Application Development
- Access 數據庫應用教程
- 數據結構習題精解(C語言實現+微課視頻)
- The Data Visualization Workshop
- 深入RabbitMQ
- 西門子S7-200 SMART PLC編程從入門到實踐
- 編程與類型系統
- Learning Unreal Engine Android Game Development
- Flowable流程引擎實戰
- 鴻蒙OS應用編程實戰
- Java圖像處理:基于OpenCV與JVM
- Qt5 C++ GUI Programming Cookbook
- 數據分析與挖掘算法:Python實戰
- 軟件測試分析與實踐