详解pycharm新建文件时头部的模板

 

原文地址:点击打开链接

pycharm新建文件时的头部模板,即默认的:author = ‘$USER’,pycharm下依次“File→settings→Editor→File and Code Template”即可找到界面,如下: 
pycharm模板设置界面

如何对pycharm头部模板进行个人的全新定制呢?

JetBrains的官方帮助文档里说的很详细了,这里画蛇添足赘述一下,努力做到详细精确,傻瓜操作,即copy即用:

pycharm总共支持四种方法来创建模板: 
1. Creating a file template from scratch 
2. Creating a file template from an existing one 
3. Creating a file template from a file 
4. Creating and referencing include templates

1、Creating a file template from scratch

这是最简单常用的一种方法,以Python为例,模板的默认头部为:

__author__ = '$USER'
# '$USER' 为预定义的变量,为你当前登录的计算机用户名

其他的一些可选的预定义变量有:

${PROJECT_NAME} - the name of the current project.
${NAME} - the name of the new file which you specify in the New File dialog box during the file creation.
${USER} - the login name of the current user.
${DATE} - the current system date.
${TIME} - the current system time.
${YEAR} - the current year.
${MONTH} - the current month.
${DAY} - the current day of the month.
${HOUR} - the current hour.
${MINUTE} - the current minute.
${PRODUCT_NAME} - the name of the IDE in which the file will be created.
${MONTH_NAME_SHORT} - the first 3 letters of the month name. Example: Jan, Feb, etc.
${MONTH_NAME_FULL} - full name of a month. Example: January, February, etc.

 

例如,如果你还想加上该文件创建的时间:

__time__   = '${DATE}'

 

当然,也可以组合使用:

__time__   = '${DATE} ${TIME}'

#显示如下:
__author__ = 'oukohou'
__time__ = '2017/3/14 10:46'

 

而如果你觉得预定义的这些太少啦,不能满足你狂拽酷炫的需求,那么,pycharm也支持自定义,格式为:

#set( $GirlFriend = "Jingjing" )
__girlFriend__ = '${GirlFriend}'

显示如下:
__girlFriend__ = 'Jingjing'

 

还可以覆盖预定义变量:

#set($USER = "Handsome")
__author__ = '$USER'

#显示如下:
__author__ = 'Handsome'

 

美元符号本身用’${DS}’,示例:

__dollar__ = '${DS}'

#显示如下:

2、Creating a file template from an existing one

就是copy已存在的头文件模板,示意图如下: 
copyTemplate1

先选中一个要copy的模板,然后点击复制,效果如下:

copyTemplate2

3、Creating a file template from a file

这个是将一个文件保存为模板,示意图如下:

saveFileasTemplate1 
这时再次按照“File→settings→Editor→File and Code Template”打开,就会发现刚刚添加的模板了。

4、Creating and referencing include templates

这里用到了Template选项旁边的include选项:

parseTemplate1

点击“+”号创建,写入内容,然后再返回Template选项通过“parse”来引用,这里依然以python的模板为例:

parseTemplate2

显示如下:

# -*- coding: utf-8 -*-
__author__ = 'Handsome'
__time__ = '2017/3/14 14:28'
__girlFriend__ = 'Jingjing'
__dollar__ = '$'

hello, Jingjing.
# If this runs wrong, don't ask me, I don't know why;
# If this runs right, thank god, and I don't know why.
# Maybe the answer, my friend, is blowing in the wind.
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值