sublime3 emmet插件 jsx的html内容tab自动补全无效?

发布于 2022-09-02 14:39:23 字数 73 浏览 7 评论 0

我是按照这个配置的https://github.com/sergeche/emmet-sublime#tab-key-handler

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

月野兔 2022-09-09 14:39:24

http://ued.fanxing.com/emmet/
终于解决了,PyV8必须要和Emmet同目录

隔岸观火 2022-09-09 14:39:24

Ctrl + E 可以补全

给我一枪 2022-09-09 14:39:24

set syntax 使用 babel

注定孤独终老 2022-09-09 14:39:24

https://gist.github.com/jerryshew/3659091b82af3aae49df

// add to Preferences > Key Bindings - User
// see http://stackoverflow.com/a/26619524 for context

{ "keys": ["tab"], "command": "expand_abbreviation_by_tab",
  "context": [
    {
      "operand": "source.js", 
      "operator": "equal", 
      "match_all": true, 
      "key": "selector"
    },
    {   
      "key": "selection_empty", 
      "operator": "equal", 
      "operand": true,
      "match_all": true 
    }
  ]
},
{ "keys": ["tab"], "command": "next_field", "context":
  [
    { "key": "has_next_field", "operator": "equal", "operand": true }
  ]
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文