Skip to main content

Neovim wrapper project to install as a script

Project description

Wrapper package to install neovim with an executable.

This allows to install neovim with pipx:

pipx install --python=$(which python2) neovim-sh
pipx install --python=$(which python3) neovim-sh

To use in neovim, simply set python host program variables:

function! s:SetPythonHostProg(job_id, data, event)
    if (len(a:data[0]) > 0)
        execute(a:data[0])
    endif
endfunction

" jobstart is only in neovim
if exists("*jobstart")
    let _ = jobstart(['neovim2.sh', '--vim'], {'on_stdout': function('s:SetPythonHostProg')})
    let _ = jobstart(['neovim3.sh', '--vim'], {'on_stdout': function('s:SetPythonHostProg')})
endif

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

neovim-sh-0.1.2.tar.gz (2.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page