"close_find_after_find_all": true,
"close_find_after_replace_all": true,
to teach key bindings respect those settings, create the following custom bindings …
{
"keys": ["alt+enter"],
"command": "find_all", "args": {"close_panel": false},
"context": [
{"key": "panel", "operand": "replace"}, {"key": "panel_has_focus"},
{"key": "setting.close_find_after_find_all", "operand": "false"}
]
},
{
"keys": ["ctrl+alt+enter"],
"command": "replace_all", "args": {"close_panel": false},
"context": [
{"key": "panel", "operand": "replace"}, {"key": "panel_has_focus"},
{"key": "setting.close_find_after_replace_all", "operand": "false"}
]
},