动态模板文件在pycharm模板文件夹中不存在?

问题描述 投票:1回答:2

我想插入多个实时模板。例如,每当我键入prop并按tab时,pycharm就会为python编写full属性。

我想导入以下列表:https://github.com/hoffmann/PyCharm-Python-Templates

但是我无法在<your home directory>\.<product name><version number>\config\templates中找到模板文件夹,如https://www.jetbrains.com/help/pycharm/2016.1/live-templates.html中所述

我也在使用社区版2016.1.4。

python templates pycharm live-templates
2个回答
0
投票

[当我使用路径<your home directory>\.PyCharm2018.3\config\jba_config\templates\user.xml时,它在Windows上可以工作(我的PyCharm版本是2018.3.4)

如果这对您不起作用,则可以按照我的操作找到文件的位置。

  • 在PyCharm中打开File | Settings | Editor | Live Templates,创建了一个名为MyNewUniqueLiveTemplate的新模板
  • 在命令行上,在目录<user directory>\.PyCharm2018.3\config上为字符串MyNewUniqueLiveTemplate“ grep”。

0
投票

我遇到了同样的问题,发现有一种插入多个实时模板的最简单方法。

  • 只需从* .XML文件复制所需的模板代码,
  • 打开PyCharm的实时模板设置(Ctrl+Alt+S -> Editor / Live Templates)
  • 选择模板组(例如Python或创建自己的模板,例如'user'),
  • 并粘贴值。仅此而已!

无论操作系统,PyCharm版本如何,它都可以正常运行,您不必担心PyCharm配置文件的位置。

您可以通过这种方式一次插入多个实时模板。

© www.soinside.com 2019 - 2024. All rights reserved.