如何永远保存ipython别名?

时间:2017-05-27 03:12:47

标签: ipython

我对如何保存ipython别名感到有点困惑,以便每次打开ipython会话(首先保存别名后)并直接使用alias命令(此时,不应再次输入别名)。 例如,当在linux(或windows)中使用ipython时,我会使用vi而不是!vi文件。

vi fileneme

!vi filename

2 个答案:

答案 0 :(得分:2)

在profile_default下的IPython目录中生成默认配置文件ipython_config.py:

$ ipython profile create

在linux / windows

中查找ipython_config.py
#use find command in linux
find / -name ipython_config.py
#in window,you can use all kinds of tools to search .
#in commands line,you can use 
ipython locate profile.
#in the directory,you can get it

编辑ipython_config.py文件以添加同伴内容

c = get_config()
c.TerminalIPythonApp.display_banner = True
c.InteractiveShellApp.log_level = 20
c.InteractiveShellApp.extensions = []
c.InteractiveShellApp.exec_lines = []
c.InteractiveShellApp.exec_files = ['mycode.py']#load Module when open ipython
c.InteractiveShell.autoindent = True
c.InteractiveShell.colors = 'LightBG'#ipython console color
c.InteractiveShell.confirm_exit = False
c.InteractiveShell.editor = 'vim'#you can change your favorite editor
c.InteractiveShell.xmode = 'Context'
c.PrefilterManager.multi_line_specials = True
#you can add your alias in the fellowing list
c.AliasManager.user_aliases = [('vi','vim'),('py','python'),('git','git'),]#i add git ,vim python .i really dislike "!"

保存文件并退出并获取

答案 1 :(得分:0)

thx @ jack yang

1。 emacs ~/.ipython/profile_default/python_config.py

2。最后白白下来 c.AliasManager.user_aliases = [('e', 'emacsclient -t')]

3.exit并重新启动ipython