emacs 安装、配置yasnippet

安装
  1. GOOGLE  地址打不开,只好进GIT :https://github.com/capitaomorte/yasnippet
  2. 看网页中 “installation”部分
配置
  1. 主要使用了“模板输出功能”
  2. 再安装成功后,重启EMACS可以看到YASINPPET 模块
  3. 点击进入,打开“new snippes”
  4. 在name 中加入任意名称做为snippes的名称 lxfun
  5. 在kep中加入缩写 lxf
  6. # -*- mode: snippet; require-final-newline: nil -*-
    # name: lxfun
    # key:lxf
    # --
    
    //函数名称:	无
    //函数说明:	无
    //函数参数:	无
    //函数返回值:	无


  7. 保存到YASINPPET当前 文件 的模式中比如(c-mode)~/.emacs.d/plugins/yasnippet/snippets/c-mode
  8. 重启emacs,输出lxf+TAB可以自动补全

你可能感兴趣的:(emacs,yasnippet)