Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Komodo Edit disable autocomple

I am using Komodo Edit 8 and its autocomplete feature is totally annoying. As soon as I type "for i" , it autofills in this:

for i in range:
  code

Now i have to delete it manually to continue typing. I tried to turn off "Enable automatic autocomplete and calltips triggering when you type" from Edit>Prefrence>Code Intelligence but the problem persists.

What's the real way to turn it off?

like image 249
user2216947 Avatar asked Mar 27 '13 18:03

user2216947


2 Answers

Try this:

Edit > Preferences > Smart Editing > Auto-Abbreviation > Uncheck "Enable Auto-Abbreviation with Trigger Characters"

like image 169
Thanakron Tandavas Avatar answered Oct 01 '22 08:10

Thanakron Tandavas


The option "Enable automatic autocomplete and calltips triggering when you type" refers to the tooltips the pop up for example when calling a function in a module. Type "math.sq" and it'll suggest the rest of the text for the sqrt function.

To turn off the autocomplete you're referring to uncheck "Enable Auto-Abbreviation with Trigger Characters" under Edit > Preferences > Smart Editing > Auto-Abbreviation.

See https://www.youtube.com/watch?feature=player_detailpage&v=FLbFCkNHLI4 for an overview.

like image 30
wil Avatar answered Oct 01 '22 07:10

wil