I want the search input to always be visible
+
+
+There is no easy option for this, and a custom reimplementation of the search input might be
+a cleaner solution, see the FAQ point above, but this should be doable with some hacks nonetheless.
+
+The search input is rendered whenever the search value is not null, which it is by default.
+You can set the search value to an empty string instead of null with `treeRef.setSearch("")`.
+Remove the keyboard bindings for "abortSearch". In your renderSearchInput implementation,
+overwrite the `onBlur` handler with something new after what `...inputProps` provides to the input.
+
+Reference: [#383](https://github.com/lukasbach/react-complex-tree/issues/383)
+
+
+
+