Note that there are some explanatory texts on larger screens.

plurals
  1. POVim puts random characters in command bar on startup
    primarykey
    data
    text
    <p>I seem to be having a problem with vim, where when I open up vim (not gvim, gvim doesn't do this), it puts a bunch of random characters into the command bar. For example, when I type <code>vim test.txt</code> it will open up test.txt fine, but there will be some form of characters like <code>.2802;0c</code> typed as a command.</p> <p>Is there something I can do to fix this?</p> <p>Thanks for any help!</p> <hr> <p>Here is my .vimrc:</p> <pre><code>" =========== 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 &gt; /dev/null 2&gt;&amp;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 " ================================ </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload