We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d39908a commit a811c86Copy full SHA for a811c86
swift-mode-font-lock.el
@@ -210,9 +210,10 @@ This function does not search beyond LIMIT."
210
(goto-char pos)
211
(forward-comment (- (point)))
212
(skip-syntax-backward "w_")
213
- (and (< (point) limit)
214
- (looking-at
215
- "\\<\\(func\\|enum\\|struct\\|class\\|protocol\\|extension\\|actor\\)\\>")))
+ (and
+ (< (point) limit)
+ (looking-at
216
+ "\\<\\(func\\|enum\\|struct\\|class\\|protocol\\|extension\\|actor\\)\\>")))
217
218
(defun swift-mode:property-access-pos-p (pos limit)
219
"Return t if POS is just before the property name of a member expression.
0 commit comments