Skip to content
This repository has been archived by the owner on Mar 4, 2018. It is now read-only.

Commit

Permalink
Add extra split char
Browse files Browse the repository at this point in the history
  • Loading branch information
worksofliam committed Aug 10, 2017
1 parent 4da681c commit 077528a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LanguageTools/Intellisense.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public static ListViewItem[] ParseLine()
int number;
string[] pieces;

pieces = currentPiece.Split(new char[] { ' ', ':', '(', ')', '.' });
pieces = currentPiece.Split(new char[] { ' ', ':', '(', ')', '.', '=' });
if (pieces.Length == 0) return null;

currentPiece = pieces[pieces.Length - 1];
Expand Down

0 comments on commit 077528a

Please sign in to comment.