Consider the scenerio when I have typed:
file.f
When I type Ctrl-XCtrl-O the omni-completion popup is shown and the first item is selected. This is what I see:
file.fileno
---------
fileno() <-- highlighted
flush()
---------
Notice that the text that I have typed ("file.f") has already changed to:
file.fileno
I can move selection down in the list to 'flush', press ENTER and it will end up with
f.flush()
But I would like to continue typing the desired method name instead of using arrow keys. I.e. I would like to type "file.f", "Ctrl-X Ctrl-O", "l" and get either
file.fileno
---------
flush()
---------
or
file.fileno
---------
fileno()
flush() <-- highlighted
---------
Is this possible? Maybe some omni-completion settings have to be changed, or I should use a different keys combination instead of Ctrl-XCtrl-O?