diff --git a/frontend/src/scenes/session-recordings/player/inspector/PlayerInspectorControls.tsx b/frontend/src/scenes/session-recordings/player/inspector/PlayerInspectorControls.tsx
index a292b3495d4eb..af21f1f660a75 100644
--- a/frontend/src/scenes/session-recordings/player/inspector/PlayerInspectorControls.tsx
+++ b/frontend/src/scenes/session-recordings/player/inspector/PlayerInspectorControls.tsx
@@ -1,5 +1,4 @@
-import { LemonButton, LemonInput, LemonSelect, LemonCheckbox } from '@posthog/lemon-ui'
-import { Tooltip } from 'antd'
+import { LemonButton, LemonInput, LemonSelect, LemonCheckbox, Tooltip } from '@posthog/lemon-ui'
import { useValues, useActions } from 'kea'
import {
IconInfo,
@@ -17,6 +16,7 @@ import { IconWindow } from 'scenes/session-recordings/player/icons'
import { playerSettingsLogic } from '../playerSettingsLogic'
import { SessionRecordingPlayerMode, sessionRecordingPlayerLogic } from '../sessionRecordingPlayerLogic'
import { playerInspectorLogic } from './playerInspectorLogic'
+import { InspectorSearchInfo } from './components/InspectorSearchInfo'
const TabToIcon = {
[SessionRecordingPlayerTab.ALL]: undefined,
@@ -88,6 +88,11 @@ export function PlayerInspectorControls(): JSX.Element {
type="search"
value={searchQuery}
fullWidth
+ suffix={
+
+
Token | +Match type | +Description | +
---|---|---|
+ jscript
+ |
+ fuzzy-match | +
+ Items that fuzzy match jscript
+ |
+
+ =scheme
+ |
+ exact-match | +
+ Items that are scheme
+ |
+
+ 'python
+ |
+ include-match | +
+ Items that include python
+ |
+
+ !ruby
+ |
+ inverse-exact-match | +
+ Items that do not include ruby
+ |
+
+ ^java
+ |
+ prefix-exact-match | +
+ Items that start with java
+ |
+
+ !^earlang
+ |
+ inverse-prefix-exact-match | +
+ Items that do not start with earlang
+ |
+
+ .js$
+ |
+ suffix-exact-match | +
+ Items that end with .js
+ |
+
+ !.go$
+ |
+ inverse-suffix-exact-match | +
+ Items that do not end with .go
+ |
+