Closed mon9oose closed 5 years ago
@Mon9oose, the strdisplaywidth()
was added to vim 7.3, and the and()
function was added to vim 7.4. Is there a way you can upgrade to a newer version of Vim? I will look for a backward compatible alternative, but a Vim upgrade could be quicker.
@PhilRunninger, thx your opinion. this server using many other server engineers. (Dev server) I will share this issue, and propose an upgrade vim :-)
I'm reopening this to make sure I give it the attention it needs.
I wasn't able to figure out an alternative for strdisplaywidth()
, so I upped the minimum required version of vim to 7.3.
Environment
:version
: VIM - Vi IMproved 7.2.411git rev-parse --short HEAD
: 7513f25" set the runtime path to include Vundle and initialize set rtp+=/home1/irteam/user/ygpark/.vim/bundle/Vundle.vim call vundle#begin()
" let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' Plugin 'vim-airline/vim-airline' Plugin 'tpope/vim-fugitive' Plugin 'scrooloose/syntastic' Plugin 'shime/vim-livedown' Plugin 'scrooloose/nerdtree'
call vundle#end() filetype plugin indent on
set number set hlsearch set autoindent set incsearch set scrolloff=2 set wildmode=longest,list set ts=4 set sts=4 set sw=1 set autowrite set autoread set cindent set bs=eol,start,indent set history=256 set laststatus=2 set paste set shiftwidth=4 set showmatch set smartcase set smarttab set smartindent set softtabstop=4 set tabstop=4 set incsearch set statusline=\ %<%l:%v\ [%P]%=%a\ %h%m%r\ %F\
map :NERDTreeToggle
syntax on set textwidth=80 set encoding=utf-8