[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: c++ and c common mode
From: |
Hadron Quark |
Subject: |
Re: c++ and c common mode |
Date: |
Wed, 13 Dec 2006 14:52:31 +0100 |
User-agent: |
Gnus |
Leo <sdl.web@gmail.com> writes:
> * [2006.12.13 03:43 +0100] Hadron Quark wrote:
> ^^^^^^^^^^^^
>> I am duplicating hook additions e.g
>>
>> (add-hook 'c-mode-common-hook 'my-c-init)
>
> I think this line is sufficient.
The one line I *did* have to duplicate was the define-key to add to both
keyboard maps:
,----
| (let ((dl '(
| ([f1] . jump-man-page)
| ([backtab] . semantic-ia-complete-symbol)
| ([f5] . find-tag-noconfirm)
| ([f6] . find-tag-repeat)
| ([f7] . pop-tag-mark)
| ([f2] . gdb-restore-windows)
| ([f10] . compile)
| ([f11] . next-error)
| ([f12] . gdba))))
| (dolist (i dl)
| (define-key c-mode-map (car i) (cdr i))
| (define-key c++-mode-map (car i) (cdr i))
| ))
`----
is there a better way? Some common "subset" for "c like" files?
- c++ and c common mode, Hadron Quark, 2006/12/12
- Re: c++ and c common mode, Leo, 2006/12/12
- Message not available
- Message not available
- Re: c++ and c common mode,
Hadron Quark <=
- Re: c++ and c common mode, Robert Thorpe, 2006/12/13
- Re: c++ and c common mode, Hadron Quark, 2006/12/13
- Re: c++ and c common mode, Robert Thorpe, 2006/12/13
- Re: c++ and c common mode, Hadron Quark, 2006/12/13
- Re: c++ and c common mode, Robert Thorpe, 2006/12/13
- Re: c++ and c common mode, Hadron Quark, 2006/12/14
- Re: c++ and c common mode, David Hansen, 2006/12/13