vim: Remove cursor shapes

Not every terminal emulator supports cursor shapes. Fixes #641.
This commit is contained in:
Fredrik Fornwall
2017-01-01 18:14:25 -05:00
parent 36d8dc9633
commit a9cd51d257
4 changed files with 2 additions and 12 deletions

View File

@@ -12,11 +12,6 @@ set title
syntax on
" Set beam shape in insert mode, underline shape in replace mode and block shape in normal mode.
let &t_SI = "\<Esc>[6 q"
let &t_SR = "\<Esc>[4 q"
let &t_EI = "\<Esc>[2 q"
" Scroll only one line for mouse wheel events to get smooth scrolling on touch screens
map <ScrollWheelUp> <C-Y>
imap <ScrollWheelUp> <C-X><C-Y>