Commit 90e100a0 authored by Eyal Dechter's avatar Eyal Dechter

Removed ~ from set of delimiters.

parent 1557c863
......@@ -170,7 +170,9 @@ completionTarget code cursor = expandCompletionPiece pieceToComplete
isDelim :: Char -> Int -> Bool
isDelim char idx = char `elem` neverIdent || isSymbol char
where isSymbol' char = isSymbol char && not (char =='~') -- we don't want to
-- delimit on on ~
-- because of paths
splitAlongCursor :: [[(Char, Int)]] -> [[(Char, Int)]]
splitAlongCursor [] = []
splitAlongCursor (x:xs) =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment