https://github.com/ivanov/vim-ipythonから ipython qtconsole と次の IPython を起動する関数をマップしようとしています。
私がしたことは次のとおりです。
map <key> :!ipython qtconsole&:IPython<CR>
vimを押す<key>
とうまく動作しますが、ipython コンソールからのメッセージが vim エディターに表示されるため、コードが表示されません。
だから私は試しました:
nnoremap <silent> <key> :!ipython qtconsole&:IPython<CR>
しかし、何も変わりませんでした。
ipython から表示されるメッセージは次のとおりです。
[IPKernelApp] To connect another client to this kernel, use:
[IPKernelApp] --existing kernel-4812.json
void DBusMenuExporterPrivate::addAction(QAction*, int): Already tracking action "%%!" under id 54
void DBusMenuExporterPrivate::addAction(QAction*, int): Already tracking action "%%capture" under id 56
void DBusMenuExporterPrivate::addAction(QAction*, int): Already tracking action "%%timeit" under id 57
...
何か案が?