-
Install coc.nvim as a plugin for Vim
-
Open vim
-
Run the following in Vim
:CocInstall coc-marketplace
- Once install use the code:
# open and read the file in its current state | |
with open('./textfile.md' , 'r') as f: | |
splittext = f.readlines() | |
# loop over the lines of the file and append text to a specific section | |
outfile = [] | |
in_scratch = False | |
line_number = 0 | |
for line in splittext: |
Install coc.nvim as a plugin for Vim
Open vim
Run the following in Vim
:CocInstall coc-marketplace