clojure – 如何在Light Table中设置Vim模式?

前端之家收集整理的这篇文章主要介绍了clojure – 如何在Light Table中设置Vim模式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在Light Table 0.6.0中激活vim模式。文档在编辑器模式中说只是键入“vim”,它会自动完成,但现在不会?我添加到我的用户行为是什么?
  1. {:+ {
  2. ;; The app tag is kind of like global scope. You assign behaviors that affect
  3. ;; all of Light Table here
  4. :app [(:lt.objs.style/set-skin "dark")]
  5.  
  6. ;; The editor tag is applied to all editors
  7. :editor [:lt.objs.editor/no-wrap
  8. (:lt.objs.style/set-theme "default")]
  9.  
  10. ;; Here we can add behaviors to just clojure editors
  11. :editor.clojure [(:lt.objs.langs.clj/print-length 1000)]}
  12.  
  13. ;; You can use the subtract key to remove behavior that may get added by
  14. ;; another diff
  15. :- {:app []}}
有同样的问题,从0.6.0 changelog:

CHANGE: Emacs and Vim are now both plugins to be downloaded via the plugin manager

下载它,重新启动,现在,当您键入vim时,它会自动完成。

猜你在找的Bash相关文章