joeytwiddle / sexy_scroller.vim

smooth animation of the cursor and the page whenever they move, with easing
89 stars 7 forks source link

g:SexyScroll_Disabled_FileTypes #5

Closed blindFS closed 9 years ago

blindFS commented 10 years ago

The behavior of this plugin in the unite.vim buffer is strange. So I add a new option to automatically disable this plugin for certain filetypes.

joeytwiddle commented 10 years ago

I would like to debug this. Could you provide steps-to-reproduce the strange behaviour, and your Unite config if it is relevant. Thanks!

blindFS commented 10 years ago

Just open a unite buffer, say :Unite file, then move the cursor up/down, it keeps flashing. Here is the relevant configuration:

    let g:unite_enable_ignore_case         = 1
    let g:unite_enable_smart_case          = 1
    let g:unite_enable_start_insert        = 1
    let g:unite_source_history_yank_enable = 1
    let g:unite_winheight                  = 10
    let g:unite_split_rule                 = 'botright'
    let g:unite_cursor_line_highlight      = 'Statusline'
    let g:unite_prompt                     = '➤ '
    let g:unite_data_directory             = $HOME.'/tmp/unite'

I think only the split_rule and winheight matter.