Skip to content

Commit 8f11068

Browse files
committed
Support `fill-region' and auto filling
We fill only comments and strings. Removes `swift-mode:comment-fill-column' in favor of `comment-fill-column'.
1 parent 0d1ef0e commit 8f11068

File tree

7 files changed

+1271
-351
lines changed

7 files changed

+1271
-351
lines changed

src-autoloads.el

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
(custom-add-load 'languages 'swift-mode))
1616

1717
(defsubst swift-mode:add-supported-extension-for-speedbar nil "\
18-
Register .swfit to speedbar." (if (fboundp (quote speedbar-add-supported-extension)) (speedbar-add-supported-extension ".swift") (add-hook (quote speedbar-load-hook) (lambda nil (speedbar-add-supported-extension ".swift")))))
18+
Register .swift to speedbar." (if (fboundp (quote speedbar-add-supported-extension)) (speedbar-add-supported-extension ".swift") (add-hook (quote speedbar-load-hook) (lambda nil (speedbar-add-supported-extension ".swift")))))
1919

2020
(autoload 'swift-mode "swift-mode" "\
2121
Major mode for editing Swift code.
@@ -36,6 +36,14 @@ Major mode for editing Swift code.
3636

3737
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "swift-mode-beginning-of-defun" '("swift-mode:")))
3838

39+
;;;***
40+
41+
;;;### (autoloads nil "swift-mode-fill" "swift-mode-fill.el" (0 0
42+
;;;;;; 0 0))
43+
;;; Generated autoloads from swift-mode-fill.el
44+
45+
(if (fboundp 'register-definition-prefixes) (register-definition-prefixes "swift-mode-fill" '("swift-mode:")))
46+
3947
;;;***
4048

4149
;;;### (autoloads nil "swift-mode-font-lock" "swift-mode-font-lock.el"

0 commit comments

Comments
 (0)