Closed stardiviner closed 12 years ago
When does this error occur? When starting vim or when opening a file? I.e. were signs for marks displayed before? How exactly can I reproduce this error?
Which version of vim & quickfixsigns do you use?
sorry for my less report info: I think it occurs at open .org file, because there is no this error at other file, and starting vim. Vim version: VIM - Vi IMproved 7.3 (2010 Aug 15, compiled May 4 2012 04:10:13) Included patches: 1-429 Yes, I use quickfixsigns script. I do not know how to reproduce this error. maybe you can install quickfixsigns script to test.
Please begin with an empty vimrc file and an empty .vim directory. Add whatever is necessary to reproduce this error and describe what you find (vimrc, directory structure, version of the plugins used etc.).
Since I am the author of quickfixsigns, I already have it installed. I also tested VimOrganizer and couldn't find a problem in my setup.
Just like the first post, I tested, and find out what causes this problem, If there is not this two lines:
au! BufRead,BufWrite,BufWritePost,BufNewFile *.org
au BufEnter *.org call org#SetOrgFileType()
then that error will not occur.
Well, it's nice & ok that the error occurs in your setup, it doesn't in mine though. Therefore the information you provide isn't of much help.
The error also does not occur when using the following minimal_vimrc:
set nocp
filetype plugin indent on
syntax on
let s:ps = ['quickfixsigns']
for s:p in s:ps
exec 'set rtp+=~/.vim/tvim/'. s:p .'_vim'
endfor
unlet! s:p s:ps
set rtp+=~/.vim/bundle/VimOrganizer
au! BufRead,BufWrite,BufWritePost,BufNewFile *.org
au BufEnter *.org call org#SetOrgFileType()
and when running vim with:
gvim -u minimal_vimrc bundle/VimOrganizer/VimOrganizerCheatsheet.org
ERROR:
I have tested some aspects, and finally find the problem is at here, but this config is copy from VimOrganizer.