blob: d45d8ade9726bf3c462bdd5568a2434719984476 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
Author: Daniel Baumann <daniel.baumann@progress-linux.org>
Description: Disabling mouse.
diff -Naurp vim.orig/runtime/defaults.vim vim/runtime/defaults.vim
--- vim.orig/runtime/defaults.vim
+++ vim/runtime/defaults.vim
@@ -75,9 +75,9 @@ inoremap <C-U> <C-G>u<C-U>
" In many terminal emulators the mouse works just fine. By enabling it you
" can position the cursor, Visually select and scroll with the mouse.
-if has('mouse')
- set mouse=a
-endif
+"if has('mouse')
+" set mouse=a
+"endif
" Switch syntax highlighting on when the terminal has colors or when using the
" GUI (which always has colors).
|