summaryrefslogtreecommitdiff
path: root/indexing/hsindex/src/HsIndex/CharLists/Symbols.hs
blob: 813bacfbde2752be49e4879a3844aa15285012f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
-- |
-- Module      :  HsIndex.CharLists.Symbols
-- Copyright   :  Jean-Luc JOULIN 2018-2019
-- License     :  General Public Licence (GPLv3)
-- Maintainer  :  Jean-Luc JOULIN  <jean-luc-joulin@orange.fr>
-- Stability   :  alpha
-- Portability :  portable
-- The list of symbols for all languages.


module HsIndex.CharLists.Symbols where


-- | Allowed symbols.
allowedSymb = " &~\"'()[]{}<>*+/`^#@°=$£µ%§:;.,?"

-- | Forbidden symbols.
--
-- These symbols
forbiddenSymb =  "!|\n\r" -- "!|{}\n\r"

-- | The hyphens symbols.
lstHyph = "-_"

-- | List of digits.
lstDigit = "0123456789"

lstSpace = " "