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
  • 30,795
  • 60
  • 175
  • 303

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
  • 64,084
  • 6
  • 72
  • 107
  • 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
  • 7
  • 18