ctrlpvim / ctrlp.vim

Active fork of kien/ctrlp.vim—Fuzzy file, buffer, mru, tag, etc finder.
ctrlpvim.github.com/ctrlp.vim
Other
5.55k stars 260 forks source link

Not able to enter underscore character in CtrlP in Vim #623

Closed umeshrmail closed 9 months ago

umeshrmail commented 10 months ago

I'm not able to enter underscore or any character which require the Shift key to be pressed, in CtrlP window. Couldn't find what could be the issue.

I installed CtrlP by copying the CtrlP git repo into ~/.vim/pack/plugins/start Everything is working fine, except I couldn't enter shift characters.

Pasting my .vimrc below

winpos 0 0 syntax on filetype on filetype plugin on filetype indent on set number set backspace=indent,eol,start set guitablabel=%N)\ \%t\ %M set hlsearch let g:netrw_liststyle=0 set autochdir au BufNewFile,BufRead .sv,.svh,.vh,.v set filetype=systemverilog syntax=verilog_systemverilog autoindent :set ruler set tabpagemax=25 set tabstop=2 set shiftwidth=2 set expandtab set wildchar= wildmenu wildmode=full set rtp+=~/.fzf imap cmap nmap o nmap O nmap nmap :let @* = expand("%:p"):echo expand("%:p") cnoreabbrev cp CtrlP nnoremap k :ls:b let mapleader = "\" nnoremap j /+ nmap c ^i// nmap f :FZF nmap d :colorscheme desert nmap l :colorscheme default cnoreabbrev dark colorscheme desert cnoreabbrev light colorscheme default

umeshrmail commented 9 months ago

I was using tcsh. When I switched to zsh or bash this issue was resolved.