##// END OF EJS Templates
refactor to improve cell switching in edit mode...
refactor to improve cell switching in edit mode This code was repeated in both CodeCell and TextCell, both of which are extensions of Cell, so this just unifies the logic in Cell. TextCell had logic here to check if the cell was rendered or not, but I don't believe it is possible to end up triggering such a code path. (Should that be required, I can always just add back these methods to TextCell, performing the .rendered==True check, and calling the Cell prior to this, code mirror at_top would only return true on if the cursor was at the first character of the top line. Now, pressing up arrow on any character on the top line will take you to the cell above. The same applies for the bottom line. Pressing down arrow would only go to the next cell if the cursor was at a location *after* the last character (something that is only possible to achieve in vim mode if the last line is empty, for example). Now, down arrow on any character of the last line will go to the next cell.

File last commit:

r11729:5cc34183
r15754:d60e793e
Show More
forking_hell.rst
33 lines | 1.1 KiB | text/x-rst | RstLexer

Making your own copy (fork) of ipython

You need to do this only once. The instructions here are very similar to the instructions at http://help.github.com/forking/ - please see that page for more detail. We're repeating some of it here just to give the specifics for the ipython_ project, and to suggest some default names.

Set up and configure a github_ account

If you don't have a github_ account, go to the github_ page, and make one.

You then need to configure your account to allow write access - see the Generating SSH keys help on `github help`_.

Create your own forked copy of ipython_

  1. Log into your github_ account.

  2. Go to the ipython_ github home at `ipython github`_.

  3. Click on the fork button:

    forking_button.png

    Now, after a short pause and some 'Hardcore forking action', you should find yourself at the home page for your own forked copy of ipython_.