|
1 |
| -;===--- .dir-locals.el ---------------------------------------------------===; |
2 |
| -; |
3 |
| -; This source file is part of the Swift.org open source project |
4 |
| -; |
5 |
| -; Copyright (c) 2014 - 2016 Apple Inc. and the Swift project authors |
6 |
| -; Licensed under Apache License v2.0 with Runtime Library Exception |
7 |
| -; |
8 |
| -; See http://swift.org/LICENSE.txt for license information |
9 |
| -; See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors |
10 |
| -; |
11 |
| -;===----------------------------------------------------------------------===; |
12 | 1 | ;;; Directory Local Variables
|
13 | 2 | ;;; For more information see (info "(emacs) Directory Variables")
|
14 | 3 |
|
15 | 4 | ((nil
|
16 |
| - (tab-width . 2) |
17 |
| - (fill-column . 80) |
18 |
| - (eval let* ((x (dir-locals-find-file default-directory)) |
19 |
| - (this-directory (if (listp x) (car x) |
20 |
| - (file-name-directory x)))) |
| 5 | + (eval let* |
| 6 | + ((x (dir-locals-find-file default-directory)) |
| 7 | + (this-directory (if (listp x) (car x) (file-name-directory x)))) |
21 | 8 | (unless (featurep 'swift-project-settings)
|
22 |
| - (add-to-list 'load-path (concat this-directory "utils") :append) |
| 9 | + (add-to-list 'load-path |
| 10 | + (concat this-directory "utils") |
| 11 | + :append) |
23 | 12 | (let ((swift-project-directory this-directory))
|
24 |
| - (require 'swift-project-settings))) |
25 |
| - (set (make-local-variable 'swift-project-directory) this-directory)) |
26 |
| - (c-file-style . "swift") |
27 |
| - ) |
| 13 | + (require 'swift-project-settings))) |
| 14 | + (set (make-local-variable 'swift-project-directory) |
| 15 | + this-directory) |
| 16 | + ) |
| 17 | + (tab-width . 2) |
| 18 | + (fill-column . 80) |
| 19 | + (c-file-style . "swift")) |
28 | 20 | (c++-mode
|
29 |
| - (whitespace-style . (face lines indentation:space)) |
30 |
| - (eval . (whitespace-mode))) |
31 |
| - (objc-mode |
32 |
| - (whitespace-style . (face lines indentation:space)) |
33 |
| - (eval . (whitespace-mode))) |
| 21 | + (whitespace-style face lines indentation:space)) |
34 | 22 | (c-mode
|
35 |
| - (whitespace-style . (face lines indentation:space)) |
36 |
| - (eval . (whitespace-mode))) |
| 23 | + (whitespace-style face lines indentation:space)) |
| 24 | + (objc-mode |
| 25 | + (whitespace-style face lines indentation:space)) |
| 26 | + (prog-mode |
| 27 | + (eval add-hook 'prog-mode-hook |
| 28 | + (lambda nil |
| 29 | + (whitespace-mode 1)) |
| 30 | + (not :APPEND) |
| 31 | + :BUFFER-LOCAL)) |
37 | 32 | (swift-mode
|
38 | 33 | (swift-find-executable-fn . swift-project-executable-find)
|
39 | 34 | (swift-syntax-check-fn . swift-project-swift-syntax-check)
|
40 |
| - (whitespace-style . (face lines indentation:space)) |
41 |
| - (eval . (whitespace-mode)) |
| 35 | + (whitespace-style face lines indentation:space) |
42 | 36 | (swift-basic-offset . 2)
|
43 | 37 | (tab-always-indent . t)))
|
44 | 38 |
|
| 39 | + |
| 40 | + |
45 | 41 | ;; Local Variables:
|
46 | 42 | ;; eval: (whitespace-mode -1)
|
47 | 43 | ;; End:
|
0 commit comments