Arrgh, I wa tweaking my .vimrc tonight and I ruined it. I can't find what
setting is causing this, but instead of just using CTRL+V, CTRL+Z, mouse
buttons etc, Vim will print the following text (respectively): ^V, ^Z, <left
mouse> <right mouse>.

I'm puzzled. Also, is there a list of .vimrc options, such as different set
parameters, etc?

Here is my .vimrc:

"************************
"* Under the Hood       *
"************************
behave mswin
"Puts Vim into Windows mode.
   
 set nocompatible
"Enables gVim features.

set nohidden
"Once a tab is closed, remove it from the buffer.

set novisualbell
"Turn of screen flash


"************************
"* Backup Control       *
"************************
set nobackup
"Disables file backups.

set nowritebackup
"Also disables backups.

set undolevels=1000
"Gives 1000 undos.

set wrap!
"Disable word wrapping

set backspace=indent,eol,start
"Simple backspace.


"************************
"* Spellcheck           *
"************************
set spell
"Turns on shttp://twitter.com/#search?q=pell checking.

set spl=en spell
"Use English spell checking.


"************************
"* Searching            *
"************************
set incsearch
"Enables find-as-you-type.

set ignorecase
"Search ignores case.

set hlsearch
"Highlights search terms.

set showmatch
"Shows matching brackets.


"************************
"* Indentation.         *
"************************
set autoindent
"Automates indentation to that of previous line.

set smartindent
"Vim will intelligently guess indentation.

set nocindent
"Normal c indenting.

set noexpandtab
"Keeps tab as tab, not spaces.


"************************
"* Gui Options          *
"************************
colorscheme terminal
"Uses terminal colorscheme.

set gfn=ProggyCleanTTSZ:h12:cANSI
"Sets font to Proggy Clean Slashed Zero.

set guioptions=emr
"e means tab bar is displayed, r for scrollbar

set showtabline=2
"Tab bar is ALWAYS displayed.

set ls=2
"Status bar is always displayed.

set statusline=%t%h%m%r%=[%b\ 0x%02B]\ \ \ %l,%c%V\ %P
"Forms a status line.

set number
"Allows line numbers.

set nuw=6
"Sets line number width to 6.

set showcmd
"Show partial command line.

set scrolloff=3
"Limits scroll to three lines.

set cursorline
"Highlights line of cursor.


"************************
"* Syntax Highlighting  *
"************************
filetype on
filetype plugin on
syntax enable
syntax on
set grepprg=grep\ -nH\ $*
"Syntax highlighting.


"************************
"* Auto Commands        *
"************************
autocmd BufRead,BufWrite * if ! &bin | silent! %s/\s\+$//ge | endif
"Automatically remove trailing whitespace.


"************************
"* Typo Fixerrs         *
"************************
iab anf and
iab adn and
iab ans and
iab teh the
iab thre there
-- 
View this message in context: 
http://www.nabble.com/Need-SERIOUS-Help-with-.vimrc%21-tp24750175p24750175.html
Sent from the Vim - General mailing list archive at Nabble.com.


--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---

Reply via email to