Design engineering 101: Typeahead like Spotlight and Omnibox
blog.florianschulz.info·22h·
Discuss: Hacker News

Florian Schulz

Design engineering 101: Typeahead like Spotlight and Omnibox

I was curious how I could implement a typeahead feature in a web browser. The one I know from a browser’s address bar or Apple’s Spotlight search on macOS or iOS.

type

What is typeahead?

A text input field with typeahead suggests completions as you type, right inside the field. I’ve seen two variants of the feature:

  1. Dimmed text: Completed text is appended as dimmed text after the user input. Commonly used in terminals, code editors or text editors.
  2. Highlighted text: Completed text is appended as highlighted text with additional styled text. For example, Apple Spotlight may append an action like “Open” or “Sea…

Similar Posts

Loading similar posts...