Skip to content

Latest commit

 

History

History
24 lines (24 loc) · 934 Bytes

TODO.md

File metadata and controls

24 lines (24 loc) · 934 Bytes
  • 测试并实现 normal, visual, operator-pending 模式下的八种 word motions。要求在 ASCII 文档中与 Vim 原生 word motions 完全兼容,否则视为 bug。
    • nmap w/W
    • xmap w/W
    • omap w/W
    • omap c w/W (omap w/W 的特殊情况)
    • nmap b/B
    • xmap b/B
    • omap b/B
    • nmap e/E
    • xmap e/E
    • omap d e/E (omap e/E 的特殊情况)
    • omap e/E
    • nmap ge/gE
    • xmap ge/gE
    • omap d ge/gE (omap ge/gE 的特殊情况)
    • omap ge/gE
  • Vim . 命令重复上一个 operation
  • Vim 'iskeyword' option
  • 通过 rust-lua (例如 mlua) 接口提供对 neovim 更好的兼容性。
  • 测试并实现 word text object。要求在 ASCII 文档中与 Vim 原生 word text object 完全兼容,否则视为 bug。
    • xmap i w/W
    • omap i w/W
    • xmap a w/W
    • omap a w/W