vim-edit

Open file-like objects for editing in vim.


Install
pip install vim-edit==1.0.1

Documentation

Vim-Edit

Just opening file-like objects in vim.

Install

pip install vim-edit

Usage

Open the file in your vim editor. Changes are saved.

from vim_edit import editor

with open("README.md") as file:
    editor.open(file)