博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
emacs 根据文件名自动加载内容
阅读量:6273 次
发布时间:2019-06-22

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

1

(setq c-new-buffer-template '(  ;       "#include 
\n" ; "#include
\n" ; "\n" ; "int main(void){\n" ; "\n" ; "}\n" ; )) "/*\n" " * =====================================================================================\n" " *\n" " * Filename: test.c\n" " *\n" " * Description:\n" " *\n" " * Version: 1.0\n" " * Created: 07/29/2011 10:37:04 AM\n" " * Revision: none\n" " * Compiler: gcc\n" " *\n" " * Author: kangle.wang (mn), wangkangluo1@gmail.com\n" " * Company: APE-TECH\n" " *\n" " * =====================================================================================\n" " */\n" )) (defun my-c-style () "My editing style for .c files." (c-mode) (if (zerop (buffer-size)) (tempo-template-c-skeleton))) (setq auto-mode-alist (cons '("\\.c\\'" . my-c-style) auto-mode-alist)) (tempo-define-template "c-skeleton" c-new-buffer-template nil "Insert a skeleton for a .c document") (setq js-new-buffer-template '( "/*fuckof\n" )) (defun my-js-style () "My editing style for .c files." (c-mode) (if (zerop (buffer-size)) (tempo-template-c-skeleton))) (setq auto-mode-alist (cons '("\\.js\\'" . my-js-style) auto-mode-alist)) (tempo-define-template "c-skeleton" js-new-buffer-template nil "Insert a skeleton for a .c document")

  

2

转载地址:http://vclpa.baihongyu.com/

你可能感兴趣的文章
matlab练习程序(图像Haar小波变换)
查看>>
【Java】从域名得到ip
查看>>
Mysql索引会失效的几种情况分析
查看>>
LVM逻辑卷
查看>>
zoj3591 Nim(Nim博弈)
查看>>
canvas绘图
查看>>
poj - 3039 Margaritas on the River Walk
查看>>
bootstrap(5)关于导航
查看>>
Aptana插件在eclipse中安装
查看>>
jQuery-数据管理-删除事件
查看>>
下载器简单实例
查看>>
java实现分页工具类(JDBC)
查看>>
欧几里德算法与扩展欧几里德算法
查看>>
Tinkoff Internship Warmup Round 2018 and Codeforces Round #475 (Div. 2)
查看>>
通过kafka提供的命令来查看offset消费情况
查看>>
oracle数据库从入门到精通之四
查看>>
自定义圆形图片控件
查看>>
sharepoint 2013 补丁升级步骤
查看>>
asp.net core 2.0 web api基于JWT自定义策略授权
查看>>
Skype for Business Server 2015-04-前端服务器-3-安装-管理工具
查看>>