Hi, I’m evaluating ST3. I need to write a plugin that sets the values of the toggle buttons (such as “case sensitive”) in the find panel to various values. As a proof of concept, I entered the following line for a key binding:
{ "keys": ["super+f"], "command": "show_panel", "args": { "panel": "find", "regular_expression":true, "case_sensitive":true,"whole_word":true ,"in_selection":true, "wrap":true,"highlight_matches":true} }
This works properly for all button except “regular_expression” and “highlight_matches”. Any suggestions on what may be the issue? Thanks