My vim doesn't represent the uppercase letter q Q?
How to fix this?
Here is my vimrc :
set nocompatible " be iMproved, required
filetype off " required
syntax on
set incsearch
set tabstop=4 softtabstop=4 shiftwidth=4
set expandtab
autocmd BufWinLeave *.* mkview
autocmd BufWinEnter *.* silent loadview
set smarttab
set expandtab
se smartindent
if exists(":nohls")
nnoremap <silent> <C-L> :nohls<CR><C-L>
endif
set noswapfile
set pastetoggle=<F10>
set guifont=Monospace\ 6
se relativenumber
se number
nnoremap <leader>s :syntax on<CR>
nnoremap <leader>S :syntax off<CR>
colorscheme evening
set hlsearch
set statusline+=%#warningmsg#
set statusline+=%{SyntasticStatuslineFlag()}
set statusline+=%*
let g:syntastic_always_populate_loc_list = 1
let g:syntastic_loc_list_height = 5
let g:syntastic_auto_loc_list = 0
let g:syntastic_check_on_open = 1
let g:syntastic_check_on_wq = 0
let g:syntastic_html_tidy_exec = 'tidy5'
let g:syntastic_javascript_checkers = ['standard']
let g:syntastic_javascript_checkers = ['eslint']
let g:syntastic_javascript_eslint_exec = 'eslint_d'
let g:syntastic_error_symbol = '❌'
let g:syntastic_style_error_symbol = '⁉️'
let g:syntastic_warning_symbol = '⚠️'
let g:syntastic_style_warning_symbol = ''
highlight link SyntasticErrorSign SignColumn
highlight link SyntasticWarningSign SignColumn
highlight link SyntasticStyleErrorSign SignColumn
highlight link SyntasticStyleWarningSign SignColumn
nmap * <Plug>AgActionWord
vmap * <Plug>AgActionVisual
let g:vim_action_ag_escape_chars = '#%.^$*+?()[{\\|'
nnoremap <F5> :GundoToggle<CR>
nnoremap gr :grep <cword> *<CR>
nnoremap Gr :grep <cword> %:p:h/*<CR>
nnoremap gR :grep '\b<cword>\b' *<CR>
nnoremap GR :grep '\b<cword>\b' %:p:h/*<CR>
nnoremap <F12>f :exe ':silent !firefox %'<CR>
nmap <F8> :TagbarToggle<CR>
nnoremap <F12>c :exe ':silent !google-chrome %'<CR>
nnoremap <leader>% :MtaJumpToOtherTag<cr>
let g:airline#extensions#tabline#enabled = 1
nnoremap <F12>o :exe ':silent !opera %'<CR>
set rtp+=~/.vim/bundle/Vundle.vim
let g:vcool_ins_rgba_map = '<A-z>'
set so=5
call vundle#begin()
syntax enable
filetype plugin indent on
Plugin 'VundleVim/Vundle.vim'
map <A-U> :NERDTreeToggle<CR>
Bundle "justinj/vim-react-snippets"
Bundle "MarcWeber/vim-addon-mw-utils"
Bundle "tomtom/tlib_vim"
Bundle "garbas/vim-snipmate"
Bundle "honza/vim-snippets"
Plugin 'scrooloose/syntastic'
Plugin 'rking/ag.vim'
Plugin 'Chun-Yang/vim-action-ag'
Plugin 'Yggdroot/indentLine'
Bundle "chrisbra/histwin.vim"
Plugin 'KabbAmine/vCoolor.vim'
Bundle "sjl/gundo.vim"
Plugin 'ctrlpvim/ctrlp.vim'
Plugin 'majutsushi/tagbar'
Bundle 'scrooloose/nerdtree'
Plugin 'jeffkreeftmeijer/vim-numbertoggle'
Plugin 'mattn/emmet-vim'
Plugin 'bling/vim-airline'
Bundle 'vim-scripts/xtemplate'
Bundle 'ap/vim-templates'
Plugin 'Valloric/MatchTagAlways'
Plugin 'pangloss/vim-javascript'
Plugin 'ap/vim-css-color'
Plugin 'tpope/vim-commentary'
Plugin 'tpope/vim-repeat'
Plugin 'tpope/vim-unimpaired'
Bundle 'tpope/vim-surround'
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'}
call vundle#end() " required
filetype plugin indent on " required
gvim -u NONE? – Tumbler41 Jun 08 '16 at 16:56:imap? – DJMcMayhem Jun 08 '16 at 17:26concealhighlighting command? So you might check for any of those, but that's just a stab in the dark. – Tumbler41 Jun 08 '16 at 17:28Qcoming from:imap, and what it is. – Tumbler41 Jun 08 '16 at 17:54Q. Additionally, try:iunmap Q– DJMcMayhem Jun 08 '16 at 17:57gvim -u NONEsolves the problem the other comments are right, see nobe4's link about how to debug your.vimrc. – statox Jun 09 '16 at 07:42redir @a | imap | redir END | normal! "apand you will have the result ofimapin your buffer, then you can post it and. But otherwise, you really should disable all your plugins/configuration and proceed granularly to detect the point of failing (I wont repeat what's already in this answer: http://vi.stackexchange.com/questions/2003/how-do-i-debug-my-vimrc-file/2004#2004 ) – nobe4 Jun 09 '16 at 08:05