<Leader>aa- open copilot chat window<c-s>- with copilot window open, request a response from copilot
- Copilot only completing one line - solution is to use a different version of node Github
-
Make sure submodules are checked out after pull:
git submodule init git submodule update
-
Set up coc (https://github.com/neoclide/coc.nvim)
cd .vim/bundle/coc.nvim
yarn
To update already downloaded modules,
git submodule update --remote --merge
or, if that doesn't work:
git submodule foreach git reset --hard HEAD
git submodule foreach git checkout master
git submodule foreach git pull origin master
- :Gitsigns - provides annotations like git blame
- Place cursor over variable
- Press
gdto go to function definition and highlight entire word - Press
cgnand type a new name for the variable - Press
.to repeat the change until all instances are renamed