博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
emacs之配置symbol浏览界面
阅读量:6709 次
发布时间:2019-06-25

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

由于ecb的method-buffer不能更新,因此抛弃ecb,speedbar的method也不能更新,换imenu-tree

使用el-get install安装imenu-tree

 

imenu-tree默认出现是在左边,这样和sr-speedbar重叠,很难看,因此作了个小修改

修改下载回来的imenu-tree.el,搜索imenu-tree-windata,修改

(defcustom imenu-tree-windata'(frame left 0.3 delete)

(defcustom imenu-tree-windata'(frame right 0.45 delete)

 

 

~/emacsConfig/imenu-tree-setting.el

(require 'imenu-tree)(setq imenu-tree-auto-update t)(global-set-key (kbd "
") 'imenu-tree)

 

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

你可能感兴趣的文章
我为什么从Redux迁移到了Mobx
查看>>
解读生产环境为何避免使用console.log
查看>>
高性能MySQL读书笔记 (一)
查看>>
传统Http服务与SpringCloud微服务的整合
查看>>
Anaconda使用总结
查看>>
浅析HTTP/2的多路复用
查看>>
leetcode 530. Minimum Absolute Difference in BST | inorder
查看>>
Lodash 源码分析(三)Array
查看>>
ZooKeeper安装部署
查看>>
从Vue.js源码角度再看数据绑定
查看>>
linux cgroup代码学习(2)——数据结构整理
查看>>
postcss-lazysprite: 一种生成CSS 雪碧图的懒惰姿势
查看>>
SpreadJS 在 Angular2 中支持哪些事件?
查看>>
[LeetCode] Shortest Distance from All Buildings
查看>>
spring-boot 自定义解析器实现参数绑定
查看>>
SegmentFault 官方翻译功能上线
查看>>
Node.js和Socket.IO搭建Web Chat application
查看>>
Java入门姿势
查看>>
Android官方技术文档翻译——ApplicationId 与 PackageName
查看>>
把JavaScript文件放在文档的头部还是尾部
查看>>