Discuss your project
Linux Ubuntu 14.04 LTS Ubuntu 18.04 LTS

Disable mouse integration in VIM

To disable the mouse in vim, simply insert the following instruction in `~/.vimrc`: `set mouse-=a` Then reload the parameter file with: `. ~/.vimrc` Precautions before executing the order This tutorial retains the command and the context of its publica...

Disable mouse integration in VIM
To disable the mouse in vim, simply insert the following instruction in `~/.vimrc`: `set mouse-=a` Then reload the parameter file with: `. ~/.vimrc`

Precautions before executing the order

This tutorial retains the command and the context of its publication. Before using it on a current repository, inspect the branch, the modified files, and the exact target:

git status --short
git log --oneline --decorate -5

Create a backup branch or tag when the operation rewrites history or deletes files. In particular, git reset --hard overwrites the changes in the working directory.

Reference: official documentation of git reset.

Share this article