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
9cbee9df
Commit
9cbee9df
authored
Aug 25, 2015
by
Andrew Gibiansky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor updates with JS
parent
a061e229
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
6 deletions
+5
-6
kernel.js
html/kernel.js
+3
-4
ihaskell.cabal
ihaskell.cabal
+1
-1
ipython-kernel.cabal
ipython-kernel/ipython-kernel.cabal
+1
-1
No files found.
html/kernel.js
View file @
9cbee9df
...
...
@@ -22,7 +22,8 @@ define(['require',
var
downArrow
=
40
;
IPython
.
keyboard
.
keycodes
.
down
=
downArrow
;
// space
IPython
.
CodeCell
.
options_default
[
'cm_config'
][
'mode'
]
=
'haskell'
;
IPython
.
CodeCell
.
options_default
[
'cm_config'
][
'mode'
]
=
'ihaskell'
;
IPython
.
CodeCell
.
options_default
[
'cm_config'
][
'autoCloseBrackets'
]
=
'()[]{}'
;
utils
.
requireCodeMirrorMode
(
'haskell'
,
function
(){
// Create a multiplexing mode that uses Haskell highlighting by default but
...
...
@@ -47,14 +48,12 @@ define(['require',
// This is necessary, otherwise sometimes highlighting just doesn't happen.
// This may be an IPython bug.
c
.
code_mirror
.
setOption
(
'mode'
,
'ihaskell'
);
c
.
code_mirror
.
setOption
(
'autoCloseBrackets'
,
'()[]{}'
);
c
.
force_highlight
(
'ihaskell'
);
}
}
});
if
(
IPython
.
notebook
.
set_codemirror_mode
){
// this first one will not be necessary in the future
// neither should the loop on all cells above
IPython
.
notebook
.
set_codemirror_mode
(
'null'
)
IPython
.
notebook
.
set_codemirror_mode
(
'ihaskell'
)
}
...
...
ihaskell.cabal
View file @
9cbee9df
...
...
@@ -7,7 +7,7 @@ name: ihaskell
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.
6.5.0
version: 0.
7.0.1
-- A short (one-line) description of the package.
synopsis: A Haskell backend kernel for the IPython project.
...
...
ipython-kernel/ipython-kernel.cabal
View file @
9cbee9df
name: ipython-kernel
version: 0.7
version: 0.7
.0.0
synopsis: A library for creating kernels for IPython frontends
description: ipython-kernel is a library for communicating with frontends for the interactive IPython framework. It is used extensively in IHaskell, the interactive Haskell environment.
...
...
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