forked from len0rd/rockbox
Created.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3135 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f3313da2da
commit
30cd644288
2 changed files with 65 additions and 0 deletions
55
tools/rockbox-style.el
Normal file
55
tools/rockbox-style.el
Normal file
|
@ -0,0 +1,55 @@
|
|||
;;;; Emacs Lisp help for writing rockbox code. ;;;;
|
||||
;;;; $Id$
|
||||
|
||||
;;; The rockbox hacker's C conventions.
|
||||
|
||||
;;; After loading this file and added the mode-hook you can in C
|
||||
;;; files, put something like this to use the rockbox style
|
||||
;;; automatically:
|
||||
;;
|
||||
;; /* -----------------------------------------------------------------
|
||||
;; * local variables:
|
||||
;; * eval: (set c-file-style "rockbox")
|
||||
;; * end:
|
||||
;; */
|
||||
;;
|
||||
|
||||
(defconst rockbox-c-style
|
||||
'((c-basic-offset . 4)
|
||||
(c-comment-only-line-offset . 0)
|
||||
(c-hanging-braces-alist . ((substatement-open before after)))
|
||||
(c-offsets-alist . ((topmost-intro . 0)
|
||||
(topmost-intro-cont . 0)
|
||||
(substatement . +)
|
||||
(substatement-open . 0)
|
||||
(statement-case-intro . +)
|
||||
(statement-case-open . 0)
|
||||
(case-label . 0)
|
||||
))
|
||||
)
|
||||
"Rockbox C Programming Style")
|
||||
|
||||
;; Customizations for all of c-mode, c++-mode, and objc-mode
|
||||
(defun rockbox-c-mode-common-hook ()
|
||||
"Rockbox C mode hook"
|
||||
;; add rockbox style and set it for the current buffer
|
||||
(c-add-style "rockbox" rockbox-c-style t)
|
||||
(setq tab-width 8
|
||||
indent-tabs-mode nil ; Use spaces. Not tabs.
|
||||
comment-column 40
|
||||
c-font-lock-extra-types (append '("bool"))
|
||||
)
|
||||
;; We like auto-newline and hungry-delete
|
||||
(c-toggle-auto-hungry-state 1)
|
||||
;; keybindings for C, C++, and Objective-C. We can put these in
|
||||
;; c-mode-base-map because of inheritance ...
|
||||
(define-key c-mode-base-map "\C-m" 'newline-and-indent)
|
||||
(define-key c-mode-base-map "\M-q" 'c-fill-paragraph)
|
||||
;; Cleanups
|
||||
(setq c-cleanup-list '(list-close-comma defun-close-semi empty-defun-braces brace-else-brace brace-elseif-brace scope-operator))
|
||||
(setq c-recognize-knr-p nil)
|
||||
)
|
||||
|
||||
;; Set this is in your .emacs if you want to use the c-mode-hook as
|
||||
;; defined here right out of the box.
|
||||
; (add-hook 'c-mode-common-hook 'rockbox-c-mode-common-hook)
|
10
tools/sample.emacs
Normal file
10
tools/sample.emacs
Normal file
|
@ -0,0 +1,10 @@
|
|||
;; $Id$ -*- emacs-lisp -*-
|
||||
|
||||
;; Here's a sample .emacs file that might help you along the way.
|
||||
;; Just copy this region and paste it into your .emacs file. You
|
||||
;; might not want to use this if you already use c-mode-hooks for
|
||||
;; other styles.
|
||||
|
||||
(load-file "<YOUR-PATH-TO-ROCKBOX>/tools/rockbox-style.el")
|
||||
(add-hook 'c-mode-common-hook 'rockbox-c-mode-common-hook)
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue