Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gargantext-ihaskell
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
gargantext
gargantext-ihaskell
Commits
323a4cd9
Commit
323a4cd9
authored
Sep 22, 2014
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #283
parent
5ebe1573
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
6 deletions
+2
-6
Completion.hs
src/IHaskell/Eval/Completion.hs
+1
-2
IPython.hs
src/IHaskell/IPython.hs
+1
-1
UUID.hs
src/IHaskell/IPython/Message/UUID.hs
+0
-3
No files found.
src/IHaskell/Eval/Completion.hs
View file @
323a4cd9
...
...
@@ -20,7 +20,7 @@ import Data.Char
import
Data.List
(
nub
,
init
,
last
,
head
,
elemIndex
)
import
Data.List.Split
import
Data.List.Split.Internals
import
Data.Maybe
import
Data.Maybe
(
fromJust
)
import
Data.String.Utils
(
strip
,
startswith
,
endswith
,
replace
)
import
qualified
Data.String.Utils
as
StringUtils
import
System.Environment
(
getEnv
)
...
...
@@ -315,4 +315,3 @@ completePathFilter includeFile includeDirectory left right = liftIO $ do
visible
=
filter
(
not
.
isHidden
)
suggestions
hidden
=
filter
isHidden
suggestions
return
$
visible
++
hidden
src/IHaskell/IPython.hs
View file @
323a4cd9
...
...
@@ -49,7 +49,7 @@ ipythonProfile = "haskell"
-- This must be the same as the file in the profile.tar.
-- The filename used is @profileVersionFile@.
profileVersion
::
String
profileVersion
=
"0.
3.0.5
"
profileVersion
=
"0.
4.2.0
"
-- | Filename in the profile where the version ins kept.
profileVersionFile
::
FilePath
...
...
src/IHaskell/IPython/Message/UUID.hs
View file @
323a4cd9
...
...
@@ -12,9 +12,6 @@ import Data.Text (pack)
import
Data.Aeson
import
Data.UUID.V4
(
nextRandom
)
import
Text.Read
as
Read
hiding
(
pfail
,
String
)
-- We use an internal string representation because for the purposes of
-- IPython, it matters whether the letters are uppercase or lowercase and
-- whether the dashes are present in the correct locations. For the
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment