In IC6.1.8/ICADVM20.1 you can find the relevant env var fairly easily by using Options->Cdsenv editor and searching for "align". Keep this open, and then as you interact with the F3 options form, you'll see which env var changes. You can then assign this to a bindkey: leSetEnv("quickAlignSpacingType" if(leGetEnv("quickAlignSpacingType")=="user" "none" "user")) This toggles between user and none. You could assign this to (say) the Shift-Ctrl-B key (I picked one at random that wasn't used): hiSetBindKey("Layout" "ShiftCtrl B" "leSetEnv(\"quickAlignSpacingType\" if(leGetEnv(\"quickAlignSpacingType\")==\"user\" \"none\" \"user\"))") This line can be added to your .cdsinit. Regards, Andrew
↧