Use of action hint ActionHint in CodeRush -


i wanted point action hint arrow methodcall named mymethod in current class. if there methodcall name mymethod arrows should pointing them when click combination of keys.

  1. i tried actionhint steps given here. have no idea event use.

  2. then tried call coderush.actionhint.pointto() through codeprovider did not work.

is possible write such plugin? if yes version of pointto() method should use.

a sample code if possible helpful.

thanks in advance.

the reason action hint doesn't appear source code point might outside of visible screen bounds. before calling pointto(), make sure target point visible. can use following pointto overload:

coderush.textviews.active.makevisible(mymethodinstance.namerange); coderush.actionhint.pointto(mymethodinstance.namerange.start, "mymethod", color.red); 

Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -