vim

vim config files
git clone https://git.bracken.jp/vim.git
Log | Files | Refs | LICENSE

commit c81b16ace19981506e4c690cf1e30e964691b0b8
parent 75878f956ae3baf99e16209b18f47cf4b52df4e0
Author: Chris Bracken <chris@bracken.jp>
Date:   Tue, 24 May 2022 22:43:59 -0700

Disable mouse selection in xterm

This disables visual selection using the mouse in xterm, which is
frustrating when you just want to use the OS copy/paste functions on the
contents of the xterm window, not actually manipulate the vim visual
selection.

Diffstat:
Mvimrc | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/vimrc b/vimrc @@ -41,6 +41,9 @@ map <S-Insert> <MiddleMouse> " Kill ex mode. noremap Q <NOP> +" Disable visual-mode mouse select. +set mouse-=a + " Kill arrow keys, for great justice. noremap <Up> <NOP> noremap <Down> <NOP>