1

I'm no sure if "autohinting" is correct word but I can explain

for example when I write

std::

I want to see the list of available things there, and same for "." and "->" , I hope that is possible.

cnd
  • 32,616
  • 62
  • 183
  • 313

2 Answers2

3

You can bind . and > with semantic-complete-self-insert command, that will try to show list of possible completions. Although I don't know, is it possible out of box to bind it to :: sequence (although, it should be possible with some amount of emacs lisp code)

Alex Ott
  • 80,552
  • 8
  • 87
  • 132
  • I'm just now looking into your config and cedet tutorial :) and... thinking about merge with your configuration (at least cedet configuration). – cnd Apr 11 '12 at 11:30
1

code browsing, refactoring, auto completion in Emacs

Not sure if this is what you are looking for, but it looks related. I think Etags might be what you are looking for.

Community
  • 1
  • 1
Oofpez
  • 514
  • 1
  • 7
  • 18