Vim 在启动时在命令栏中放置随机字符

标签 vim configuration

我似乎对 vim 有问题,当我打开 vim(不是 gvim,gvim 不这样做)时,它会在命令栏中放入一堆随机字符。例如,当我输入 vim test.txt它会很好地打开 test.txt,但是会有一些像 .2802;0c 这样的字符。作为命令输入。

我能做些什么来解决这个问题吗?

谢谢你的帮助!

这是我的 .vimrc:

" =========== Info ==============
" VimRC File
" Author: Mark Asp
" Purpose: Store overall Vim settings
"   that are specific to the editing
"   environment.
" ===============================

" ==== Use ViM rather than Vi ====
set nocompatible
" ================================

" ========== Pathogen ============
execute pathogen#infect()
filetype indent plugin on
" ================================

" ======= General Settings =======  

let mapleader=","                " Set the map leader to , for ease of use

set nomodeline                   " Don't allow modelines as they are vim only 



" --- Color Settings --
syntax on                        " Enable syntax coloring
set t_Co=256
colorscheme harlequin
" ---------------------

set relativenumber               " Show the relative line number

set backspace=indent,eol,start   " Allow backspace to transcend lines
" ================================

" ========== Mappings ============

" Load mappings from ~/.vim/mappings.vim
if filereadable(expand("~/.vim/mappings.vim"))
  source ~/.vim/mappings.vim
endif

set notimeout ttimeout           " Time out for key codes only
set ttimeoutlen=1000              " Wait 200 millis

" ================================

" ========== Formatting ==========

" ---- Indentation ----
set shiftwidth=4                 " Set the tab width to 4 spaces
set tabstop=4                    " Set the tab width to 4 spaces
set expandtab                    " Convert tabs to spaces
" ---------------------

" ----- Wrapping ------
set wrap                         " Only wrap visually
set linebreak                    " Don't cut a word in half while wrapping
" ---------------------

" ================================ }}}

" ======= Window Settings =======

set hidden                       " Allow buffers to be hidden in the background
set confirm                      " Always ask for confirmation
set t_vb=                        " Do no visual things

" ---- Bottom Bar -----
set showcmd                      " Show the command being typed
set cmdheight=1                  " Make the command line 1 character tall 
set wildmenu                     " Complete for commands 
set laststatus=2                 " Make it so that status only shows with 2 or
                                 "    more windows
" ---------------------

" ================================

" ======= Search Settings ========

set hlsearch                     " Highlight search results
set smartcase                    " If all is lower, ingore case, if there is a
                                 "    capital letter, include it.

" ================================

" ============ Movement ==========

set nostartofline                " Keep cursor position when switching lines

" ================================

" ========= Persistance ==========

" Keep undo history across sessions
" by storing all changes all time
silent !mkdir ~/.vim/backups > /dev/null 2>&1
set undodir=~/.vim/backups
set undofile

" Turn off all swap files
set noswapfile
set nobackup
set nowb

" ================================

" ====== Custom File Types =======

au BufNewFile,BufRead *.frag,*.vert,*.fp,*.vp,*.glsl setf glsl

" ================================

" ======== GVim Settings =========
set guifont=Droid\ Sans\ Mono\ 10
set guioptions-=m " remove menu bar
set guioptions-=T " remove toolbar
set guioptions-=r " remove right-hand scrollbar
set guioptions-=l " remove left-hand scrollbar

" ================================

" ======== CTag Settings =========
set tags+=~/.vim/tags
" ================================

最佳答案

我使用您的 vimrc 文件并注释掉以下行。在那之后,我没有在命令栏上遇到随机字符,它工作正常。我想也许你的 vim 的一些插件会导致它。 (我在我实验室的 linux 服务器上对其进行了测试。)

14 "execute pathogen#infect()
28 "colorscheme harlequin
31 "set relativenumber  
98 "set undodir=~/.vim/backups
99 "set undofile

关于Vim 在启动时在命令栏中放置随机字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20318765/

相关文章:

encryption - 在Windows 7/2008环境中无法使用aspnet_regiis加密web.config

python - 可以沙盒 Python 配置文件吗?

git - 在 Git 分支中保留特定文件的不同内容

Ubuntu Vim 全屏并不是真正的全屏

apache - 如何配置Apache Hive?

vim 复制命令到剪贴板/缓冲区

vim - 是否可以确定 Vim 中视觉选择的方向?

python - 当我启动 'matplotlib' 时,如何加载并运行特定的包?

vim - vimrc 中的 nospell 不起作用(spf13)

Vim/NeoVim 脚本如何检查终端模拟器