Skip to content

Commit 78dbc58

Browse files
Merge pull request #162 from j-em/fix-autocompletion-in-list
Stop matching [ as part of normal residue.
2 parents 4dc67eb + 979fd82 commit 78dbc58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fsharp-mode-completion.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ If HOST is nil, check process on local system."
485485
(or (regexp ,fsharp-ac--ident)
486486
(regexp ,fsharp-ac--rawIdent))
487487
"."))
488-
(group (zero-or-more (not (any ":.` ,(\t\r\n"))))
488+
(group (zero-or-more (not (any "\[:.` ,(\t\r\n"))))
489489
string-end))
490490
"Regexp for a dotted ident with a standard residue.")
491491

0 commit comments

Comments
 (0)