博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[tech] Emacs cperl-mode auto-insert perl head info
阅读量:5368 次
发布时间:2019-06-15

本文共 917 字,大约阅读时间需要 3 分钟。

(defvar current-date-time-format "%Y-%m-%d %a %H:%M:%S %Z"
  "Format of date to insert with `insert-current-date-time' func
See help of `format-time-string' for possible replacements")
(defun insert-head-info-myname ()
  "insert the author, current date and time into current buffer.
Uses `current-date-time-format' for the formatting the date/time."
       (interactive)
       (insert "#! /usr/bin/env perl\n")
       (insert "use warnings;\nuse strict;\nuse autodie;\n")
       (insert "## Author: ****\n")
       (insert "## Date: ")
       (insert (format-time-string current-date-time-format (current-time)))
       (insert "\n\n")
       )
;;cperl template
(define-auto-insert 'cperl-mode 'insert-head-info-myname)
(add-hook 'find-file-hooks 'auto-insert)

###

emacs 24.2

I am a newbie. : )

-- This paper is original. All rights reserved. Welcome reproduce, please indicate the source and keep this statement! Title: Link:

转载于:https://www.cnblogs.com/Dicor/p/3690231.html

你可能感兴趣的文章
【FZSZ2017暑假提高组Day9】猜数游戏(number)
查看>>
练习10-1 使用递归函数计算1到n之和(10 分
查看>>
Oracle MySQL yaSSL 不明细节缓冲区溢出漏洞2
查看>>
Code Snippet
查看>>
zoj 1232 Adventure of Super Mario
查看>>
组合数学 UVa 11538 Chess Queen
查看>>
Redis常用命令
查看>>
[转载]电脑小绝技
查看>>
thinkphp如何实现伪静态
查看>>
BZOJ 1925: [Sdoi2010]地精部落( dp )
查看>>
Week03-面向对象入门
查看>>
一个控制台程序,模拟机器人对话
查看>>
我的PHP学习之路
查看>>
解决响应式布局下兼容性的问题
查看>>
使用DBCP连接池对连接进行管理
查看>>
【洛谷】【堆+模拟】P2278 操作系统
查看>>
hdu3307 欧拉函数
查看>>
Spring Bean InitializingBean和DisposableBean实例
查看>>
[容斥][dp][快速幂] Jzoj P5862 孤独
查看>>
Java基础之字符串匹配大全
查看>>