Re: [jupyter] Jupyter Lab and ISO 8601

2018-02-27 Thread Milos Miljkovic
n't alone in using the > moment.js style date/times (GitHub does for everything). > > On Thu, Feb 22, 2018 at 1:41 PM, Milos Miljkovic > <mmiljk...@gmail.com > wrote: > > OK, I will open an issue. OTOH, I haven't seen the behavior you > described > > for the noteb

Re: [jupyter] Jupyter Lab and ISO 8601

2018-02-22 Thread Milos Miljkovic
eve if you hover over the date, there should be a tooltip with the > exact date and time. > -- > M > > On 22 February 2018 at 10:35, Milos Miljkovic <mmiljk...@gmail.com > > wrote: > >> Hiya, >> >> Is there a way in Jupyter Lab to display "

[jupyter] Jupyter Lab and ISO 8601

2018-02-22 Thread Milos Miljkovic
Hiya, Is there a way in Jupyter Lab to display "Last modified" column in Files tab in ISO 8601 format? Current format of "a xyz ago" is utterly useless. If there isn't a way to do this, where should I have a peek for a PR. Cheers, Miloš. -- You received this message because you are

[jupyter] JupyterLab settings

2017-08-25 Thread Milos Miljkovic
Hiya, Currently, JupyterLab has 'Settings' menu, which opens 'Settings' tab with 3 categories: CodeMirror, Keyboard Shortcuts, and Text Editor. CodeMirror settings have entries for theme (JSON-like) and keyMap and theme, while Text Editor has CodeMirror-like entries for autoClosingBrackets,

[jupyter] Re: Auto-close brackets

2017-07-28 Thread Milos Miljkovic
I was being dense. The answer was right in front of me all the time. { "Notebook": { "Header": false }, "CodeCell": { "cm_config": { "lineNumbers": true, "autoCloseBrackets": false } } } On Frida

Re: [jupyter] Re: How to disable auto-quotes and auto-brackets in Jupyter 5.0

2017-07-26 Thread Milos Miljkovic
n answer somewhere, and updated my blog post about setting up > jupyter with it. See the last paragraph: > > > https://datapythonista.blogspot.co.uk/2015/12/jupyter-environment-setup.html?m=1 > > On Jul 25, 2017 18:44, "Milos Miljkovic" <mmiljk...@gmail.com > &

[jupyter] Re: How to disable auto-quotes and auto-brackets in Jupyter 5.0

2017-07-25 Thread Milos Miljkovic
Yeah, good luck with getting an answer. I asked the same question back in April and got 0 response. A lot of dumbing-down has happened in v.5 and I reverted back to v.4.4. Cheers, Milos. On Tuesday, June 13, 2017 at 8:27:37 AM UTC-4, Marc Garcia wrote: > > I upgraded Jupyter to the latest

[jupyter] Auto-close brackets

2017-04-14 Thread Milos Miljkovic
Hiya, By default CodeMirror sets closing of ()[]{}''"" to auto. I thought that the new way of defining CodeMirror config options is to put them in $HOME/.jupyter/nbconfig/notebook.json, like this: { "Notebook": { "Header": false, "Toolbar": false }, "Cell": { "cm_config": {

Re: [jupyter] Custom action for showing/hiding/toggling menu bar

2017-04-06 Thread Milos Miljkovic
PM UTC-4, Matthias Bussonnier wrote: > > That should work, you can even use $(...).toggle() to simplify the logic > :-) PR welcomed. > -- > M > > On Apr 5, 2017 14:39, "Milos Miljkovic" <mmiljk...@gmail.com > > wrote: > >> Hi, >> >> I

Re: [jupyter] Custom action for showing/hiding/toggling menu bar

2017-04-06 Thread Milos Miljkovic
; On 5 April 2017 at 22:39, Milos Miljkovic <mmiljk...@gmail.com > > wrote: > >> Hi, >> >> If I wanted to add a custom notebook action for showing/hiding/toggling >> menu bar, would including the code below >> into /notebook/static/notebook/js/actions.js

[jupyter] Custom action for showing/hiding/toggling menu bar

2017-04-05 Thread Milos Miljkovic
Hi, If I wanted to add a custom notebook action for showing/hiding/toggling menu bar, would including the code below into /notebook/static/notebook/js/actions.js work and correctly add entry to /.jupyter/nbconfig/notebook.json if a custom keyboard shortcut was created? 'toggle-menubar':{

Re: [jupyter] Cell lines of code not displayed pass certain line number

2017-02-04 Thread Milos Miljkovic
t; On Fri, Feb 3, 2017 at 9:03 AM, Milos Miljkovic <mmiljk...@gmail.com > > wrote: > > Hello, > > > > For a while I've been seeing this weird behavior on opening a notebook. > If > > cell has less than 11 lines of code, it is displayed properly. If cell &

[jupyter] Re: Python3.6

2016-12-29 Thread Milos Miljkovic
16.04 > and the problem persists in Firefox and Chrome. > > On Wednesday, December 28, 2016 at 7:44:38 AM UTC-5, Milos Miljkovic wrote: >> >> In conda Py 3.6 install, syntax highlighting seems to be in order. >> >> On Sunday, December 25, 2016 at 10:13:55 AM UTC-5, Damon Allen wr

[jupyter] Re: Python3.6

2016-12-28 Thread Milos Miljkovic
In conda Py 3.6 install, syntax highlighting seems to be in order. On Sunday, December 25, 2016 at 10:13:55 AM UTC-5, Damon Allen wrote: > > I've installed a Python3.6 kernel and am the notebook is having trouble > with the new f string formatting. The code runs correctly but the >

[jupyter] Re: Customizing keyboard shortcuts in Jupyter notebook

2016-09-06 Thread Milos Miljkovic
Turns out you can still define custom keyboard shortcuts in ~/.jupyter/custom/custom.js file, but loading the file is currently broken in notebook v.4.2.2 and fix is coming in v.4.2.3 https://github.com/jupyter/notebook/issues/1730 On Tuesday, August 30, 2016 at 4:07:23 PM UTC-4, Milos