YouCompleteMe/python
Strahinja Val Markovic e8d1a4cef8 Working around a Vim bug that causes flickering.
If the user had a hidden buffer and a recent version of Vim, the screen would
flicker every time the user typed. This was caused by a Vim bug.

On every key press, we end up calling GetUnsavedAndCurrentBufferData(), which
calls GetBufferOption( buffer_object, 'ft' ). If the buffer_object represents a
hidden buffer, Vim would flicker.

This would happen because we'd call "buffer_object.options[ 'ft' ]" in recent
versions of Vim, and that line of code causes Vim to flicker. I don't know why.
We're extracting the 'ft' value without going through buffer_object.options, and
that works just fine.

Fixes #669.
2014-01-06 15:00:51 -08:00
..
clang_includes Using the new clang 3.3 headers 2013-06-19 21:58:53 -07:00
ycm Working around a Vim bug that causes flickering. 2014-01-06 15:00:51 -08:00
test_requirements.txt Workaround for annoying clang bug with pragma once 2013-11-17 17:59:39 -08:00