我似乎遇到了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 …
Run Code Online (Sandbox Code Playgroud)