Before the JMP16 Name() parser change for variable names (examples shown below), the Ctl+ ] keyboard shortcut would highlight/select the entire variable name and the bounding (). This was very convenient for copying/pasting variable names in my JSL code. Does a similar or new keyboard shortcut exist that does the same thing but for the newly constructed variable name? That is, highlight/select the newly constructed variable names bounded by either the quotes or the leading quote and trailing "n? In the absence of a keyboard shortcut, does anyone have any suggestions for how to accomplish this?
"taxable income( 2011 )"n = 456000;
tax = .25;
Print( tax * "taxable income( 2011 )"n) ;
//114000