-
-
Save ph1ee/0fa3d70e1ed41326d91396f0c1d3f3bd to your computer and use it in GitHub Desktop.
Edit file in host Neovim instance from a :terminal buffer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""Edit a file in the host nvim instance.""" | |
import os | |
import sys | |
from neovim import attach | |
args = sys.argv[1:] | |
if not args: | |
print "Usage: {} <filename> ...".format(sys.argv[0]) | |
sys.exit(1) | |
addr = os.environ.get("NVIM_LISTEN_ADDRESS", None) | |
if not addr: | |
os.execvp('nvim', args) | |
nvim = attach("socket", path=addr) | |
def _setup(): | |
nvim.input('<c-\\><c-n>') # exit terminal mode | |
chid = nvim.channel_id | |
nvim.command('augroup EDIT') | |
nvim.command('au BufEnter <buffer> call rpcnotify({0}, "n")'.format(chid)) | |
nvim.command('au BufEnter <buffer> startinsert'.format(chid)) | |
nvim.command('augroup END') | |
nvim.vars['files_to_edit'] = args | |
for x in args: | |
nvim.command('exe "drop ".remove(g:files_to_edit, 0)') | |
def _exit(*args): | |
nvim.vars['files_to_edit'] = None | |
nvim.command('augroup EDIT') | |
nvim.command('au!') | |
nvim.command('augroup END') | |
nvim.session.stop() | |
nvim.session.run(_exit, _exit, _setup) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment