Variables content look-up
Originally submitted to Google Code by radekz1979 on 7 Oct 2009
It would be nice to get possibility to see variable's content by pressing Ctrl key. It should work similar to Keyword documentation look-up. For example, I have variable called ${output_dir}. It is configured in Variable section as let say 'C:\output'. So I would like to get this in a pop-up window by pressing Ctrl key. It could be great if it handle also nested variables. E.g. if my ${output_dir} == '${drive_letter}\output}' and there is separately defined variable ${drive_letter}='C:' it should be correctly solved as 'C:\output'.
Originally submitted to Google Code by @mkorpela on 30 Sep 2011
There are different levels of identification:
- Completely resolved variable
- Unresolved (global variable that is for example set in library)
- Partially resolved (for example ${output_dir} = '${drive_letter}\output' where ${drive_letter} is unresolved)
it is also uncertain if the resolved value is the real one if at least some user code is executed after variable initialization.
Moving to 2.1 because of lack of resources (time and people)