Autocomplete is a UI feature provided by applications, where the program predicts a word or phrase that the user wants to type in without the user actually typing it in completely.

learn more… | top users | synonyms (2)

129
votes
15answers
44k views

How do you disable browser Autocomplete on web form field / input tag?

How do you disable Autocomplete in the major browsers for a specific input (or form field)?
66
votes
13answers
19k views

Disable browser 'Save Password' functionality

One of the joys of working for a government healthcare agency is having to deal with all of the paranoia around dealing with PHI (Protected Health Information). Don't get me wrong, I'm all for doing ...
63
votes
11answers
30k views

What's a good AJAX Autocomplete Plugin for jQuery?

I usually use jQuery as my JS library on my sites, and I would like to stick with it since I'm familiar with it. I need to implement an AJAX autocomplete, mainly for suggesting search results. Here ...
52
votes
6answers
10k views

Autocompletion in Vim

In a nutshell, I'm searching for a working autocompletion feature for the Vim editor. I've argued before that Vim completely replaces an IDE under Linux and while that's certainly true, it lacks one ...
48
votes
9answers
17k views

jQueryUI: how can I custom-format the Autocomplete plug-in results?

I'm using jQuery UI Autocomplete plug-in. Is there a way to highlight search character sequence in drop-down results? For example, if I have data: "foo bar" it and I search for "foo" I get "foo ...
44
votes
4answers
30k views

Facebook style JQuery autocomplete plugin

Im after a plugin to do autocomplete like facebook does in that you can select multiple items - similar to how tagging a stackoverflow question works. Here are a couple I ran into: ...
35
votes
4answers
6k views

ropemacs USAGE tutorial

There are many sites with instructions on installing ropemacs, but so far I couldn't find any with instructions on how to use it after it's already installed. I have it installed, or at least it seems ...
35
votes
7answers
56k views

jQuery Autocomplete and ASP.NET

I searched all over this site and the web for a good and simple example of autocomplete using jQuery and ASP.NET. I wanted to expose the data used by autocomplete with a webservice (and will probably ...
34
votes
4answers
2k views

Vim: Making Auto-Completion Smarter

I use ctags, taglist, etc., to have auto completion in Vim. However, it is very limited compared to Visual Studio intellisense or Eclipse auto-completion. I am wondering whether it is possible to tune ...
29
votes
2answers
2k views

How does code completion work?

Lots of editors and IDEs have code completion. Some of them are very "intelligent" others are not really. I am interested in the more intelligent type. For example I have seen IDEs that only offer a ...
25
votes
12answers
8k views

Vim auto-generate ctags

Right now I have the following in my .vimrc: au BufWritePost *.c,*.cpp,*.h !ctags -R There are a few problems with this: It's slow -- regenerates tags for files that haven't changed since the ...
23
votes
5answers
6k views

Bash autocompletion in Emacs shell-mode

In the GNOME Terminal, Bash does smart auto-completion. For example apt-get in<TAB> becomes apt-get install In Emacs shell-mode, this auto-completion doesn't work, even after I explicitly ...
21
votes
10answers
7k views

How to implement “mustMatch” and “selectFirst” in jQuery UI Autocomplete?

I recently migrated a few of my Autocomplete plugins from the one produced by bassistance to the jQuery UI autocomplete. How can the "mustMatch" and "selectFirst" be implemented with just callbacks ...
21
votes
6answers
4k views

Vim's Omnicompletion with Python just doesn't work

I've searched around for an hour, both on Stack Overflow and elsewhere. Alas! Please help. Vim's omnicompletion just doesn't work. I have Vim 7.2 compiled with Python support. filetype plugin on is ...
21
votes
1answer
1k views

How to configure Eclipse to autocomplete using java.util.List and not java.awt.List?

It's a minor thing, but it drives me nuts that when I type List in Eclipse, it always asks me if I mean java.util.List or java.awt.List when I never ever use java.awt.List. There are other similar ...
21
votes
3answers
20k views

How can I enable auto complete support in Notepad++?

I am trying to add simple syntax highlighting and auto completion for a simple scripting language... I added syntax highlighting using this article Now I want to know how to enable auto completion ...
21
votes
7answers
7k views

Eclipse Style Function Completions in Emacs for C, C++ and JAVA?

How Do I Get Eclipse Style Function Completions in Emacs for C, C++ and JAVA? I love the power of the Emacs text editor but the lack of an "intellisense" feature leaves me using Eclipse.
20
votes
1answer
1k views

Emacs, Auto Complete Mode, CSS, pain. (illustrated!)

I've got Auto Complete Mode installed for Emacs. First: When I'm typing declarations I get the normal auto-complete behavior: So I hit Tab to complete — no problem. But then I hit ;: It ...
20
votes
8answers
5k views

Bind jQuery UI autocomplete using .live()

I've searched everywhere, but I can't seem to find any help... I have some textboxes that are created dynamically via JS, so I need to bind all of their classes to an autocomplete. As a result, I ...
20
votes
6answers
3k views

Where is Visual Studio autocomplete for JQuery 1.4?

I can't find the Visual Studio autocomplete file for JQuery 1.4. Googling for jquery-1.4-vsdoc or jquery-1.4.min-vsdoc turns up nothing.
20
votes
9answers
16k views

How can I dynamically change auto complete entries in a C# combobox or textbox?

I have a combobox in C# and I want to use auto complete suggestions with it, however I want to be able to change the auto complete entries as the user types, because the possible valid entries are far ...
19
votes
12answers
7k views

Xcode 4: Auto-complete & Jump to Definition broken in my Xcode 3 Project

My project was created in Xcode 3, I'm opening it in Xcode 4 and notice the following: 'Jump to Definition' no longer works with my own symbols (However UI* and even TT* symbols do work fine!) ...
19
votes
6answers
8k views

jQuery Autocomplete plug-in search configuration

I'm looking into using jQuery autocomplete plug-in to implement user lookup by first or last name. It looks like by default autocomplete looks up words by character sequence no matter its occurrence ...
19
votes
4answers
4k views

Is it possible to implement Python code-completion in TextMate?

PySmell seems like a good starting point. I think it should be possible, PySmell's idehelper.py does a majority of the complex stuff, it should just be a case of giving it the current line, offering ...
19
votes
3answers
34k views

jQuery & Prototype Conflict

I am using the jQuery AutoComplete plugin in an html page where I also have an accordion menu which uses prototype. They both work perfectly separately but when I tried to implement both components ...
18
votes
2answers
5k views

Using html in jQuery UI autocomplete

Before jQuery UI 1.8.4 I could use html in the JSON array I built to work with an autocomplete. I was able to do something like: $row_array['label'] = '<span style="color: red; font-family: ...
18
votes
3answers
20k views

JQuery Autocomplete verify selected value

We are using the autocomplete jquery plugin written by Jörn Zaefferer, and are trying to verify a valid option is entered. The plugin has result() event which fires when a selection is made. This is ...
18
votes
5answers
10k views

Emacs - tab-completion of local Python variables

Is there a good emacs mode that will allow tab-completion of local python variables? I set up ipython.el but it will only tab-complete things in the scope of the interpreter. I'm looking for something ...
18
votes
5answers
5k views

How to make a python, command-line program autocomplete arbitrary things NOT interpreter

I am aware of how to setup autocompletion of python objects in the python interpreter (on unix). Google shows many hits for explanations on how to do this. Unfortunately, there are so many ...
17
votes
2answers
3k views

What is a good setup for editing PHP in Emacs?

I'm going to be doing some PHP editing for my job this summer, and am looking for an effective Emacs setup for editing it. I'm already heavily invested in Emacs, so switching to another editor is not ...
17
votes
6answers
6k views

How to improve performance of Jquery autocomplete

I was planning to use jquery autocomplete for a site and have implemented a test version. Im now using an ajax call to retrieve a new list of strings for every character input. The problem is that it ...
17
votes
8answers
8k views

How can I set up JQuery autocomplete like Stackoverflow's tags input field?

I'm using PHP and I've never really done anything with Javascript or JQuery or AJAX. I'm just wondering if there are any available solutions to accomplish the same effect of auto-completion that SO ...
16
votes
3answers
5k views

Need razor view engine auto-complete to work in a class library?

We have a modular architecture where we have some views (cshtml) files in a separate project (class library). How can we get the syntax highlighting and autocomplete to work when the project isn't an ...
16
votes
2answers
1k views

jquery autocomplete highlighting

How can I make my jquery autocomplete highlight what the user is typing in in any autocompleted results? The code I am using is: $("#keyword").autocomplete({ source: ...
16
votes
3answers
2k views

Vim's autocomplete is excruciatingly slow

Most of the time the autocomplete feature in VIM works nicely for me, but sometimes it seems to be scanning files which the current file references, and then it becomes painfully slow, sometimes ...
16
votes
5answers
8k views

VIM php omni completion

I'm trying to get php autocompletion right in VIM. Right now when I do a $blog = new Blog(); $blog-> and then hit CTRL+X CTRL+O I'd expect omnicompletion to return all the functions in the class Blog. ...
15
votes
3answers
6k views

WPF: AutoComplete TextBox, …again!

This other SO question asks about an autocomplete textbox in WPF. Several people have built these, and one of the answers given there suggests this codeproject article. But I've not found any WPF ...
15
votes
9answers
6k views

How could I implement autocompletion using Swing?

I'm interested in providing an autocompletion box in a JFrame. The triggering mechanism will be based on mnemonics (I think), but I'm not really sure what to use for the "autocompletion box" (I would ...
14
votes
1answer
456 views

Python autocompletion on object instances in VIM

I have found a strange behavior in VIM when I attempt to use autocompletion on objects: If I instantiate the objects on a module level, the VIM autocompletion will work on the instance I create: ...
14
votes
2answers
730 views

Vim: How to set up an efficient autocomplete configuration?

I've been using Vim for a while now and love it, but one thing I've noticed when I use other editors is that I've never really got autocomplete working with much efficiency. I have supertab & ...
14
votes
4answers
969 views

Making sense out of Emacs completion mode choices

There appears to be many alternative Emacs auto completion mechanisms. Without an exhaustive search, the following come to mind: ido, auto-complete, icicles, in buffer completion, minibuffer ...
14
votes
10answers
4k views

Autocomplete server-side implementation

What is a fast and efficient way to implement the server-side component for an autocomplete feature in an html input box? I am writing a service to autocomplete user queries in our web interface's ...
14
votes
2answers
2k views

How does StackOverflow's 'tags' textbox autocomplete work?

I know they're using a jQuery plugin, but I can't seem to find which one they used. In particular, what I'm looking for is autocomplete with exactly the same functionality as SO's autocomplete, where ...
13
votes
3answers
33k views

jquery autocomplete with json response

im getting response in json, but this wont parse the json response. what m i doing wrong? i could'nt find anything on doc http://docs.jquery.com/Plugins/Autocomplete ...
13
votes
2answers
13k views

AutoComplete TextBox in WPF

Can we make textbox to autocomplete in WPF? I found a sample where a combox box is used and the traingle is removed by editing style template. Do we better solution for autocomplete textbox? ...
12
votes
5answers
900 views

Is there a jQuery autocomplete plugin that can do @completes like Facebook and Quora?

Is there a jQuery autocomplete plugin that can do @completes like Facebook and Quora? Searching for similar previous questions led to this plugin: ...
12
votes
3answers
2k views

How to set-up jquery-ui autocomplete in Rails

I need some help on how to implement a jquery-ui autocomplete in my Rails app. I want to add autocompletion to a text field where the user can enter in a customer name. As there can be hundreds of ...
12
votes
3answers
13k views

How to do query auto-completion/suggestions in Lucene?

I'm looking for a way to do query auto-completion/suggestions in Lucene. I've Googled around a bit and played around a bit, but all of the examples I've seen seem to be setting up filters in Solr. We ...
11
votes
3answers
353 views

Is it possible to get code completion for R in Emacs ESS similar to what is available in Rstudio?

Rstudio has a great code completion feature. It provides a quick view of functions that start with a given string, as well as function and parameter definitions. ESS is powerful enough, familiar to ...
11
votes
2answers
266 views

How do I get auto-suggestions for array options when typing in Vim?

Let's say I type a = [1, 2] in a .py file in vim and when I type "a." and hit TAB, I would like to get suggestion menu that is related to lists. Edit 1 in response to Robin's comment: I think ...

1 2 3 4 5 60