First time here? Check out the FAQ!

Ask Your Question
0

Use Vi keys in sage console

asked 8 years ago

this post is marked as community wiki

This post is a wiki. Anyone with karma >750 is welcome to improve it.

I wish to have the sage console use the vi-style editing keys instead of the default emacs ones. I have configured IPython to do this already, but sage does not respect this option. Any help would be appreciated.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 8 years ago

Sage uses its own version of ipython with its own startup files. Those startup files should be under $DOT_SAGE/ipython-X.Y.Z/ ; so for me, the interesting directory is in ~/.sage/ipython-5.0.0/profile_default/ . There was no ipython_config.py file in there, so I copied it from the .ipython directory.

So here is what I did to get vi keybindings to work:

  1. Get vi keybindings to work in ipython by adding the line c.TerminalInteractiveShell.editing_mode = 'vi' to .ipython/profile_default/ipython_config.py
  2. cp -n ~/.ipython/profile_default/ipython_config.py ~/.sage/ipython-5.0.0/profile_default/
Preview: (hide)
link

Comments

If you don't have the ipython_config.py file, you can create it with > ipython profile create [profilename] in the terminal. It will also populate the file with all possible options including vi mode. (And thank you @Eigentime, it solved it for me)

LAV gravatar imageLAV ( 7 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 8 years ago

Seen: 616 times

Last updated: Sep 17 '16