If it won't be simple, it simply won't be. [Hire me, source code] by Miki Tebeka, CEO, 353Solutions

Tuesday, March 08, 2016

Super Simple nvim UI

I've been playing with neovim lately, enjoying it and a leaner RC file. nvim comes currently only in terminal mode and I wanted a way to spin a new window for it. Here's a super simple script (I call it e) to start a new xfce4-terminal window with nvim.
#!/usr/bin/env python
"""Run nvim in new terminal window"""
from subprocess import Popen
from sys import argv
cmd = [
'xfce4-terminal',
'-T', 'nvim',
'-e', ' '.join(['nvim'] + argv[1:])
]
Popen(cmd)
view raw e.py hosted with ❤ by GitHub

1 comment:

Damien said...

Hi, nice reading your blog

Blog Archive