redirects calls to itself to neovim via nvr. EXE is names Code.exe to trick unity into generating csproj files
gwen 56961aed29 logo | 3 rokov pred | |
---|---|---|
Code | 3 rokov pred | |
.gitignore | 3 rokov pred | |
LICENSE | 3 rokov pred | |
README.md | 3 rokov pred | |
vscode-2-nvim.png | 3 rokov pred |
redirects calls to itself to neovim via nvr. EXE is names Code.exe to trick unity into generating csproj files
First make sure you change the line
public static readonly string ADDRESS = "\\\\.\\pipe\\vscode-to-nvim";
to reflect your pip location
Then set
public static readonly string nvrFile = "C:\\Python39\\Lib\\site-packages\\nvr\\nvr.py";
to reflect wherever pip installed nvr
You should now be able to just run
dotnet build Code
and get an exe in the bin folder
"$(File)" $(Line) $(Column)
if you use code folding I recomend you add these auto commands to your config (vimrc or init.vim)
augroup remember_folds
autocmd!
autocmd BufWinLeave * mkview
autocmd BufWinEnter * silent! loadview
augroup END