Fix header line conflict between tabbar and cedet

Fix header line conflict between tabbar and cedet

Table of Contents

  • 1. Problem Description
  • 2. fix process
  • 3. tabbar install

1 Problem Description

When I open .c/.cpp file, tabbar header line is occupied by cedet semantic

2 fix process

add

(global-semantic-stickyfunc-mode nil)

in the last cfg line of cedet

3 tabbar install

  • M-x package-list-packages
  • C-s tabbar
  • install
  • Cfg
(add-to-list ‘load-path "~/.emacs.d/elpa/tabbar-20141109.143/")
(require ‘tabbar)
(tabbar-mode)

(defun my-tabbar-buffer-groups ()
  "Return the list of group names the current buffer belongs to.
   Return a list of one element based on major mode."
  (list
   (cond
    ((string-equal "*" (substring (buffer-name) 0 1))
     "Emacs Buffer"
     )
    ((eq major-mode ‘dired-mode)
     "Dired"
     )
    (t
     "User Buffer"
     ))))  

(setq tabbar-buffer-groups-function ‘my-tabbar-buffer-groups)
时间: 2024-12-15 02:30:15

Fix header line conflict between tabbar and cedet的相关文章

abap alv multiple header using write

A standard SAP ALV list report will show only one line header, but there will be a requirement someday for you to create a multiple lines header in your ALV list report and in order to do this, you must first set the no_colhead property to "X" i

nginx反向代理proxy_set_header自定义header头无效的问题

###案例1环境nginx,linux,tomcat域名访问是走nginx给后端服务器处理的,问题是域名经过nginx访问直接不能获取到headers,直接tomcat访问可以那么问题肯定在nginx上无法处理headers的问题了, 经过查询上面资料得到是nginx的锅,hearders有下划线的锅,nginx设置underscores_in_headers on,参照上面配置说.就可以处理,测试:http://apistore.baidu.com/astore/toolshttpproxyA

Project configuration is not up-to-date with pom.xml. Run Maven->Update Project or use Quick Fix

完整错误信息: Description Resource Path Location TypeProject configuration is not up-to-date with pom.xml. Run Maven->Update Project or use Quick Fix. xunge-web line 1 Maven Configuration Problem 解决办法: Project configuration is not up-to-date with pom.xml.

解决nginx反向代理proxy不能转发header报头

使用nginx做负载均衡或http代理时,碰到http header不转发的问题. 配置里只有转发设置原始ip和host的 proxy_set_header Host $host;        proxy_set_header X-Real-IP $remote_addr;        proxy_set_header     X-Forwarded-Server $host; 当然我也感觉非常好奇,用了这么久为什么这就这个问题转发不过去,请求的内容也是正确的. 后来我在nginx.conf

Haproxy Configure File

---------------------- HAProxy Configuration Manual ---------------------- version 1.5.11 willy tarreau 2015/02/01 This document covers the configuration language as implemented in the versionspecified above. It does not provide any hint, example or

R Programming week1-Reading Data

Reading Data There are a few principal functions reading data into R. read.table, read.csv, for reading tabular data readLines, for reading lines of a text file source, for reading in R code files (inverse of dump) dget, for reading in R code files (

编写良好的 git 提交信息

编写一个良好的 git 提交信息 提交信息 我们作一次提交,都会提交相关的修改信息,一般这些信息当时都会仔细考虑留下应该留下的那些重要信息,比如为什么需要这次提交,提交解决什么问题等. 而且我们需要好好组织这些信息,一边以后查看,因为这些跟代码一样重要,他们是历史,就像课本一样,一旦留下错误的信息或者难以理解的信息,将会对 后来者,产生非常多的麻烦. 提交信息规范 一般来说,提交信息没有什么强制性的规范,但是希望大家遵循一些基本的规则,这些规则有利于大家正确表达提交内容,留下重要的信息,而忽略那

11111111111111

@model Dw.Entity.PRecordsDetail @{ ViewBag.Title = "病例管理"; Layout = "~/Areas/Hospital/Views/Shared/_UserCenter.cshtml"; } @{ string getid = ""; if ((Html.ViewContext.RouteData.Values["id"]) != null) { getid = Reques

Bootstrap Metronic 学习记录(二)菜单栏

1.简介 1)  .环境配置 2)  .提取页面 2).动态生成菜单(无限级别树) 2.系统环境配置 项目需要程序数据支撑,这里选择MVC5.0+EF6.0[SQLSERVER](不对MVC架构和SQLServer做出解读) 运行环境:VS2013+MVC5.0+EF6.1+SQLServer2012 解决方案名称:AppSolution 项目名称:App.Web(UI层)与App.Models(数据访问层) -直接访问模式 提取theme下的所有文件到MVC的Content,提取admin的i