Skip to content

Commit 62f3f14

Browse files
author
Dave Abrahams
committed
[emacs-support] support use of fci-mode
We used to force whitespace-mode on for everything in the Swift project so people see their 80-column violations. I personally like https://www.emacswiki.org/emacs/FillColumnIndicator better, so I changed things such that I could reverse the decision made by .dir-locals.el: (add-hook 'prog-mode-hook (lambda () (fci-mode t) (whitespace-mode -1)))
1 parent 4c6f7e6 commit 62f3f14

File tree

1 file changed

+26
-30
lines changed

1 file changed

+26
-30
lines changed

.dir-locals.el

+26-30
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,43 @@
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-
;===----------------------------------------------------------------------===;
121
;;; Directory Local Variables
132
;;; For more information see (info "(emacs) Directory Variables")
143

154
((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))))
218
(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)
2312
(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"))
2820
(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))
3422
(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))
3732
(swift-mode
3833
(swift-find-executable-fn . swift-project-executable-find)
3934
(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)
4236
(swift-basic-offset . 2)
4337
(tab-always-indent . t)))
4438

39+
40+
4541
;; Local Variables:
4642
;; eval: (whitespace-mode -1)
4743
;; End:

0 commit comments

Comments
 (0)