FS#20768 - vim-runtime link is wrong

Attached to Project: Arch Linux
Opened by héctor (hacosta) - Tuesday, 07 September 2010, 16:00 GMT
Last edited by Ionut Biru (wonder) - Tuesday, 07 September 2010, 17:41 GMT
Task Type Bug Report
Category Packages: Extra
Status Closed
Assigned To No-one
Architecture All
Severity Low
Priority Normal
Reported Version
Due in Version Undecided
Due Date Undecided
Percent Complete 100%
Votes 0
Private No

Details

Description:
vimcurrent points to /usr/share/vim/vim72

[2]hacosta@alcachofa /usr/share/vim % ls -al vimcurrent
lrwxrwxrwx 1 root root 20 Jul 31 2009 vimcurrent -> /usr/share/vim/vim72
[0]hacosta@alcachofa /usr/share/vim % ls /usr/share/vim/vim72
ls: cannot access /usr/share/vim/vim72: No such file or directory


Additional info:
* package version(s)
extra/vim-runtime 7.3.3-1
* config and/or log files etc.


Steps to reproduce:
This task depends upon

Closed by  Ionut Biru (wonder)
Tuesday, 07 September 2010, 17:41 GMT
Reason for closing:  Not a bug
Additional comments about closing:  pebcak
Comment by Ionut Biru (wonder) - Tuesday, 07 September 2010, 16:10 GMT
sorry, i don't have any link in vim-runtime
Comment by héctor (hacosta) - Tuesday, 07 September 2010, 16:45 GMT
yeah sorry, this must be from an old package... but anyway, i updated vim runtime and los all my syntax indentation settings, etc.
Comment by Ionut Biru (wonder) - Tuesday, 07 September 2010, 16:49 GMT
how come? the configuration is in ~/.vimrc and vim-runtime has a backup entry for /etc/vimrc. I suggest to check your config and be sure that runtime path is set up correctly
Comment by héctor (hacosta) - Tuesday, 07 September 2010, 17:04 GMT
I downgraded to vim-runtime 7.2 and everything works fine... I know it doesn't make much sense, any place I can start looking?
Comment by Ionut Biru (wonder) - Tuesday, 07 September 2010, 17:09 GMT
i've already told you what to check and now that you said that downgrading _only_ vim-runtime solves your issue, i believe you didn't fully update your system.

vim/gvim/vim-runtime should have the same version
Comment by héctor (hacosta) - Tuesday, 07 September 2010, 17:29 GMT
with no syntax highlighting

local/vim-runtime 7.3.3-1
local/gvim 7.3.3-1

[0]hacosta@alcachofa ~ % p -Syu
:: Synchronizing package databases...
testing is up to date
core is up to date
extra is up to date
community-testing is up to date
community is up to date
:: Starting full system upgrade...
warning: kmplayer: local (0.11.2-1) is newer than extra (0.11.2b-1)
warning: psmisc: local (22.13-1) is newer than core (22.12-1)
there is nothing to do
Comment by Ionut Biru (wonder) - Tuesday, 07 September 2010, 17:32 GMT
paste ~/.vimrc and /etc/vimrc
Comment by héctor (hacosta) - Tuesday, 07 September 2010, 17:37 GMT
/etc/vimrc
[0]hacosta@alcachofa /tmp % cat /etc/vimrc
" All system-wide defaults are set in $VIMRUNTIME/archlinux.vim (usually just
" /usr/share/vim/vimfiles/archlinux.vim) and sourced by the call to :runtime
" you can find below. If you wish to change any of those settings, you should
" do it in this file (/etc/vimrc), since archlinux.vim will be overwritten
" everytime an upgrade of the vim packages is performed. It is recommended to
" make changes after sourcing archlinux.vim since it alters the value of the
" 'compatible' option.

" This line should not be removed as it ensures that various options are
" properly set to work with the Vim-related packages.
runtime! archlinux.vim

" If you prefer the old-style vim functionalty, add 'runtime! vimrc_example.vim'
" Or better yet, read /usr/share/vim/vim72/vimrc_example.vim or the vim manual
" and configure vim to your own liking!


~/.vimrc
" An example for a vimrc file.

" Maintainer: Bram Moolenaar <Bram@vim.org>
" Last change: 2002 Sep 19
"
" To use it, copy it to
" for Unix and OS/2: ~/.vimrc
" for Amiga: s:.vimrc
" for MS-DOS and Win32: $VIM\_vimrc
" for OpenVMS: sys$login:.vimrc

" When started as "evim", evim.vim will already have done these settings.
"


if v:progname =~? "evim"
finish
endif

" Use Vim settings, rather then Vi settings (much better!).
" This must be first, because it changes other options as a side effect.
set nocompatible

" allow backspacing over everything in insert mode
set backspace=indent,eol,start

set history=50 " keep 50 lines of command line history
set ruler " show the cursor position all the time
set showcmd " display incomplete commands
set incsearch " do incremental searching
set ignorecase
set smartcase
"set lcs=tab:\ \ ,trail:~,extends:>,precedes:<
"set list


" For Win32 GUI: remove 't' flag from 'guioptions': no tearoff menu entries
" let &guioptions = substitute(&guioptions, "t", "", "g")

" Don't use Ex mode, use Q for formatting
map Q gq

" This is an alternative that also works in block mode, but the deleted
" text is lost and it only works for putting the current register.
"vnoremap p "_dp

" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
syntax on
set hlsearch
endif

" Only do this part when compiled with support for autocommands.
if has("autocmd")

" Enable file type detection.
" Use the default filetype settings, so that mail gets 'tw' set to 72,
" 'cindent' is on in C files, etc.
" Also load indent files, to automatically do language-dependent indenting.
filetype plugin indent on

" Put these in an autocmd group, so that we can delete them easily.
augroup vimrcEx
au!

" For all text files set 'textwidth' to 78 characters.
autocmd FileType text setlocal textwidth=78

" When editing a file, always jump to the last known cursor position.
" Don't do it when the position is invalid or when inside an event handler
" (happens when dropping a file on gvim).
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal g`\"" |
\ endif

augroup END

else

set autoindent " always set autoindenting on

endif " has("autocmd")


if has('gui_running')
set guioptions+=a
set guioptions+=c
set guioptions-=T
set guioptions-=e
set guioptions-=m
set guioptions-=r
colorscheme inkpot
if has('win32')
set columns=120
set lines=60
set guifont=Consolas\ 11
else
set guifont=Lucida\ Console\ 11
endif
elseif (&term == 'xterm-color')
set t_Co=256
colorscheme inkpot
set mouse=a
set ttymouse=xterm
set termencoding=utf-8
elseif (&term == 'screen.linux') || (&term =~ '^linux')
set t_Co=8
colorscheme default
elseif (&term == 'xterm-color') || (&term == 'rxvt-unicode') || (&term =~ '^xterm') || (&term =~ '^screen-256')
set t_Co=256
set mouse=a
set ttymouse=xterm
set termencoding=utf-8
colorscheme default
else
colorscheme default
endif

set wildmenu
set wildmode=longest:full,full
set number

set tabstop=4
set softtabstop=4
set shiftwidth=4
set expandtab
set wrap
"writes on make/shell commands
set autowrite

set backspace=indent,eol,start
set showmatch
"set cursorline

" man-page autoreturn after view
map K K<cr>
set pastetoggle=<f5>


vmap <BS> x


nmap <C-j> <C-W>j
nmap <C-k> <C-W>k
nmap <C-h> <C-W>h
nmap <C-l> <C-W>l
nmap X ci"

"TODO: Autosave en ~/.vim
set backupdir=./.backup,~/.vim/backup_files,/tmp
set dir=./.backpup,~/.vim/backup_files,/tmp

"para :W
command! W w !sudo tee % > /dev/null

"siempre en la carpeta
autocmd BufEnter * if bufname("") !~ "^\[A-Za-z0-9\]*://" | lcd %:p:h | endif

"workarround para el bug de el cursor
set go-=L
"workarround para el bug de los plugins
"set runtimepath+=/usr/share/vim
set runtimepath=/usr/share/vim,/usr/share/vim/vim72,~/.vim

"para que deje de parpadear el cursor
set gcr=a:blinkwait0,a:block-cursor

"para quitar el preview window de omni-complete
"autocmd CursorMovedI * if pumvisible() == 0|pclose|endif
"autocmd InsertLeave * if pumvisible() == 0|pclose|endif


"apagar la estupida campanita
set visualbell t_vb=

set linebreak
noremap ,vim :new ~/.vimrc<cr>
inoremap <C-E> <C-X><C-E>
inoremap <C-Y> <C-X><C-Y>

"lineas de contexto
"set so 5


"map <f12> :!ctags -f ~/.vim/localtags -R *.h *.c <CR><CR>

"set tags=~/.vim/systags,~/.vim/localtags,./.tags
set tags=.ctag
let OmniCpp_NamespaceSearch = 1
let OmniCpp_GlobalScopeSearch = 1
let OmniCpp_ShowAccess = 1
let OmniCpp_MayCompleteDot = 1
let OmniCpp_MayCompleteArrow = 1
let OmniCpp_MayCompleteScope = 1
let OmniCpp_DefaultNamespaces = ["std", "_GLIBCXX_STD"]
" automatically open and close the popup menu / preview window
"au CursorMovedI,InsertLeave * if pumvisible() == 0|silent! pclose|endif
set completeopt=menuone,menu,longest,preview
"set completeopt=menuone,longest,preview
"let g:SuperTabDefaultCompletionType = "<C-X><C-O>"


"experimental
autocmd BufRead,BufNew *.vala set efm=%f:%l.%c-%[%^:]%#:\ %t%[%^:]%#:\ %m
autocmd BufRead *.vapi set efm=%f:%l.%c-%[%^:]%#:\ %t%[%^:]%#:\ %m
au BufRead,BufNewFile *.vala setfiletype cs
au BufRead,BufNewFile *.vala setfiletype cs

let Tlist_Ctags_Cmd = "/usr/bin/ctags"
let Tlist_WinWidth = 50
map <F4> :TlistToggle<cr>

:ab #b /************************************************
:ab #e ************************************************/

Comment by Ionut Biru (wonder) - Tuesday, 07 September 2010, 17:41 GMT
set runtimepath=/usr/share/vim,/usr/share/vim/vim72,~/.vim

remove this line

Loading...