I'm new to emacs and am trying to figure out how to make auto-complete mode auto complete while my cursor is inside quotes.
For example, while writing Python (I'm using emacs-jedi) I'd love to be able to autocomplete dictionary lookups. It doesn't even need to introspect my dictionary, just offer the word if it has already been used in the buffer.
data = {"test_auto_complete": 1}
data['test_
Thoughts?